Changes between Version 3 and Version 4 of CompileClient
- Timestamp:
- May 29, 2007, 4:17:07 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CompileClient
v3 v4 10 10 == Linux/x86 == 11 11 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 12 If you want to build the client software for local use on your machine only, it is enough to simply build it using 15 13 {{{ 16 14 ./_autosetup 17 ./configure --disable-server --build=i686-pc-linux-gnu \ 15 ./configure --disable-server --enable-client CXXFLAGS="-O3 -funroll-loops -fforce-addr -ffast-math" 16 make 17 }}} 18 19 If instead you intend to build portable binaries of the client software that should run on a wide variety of GNU/Linux platforms, it 20 is recommended to build the client software using a virtual machine (e.g. running under Microsoft Virtual PC, download the [VirtualMachines Compatibility] virtual machine image). 21 In this case you should build using 22 {{{ 23 ./_autosetup 24 ./configure --disable-server --enable-client-release --build=i686-pc-linux-gnu \ 18 25 CXXFLAGS="-O3 -funroll-loops -fforce-addr -ffast-math" 19 26 make