Changes between Version 18 and Version 19 of BaseInstall


Ignore:
Timestamp:
Apr 28, 2009, 3:27:24 PM (15 years ago)
Author:
Christoph Mayer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BaseInstall

    v18 v19  
    5959
    6060Furthermore, 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
     64As 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}}}
     68This 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{{{
     70using gcc : 4.1 ;
     71}}}
     72and then build using bjam as described in {{{http://www.boost.org/doc/libs/1_38_0/more/getting_started/unix-variants.html}}}.
    6173
    6274=== Installing libraries locally ===
     
    132144}}}
    133145
     146
     147
    134148== Overview of special {{{configure}}} options ==
    135149