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?
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?
Try this:
scons --clean [targets]
scons --no-cache [targets]
Reference: http://scons.tigris.org/issues/show_bug.cgi?id=438
--clean
will likely clean the build, which make -B
does not really do? –
Schnitzler © 2022 - 2024 — McMap. All rights reserved.