gpt4 book ai didi

scons - 为什么 scons 不在 env 变量中使用 CCFLAGS?

转载 作者:行者123 更新时间:2023-12-04 05:36:49 24 4
gpt4 key购买 nike

我有这个 SConstruct 文件:

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=".")

取消注释第一个 Program() 的输出是:
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.

取消注释第二个 Program() 的输出是:
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() 调用中未明确指定时不使用它。

最佳答案

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 上调用 Program() 构建器您创建和修改。

因此,您真正需要的是第二次调用,如下所示:
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=".")

关于scons - 为什么 scons 不在 env 变量中使用 CCFLAGS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11825999/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com