在 SCons 中创建混合(值集)CPPDEFINES
我想将编译器定义设置为 -DBLUB 以及 -DFOO=1。
目前我只有:
env.Append("CPPDEFINES", ["BLUB", "VALUE2"])
我现在想通过 "FOO" : 1 包含第三个定义,因此使用 CPPDEFINES 作为字典,这样我以后就可以很容易地进行测试
env["CPPDEFINES"].get("FOO") == 1
或所以。我尝试的一切都会导致语法错误或奇怪的错误。 有人可以向我解释一下在 python 中执行此操作的奇怪方法吗?
I'd like to set the compiler defines to -DBLUB as well as -DFOO=1.
Currently I only have:
env.Append("CPPDEFINES", ["BLUB", "VALUE2"])
I now would like to include a third define via "FOO" : 1 and thus use CPPDEFINES as a dictionary so I can later on test quite easy
env["CPPDEFINES"].get("FOO") == 1
or so. Everything I attempted leads to syntax errors or strange errors.
Could one explain the strange ways to do this in python to me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要为任何单个定义指定一个值,
CPPDEFINES
必须是一个字典。来自 scons 用户手册:
对于你的例子,我建议:
或
If you need to specify a value for any single define,
CPPDEFINES
must be a dictionary.From the scons User Manual:
For your example, I suggest:
or