1
我有此SConstruct文件:爲什麼在env變量中使用CCFLAGS不是scons?
env=Environment()
env.Append(CCFLAGS = ['-std=c99', '-Wall', '-Wextra', '-g'])
print env["CCFLAGS"]
#Program('test_array.c',CCFLAGS=['-std=c99', '-Wall', '-Wextra', '-g'],
CPPPATH = '.', LIBS='stuff', LIBPATH=".")
#Program('test_array.c',CPPPATH = '.', LIBS='stuff', LIBPATH=".")
從在取消對第一項目()的輸出是:
scons
scons: Reading SConscript files ...
-std=c99 -Wall -Wextra -g
scons: done reading SConscript files.
scons: Building targets ...
gcc -o test_array.o -c -std=c99 -Wall -Wextra -g -I. test_array.c
gcc -o test_array test_array.o -L. -lstuff
scons: done building targets.
從在取消對第二項目()的輸出:
scons
scons: Reading SConscript files ...
-std=c99 -Wall -Wextra -g
scons: done reading SConscript files.
scons: Building targets ...
gcc -o test_array.o -c -I. test_array.c
test_array.c: In function 'test_insert':
test_array.c:85:4: error: 'for' loop initial declarations are only allowed in C99 mode
test_array.c:85:4: note: use option -std=c99 or -std=gnu99 to compile your code
env變量具有CCFLAGS的值,但我不知道爲什麼在Program()調用中未明確指定時未使用它。
工程。謝謝布雷迪! – Scooter 2012-08-06 10:30:27
@Scooter,高興地幫助:) – Brady 2012-08-06 10:31:19
或做DefaultEnvironment()。附加(CCFLAGS ....)這樣你可以保持你的建設者調用程序清潔(我的意思是沒有env。前面),如果你只需要一個構建環境。 – 2012-10-12 22:27:37