如果缺少任何 SConscript,如何停止 SCons 构建?
How stop SCons build if any SConscript is missing?
即使在构建期间缺少某些 SConscript 文件,SCons 仍会继续构建。例如,我有这样的源代码结构:
├── a
│ └── test1.c
├── b
│ ├── SConscript
│ └── test2.c
└── SConstruct
在 SConstruct 中,我调用了两个 SConscript 文件,其中一个 SConscript 文件丢失了。
SConscript('a/SConscript')
SConscript('b/SConscript')
我在 运行 "scons" 命令时收到一条警告消息。
scons: Reading SConscript files ...
scons: warning: Ignoring missing SConscript 'a/SConscript'
File "/home/srbd/workspace/programming/scons_demo/SConstruct", line 1, in <module>
scons: done reading SConscript files.
scons: Building targets ...
gcc -o b/test2.o -c b/test2.c
gcc -o b/test2 b/test2.o
scons: done building targets.
但它显示整个 scons 构建已成功完成。
在我的真实系统中,我有很多来源 folders/files,其中一些 SConscript 在构建时可能不存在。当整体构建显示成功时,很难仅通过警告消息注意到那些丢失的文件。
我搜索了 scons 参数,但没有找到有用的参数。
如果其中一个 SConscript 丢失并显示构建失败,我是否可以停止构建?
在 SCons 的开发版本中有一个修复,应该在下一个版本 3.0.2 中。
希望3.0.2能在年底前发布。
即使在构建期间缺少某些 SConscript 文件,SCons 仍会继续构建。例如,我有这样的源代码结构:
├── a
│ └── test1.c
├── b
│ ├── SConscript
│ └── test2.c
└── SConstruct
在 SConstruct 中,我调用了两个 SConscript 文件,其中一个 SConscript 文件丢失了。
SConscript('a/SConscript')
SConscript('b/SConscript')
我在 运行 "scons" 命令时收到一条警告消息。
scons: Reading SConscript files ...
scons: warning: Ignoring missing SConscript 'a/SConscript'
File "/home/srbd/workspace/programming/scons_demo/SConstruct", line 1, in <module>
scons: done reading SConscript files.
scons: Building targets ...
gcc -o b/test2.o -c b/test2.c
gcc -o b/test2 b/test2.o
scons: done building targets.
但它显示整个 scons 构建已成功完成。
在我的真实系统中,我有很多来源 folders/files,其中一些 SConscript 在构建时可能不存在。当整体构建显示成功时,很难仅通过警告消息注意到那些丢失的文件。
我搜索了 scons 参数,但没有找到有用的参数。
如果其中一个 SConscript 丢失并显示构建失败,我是否可以停止构建?
在 SCons 的开发版本中有一个修复,应该在下一个版本 3.0.2 中。
希望3.0.2能在年底前发布。