Changes between Version 18 and Version 19 of BaseInstall
- Timestamp:
- Apr 28, 2009, 3:27:24 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BaseInstall
v18 v19 59 59 60 60 Furthermore, you need default development tools - that are most likely already installed on your system - such as gcc, autoconf, automake, aclocal, libtool, liblt-dev ... 61 62 === Selecting a compiler === 63 64 As the gcc-4.3 compiler is very restrictive when compiling C++ and you will have some trouble with Boost and Log4cxx, we suggest to use e.g. gcc-4.1. You then have to compile the libraries and Ariba with this compiler. You can tell Log4cxx and Ariba to use a different compiler using: 65 {{{ 66 ./configure --prefix=... CXX=gcc-4.1 67 }}} 68 This will not work in Boost as the {{{configure}}} script is just a wrapper around the Boost Build.System {{{bjam}}}. You can edit the jamfile in the Boost root directory: 69 {{{ 70 using gcc : 4.1 ; 71 }}} 72 and then build using bjam as described in {{{http://www.boost.org/doc/libs/1_38_0/more/getting_started/unix-variants.html}}}. 61 73 62 74 === Installing libraries locally === … … 132 144 }}} 133 145 146 147 134 148 == Overview of special {{{configure}}} options == 135 149