Scons: how to force rebuild?
Asked Answered
B

1

15

When using make, I can specify make -B to force rebuild.

But how specify it with scons, to force rebuild all or force rebuild specific folders?

Billon answered 2/10, 2016 at 14:31 Comment(1)
So you don't want to clean first?Demiurge
B
23

Try this:

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

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

Bidden answered 5/10, 2016 at 17:2 Comment(1)
Hmmm, --clean will likely clean the build, which make -B does not really do?Schnitzler

© 2022 - 2024 — McMap. All rights reserved.