Changes between Version 53 and Version 54 of BuildInstructions


Ignore:
Timestamp:
Aug 1, 2009, 3:52:33 PM (15 years ago)
Author:
arn34
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildInstructions

    v53 v54  
    127127  * `cd gcc`
    128128  * `make -j3` (where `3` is the number of parallel builds to run, and could perhaps be one plus the number of CPU cores available)
    129   * ''' If you cannot manage to compile with the Apple's default compiler (gcc 4.0.1), you may try compiling with gcc 4.3 ''' (this worked for me a least) : for this, see the [http://trac.wildfiregames.com/wiki/BuildInstructions#Compilingwithgcc4.3underOSX detailed section here under].
     129  * ''' If you cannot manage to compile with the Apple's default compiler (gcc 4.0.1), you may try compiling with gcc 4.2 (recommended) or 4.3 ''' (this worked for me a least) : for 4.3, see the [http://trac.wildfiregames.com/wiki/BuildInstructions#Compilingwithgcc4.3underOSX detailed section here under].
    130130  * If you encounter any build errors, look for an existing bug report or report a new bug (I myself still get a last error, but it seems harmless).
    131131
     
    157157 * If you get '''Performance warning: your graphics card does not support compressed textures''' when starting the game, it is an issue with [http://dri.freedesktop.org/wiki/S3TC S3TC texture compression]. You might be able to solve it by installing the `libtxc_dxtn` library, in a distro-specific way.
    158158
    159  * if you get `/usr/bin/ld: Undefined symbols` (see code snippet here under), this comes from your glibc that is older than 2.4 :
     159 * if you get '''`/usr/bin/ld: Undefined symbols`''' (see code snippet here under), this comes from your glibc that is older than 2.4 :
    160160
    161161{{{
     
    169169}}}
    170170
    171    Actually, this version of glibc doesn't support the stack-protection feature. So, until this is detected by the build system, you can hack it by removing the "-fstack-protector-all" line and the next line too from build/premake/premake.lua
     171 Actually, older versions of glibc doesn't support the stack-protection feature. So, until this is detected by the build system, you can hack it by removing the "-fstack-protector-all" line and the next line too from build/premake/premake.lua
    172172
    173 
     173[[BR]]
    174174=== Installing thread-safe !SpiderMonkey ===
    175175