2012-08-06 55 views
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()調用中未明確指定時未使用它。

回答

3

Program()構建器正在從DefaultEnvironment()中獲取構造變量,而不是從您創建的env中獲取構造變量。此行爲描述爲here

嘗試以下操作:

env=Environment() 
env.Append(CCFLAGS = ['-std=c99', '-Wall', '-Wextra', '-g']) 
print env["CCFLAGS"] 

# Program() will take the construction vars from env, not the DefaultEnvironment() 
#env.Program('test_array.c',CCFLAGS=['-std=c99', '-Wall', '-Wextra', '-g'], 
                CPPPATH = '.', LIBS='stuff', LIBPATH=".") 

#env.Program('test_array.c',CPPPATH = '.', LIBS='stuff', LIBPATH=".") 

通知我呼籲env你創建和修改程序()生成器。

所以,你真正需要的是第二個電話,內容如下:

env=Environment() 
env.Append(CCFLAGS = ['-std=c99', '-Wall', '-Wextra', '-g']) 
print env["CCFLAGS"] 

# Program() will take the construction vars from env, not the DefaultEnvironment() 
env.Program('test_array.c',CPPPATH = '.', LIBS='stuff', LIBPATH=".") 
+0

工程。謝謝布雷迪! – Scooter 2012-08-06 10:30:27

+0

@Scooter,高興地幫助:) – Brady 2012-08-06 10:31:19

+1

或做DefaultEnvironment()。附加(CCFLAGS ....)這樣你可以保持你的建設者調用程序清潔(我的意思是沒有env。前面),如果你只需要一個構建環境。 – 2012-10-12 22:27:37

相關問題