Changes between Version 3 and Version 4 of CompileClient


Ignore:
Timestamp:
May 29, 2007, 4:17:07 PM (17 years ago)
Author:
repr
Comment:

tried to qualify build-instructions for Linux client

Legend:

Unmodified
Added
Removed
Modified
  • CompileClient

    v3 v4  
    1010== Linux/x86 ==
    1111
    12 We recommend that you build client software using a virtual machine running under Microsoft Virtual PC. Download the [VirtualMachines Compatibility] virtual machine image. Then:
    13  * [SourceCode Download current source code]
    14  * In the top directory, type
     12If you want to build the client software for local use on your machine only, it is enough to simply build it using
    1513{{{
    1614./_autosetup
    17 ./configure --disable-server --build=i686-pc-linux-gnu \
     15./configure --disable-server --enable-client CXXFLAGS="-O3 -funroll-loops -fforce-addr -ffast-math"
     16make
     17}}}
     18
     19If instead you intend to build portable binaries of the client software that should run on a wide variety of GNU/Linux platforms, it
     20is recommended to build the client software using a virtual machine (e.g. running under Microsoft Virtual PC, download the [VirtualMachines Compatibility] virtual machine image).
     21In this case you should build using
     22{{{
     23./_autosetup
     24./configure --disable-server --enable-client-release --build=i686-pc-linux-gnu \
    1825    CXXFLAGS="-O3 -funroll-loops -fforce-addr -ffast-math"
    1926make