Scons:如何强制重建?

时间:2016-10-02 14:31:58

标签: linux makefile option scons rebuild

使用make时,我可以指定' make -B'强制重建。

但如何用scons指定它,强制重建' all'或强制重建特定文件夹? 感谢。

1 个答案:

答案 0 :(得分:9)

试试这个:

scons --clean [targets]
scons --no-cache [targets]

参考:http://scons.tigris.org/issues/show_bug.cgi?id=438