Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该如何更改 SConstruct 以查看每个文件的编译方式的详细信息?
目前,scons 只输出一堆 'compiling xxx.c ...'。
可以使用 SConstruct 文件执行以下操作:
SetOption('silent')
这将抑制任何命令的输出。有没有可能你有一个漂浮在某个地方?
附录:您还可以设置CCOMSTR变量以覆盖 C 编译的构建消息(尽管每个构建器都有一个不同的变量),甚至还有一个(没有很好记录的)PRINT_CMD_LINE_FUNC变量可以提供一般覆盖。
CCOMSTR
PRINT_CMD_LINE_FUNC