blob: ce460d94c4daebc0724eb9f185e11c491d8a50c1 [file] [log] [blame]
Lionel Dricotf76a25c2012-06-04 17:03:10 +02001Instructions to compile LO on Solaris with gcc
2
3Disclaimer
4----------
5This is still work in progress
6Compiling LO on Solaris with gcc is a work done by Lanedo ( www.lanedo.com )
7Any inquiry could be sent to office-solaris@lanedo.com
8
9
10Prerequisites
11-------------
12
13A working Oracle Solaris 11 installation
14
15
Julien Nabet9e06b992015-06-13 22:58:05 +020016Installing Dependencies
Lionel Dricotf76a25c2012-06-04 17:03:10 +020017-----------------------
18
19sudo -s
20
21pkg install git make gcc-45 autoconf autogen automake-110 gnu-m4
22
23perl -MCPAN -e 'install Archive::Zip::Archive'
24
25pkg install pkg:/system/header@0.5.11-0.175.0.0.0.2.1
26pkg install pkg:/developer/gperf@3.0.3-0.175.0.0.0.2.537
27pkg install pkg:/developer/parser/bison@2.3-0.175.0.0.0.2.537
28pkg install pkg:/developer/lexer/flex@2.5.35-0.175.0.0.0.2.537
29pkg install pkg:/developer/documentation-tool/doxygen@1.5.7.1-0.175.0.0.0.2.537
30
31
32Compiling
33---------
34
Bjoern Michaelsen3cf557c2015-10-16 12:15:55 +010035CC="gcc" CXX="g++" ./autogen.sh --with-num-cpus=2 --with-max-jobs=4 --without-junit --disable-mozilla --with-system-curl --without-help --disable-cups --without-java --with-system-cairo --with-lang= --enable-gio --disable-gnome-vfs --disable-gstreamer --without-fonts --with-system-dicts --disable-mozilla --without-system-mozilla --disable-xmlsec --with-system-openssl
Lionel Dricotf76a25c2012-06-04 17:03:10 +020036
37gmake
38
39