Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scons: how to force rebuild?

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?

like image 903
Hind Forsum Avatar asked Oct 02 '16 14:10

Hind Forsum


1 Answers

Try this:

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

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

like image 160
Robᵩ Avatar answered Nov 04 '22 11:11

Robᵩ