Scons:如何强制重建?

问题描述 投票:0回答:1

使用 make 时,我可以指定

make -B
来强制重建。

但是如何用 scons 指定它,强制重建

all
或强制重建特定文件夹?

linux makefile scons rebuild
1个回答
24
投票

试试这个:

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

--clean
删除目标及其依赖项

--no-cahce
重建而不从 CacheDir 中检索已构建的目标

参考:

scons --help

© www.soinside.com 2019 - 2024. All rights reserved.