1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

the RFS server will always be compiled in 32 bit mode

This commit is contained in:
Bogdan Marinescu 2010-02-01 23:25:02 +00:00
parent 0a6a5244c5
commit 3bd55185f5

View File

@ -34,8 +34,8 @@ else:
local_include = "-Irfs_server -Iinc/remotefs"
# Compiler/linker options
cccom = "gcc -O0 -g %s -Wall %s -c $SOURCE -o $TARGET" % ( local_include, cdefs )
linkcom = "gcc -o $TARGET $SOURCES"
cccom = "gcc -m32 -O0 -g %s -Wall %s -c $SOURCE -o $TARGET" % ( local_include, cdefs )
linkcom = "gcc -m32 -o $TARGET $SOURCES"
# Env for building the program
comp = Environment( CCCOM = cccom,