diff options
author | Lionel Dricot <lionel@lanedo.com> | 2012-06-04 17:03:10 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-06-06 05:57:03 +0200 |
commit | f76a25c45b247fbdd77c47e033286e3adc5d553a (patch) | |
tree | 552a8b3021e73eb602824f88511cf9f69096c5f3 /README.Solaris | |
parent | 927c22241a5128cd58e996910e3b6e279bf76768 (diff) |
Introducing a README to compile LO on Solaris with GCC
Change-Id: Ibd9075708fb5b47fb3ed1bf438522c3f3f2af0ab
Diffstat (limited to 'README.Solaris')
-rw-r--r-- | README.Solaris | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/README.Solaris b/README.Solaris new file mode 100644 index 000000000000..a36cc8bff142 --- /dev/null +++ b/README.Solaris @@ -0,0 +1,39 @@ +Instructions to compile LO on Solaris with gcc + +Disclaimer +---------- +This is still work in progress +Compiling LO on Solaris with gcc is a work done by Lanedo ( www.lanedo.com ) +Any inquiry could be sent to office-solaris@lanedo.com + + +Prerequisites +------------- + +A working Oracle Solaris 11 installation + + +Installing Dependancies +----------------------- + +sudo -s + +pkg install git make gcc-45 autoconf autogen automake-110 gnu-m4 + +perl -MCPAN -e 'install Archive::Zip::Archive' + +pkg install pkg:/system/header@0.5.11-0.175.0.0.0.2.1 +pkg install pkg:/developer/gperf@3.0.3-0.175.0.0.0.2.537 +pkg install pkg:/developer/parser/bison@2.3-0.175.0.0.0.2.537 +pkg install pkg:/developer/lexer/flex@2.5.35-0.175.0.0.0.2.537 +pkg install pkg:/developer/documentation-tool/doxygen@1.5.7.1-0.175.0.0.0.2.537 + + +Compiling +--------- + +CC="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= --disable-gconf --enable-gio --disable-gnome-vfs --disable-gstreamer --without-fonts --with-system-dicts --without-stlport --disable-mozilla --without-system-mozilla --disable-xmlsec --with-system-openssl + +gmake + + |