13

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?

Daniel Widdis
  • 8,424
  • 13
  • 41
  • 63
Hind Forsum
  • 9,717
  • 13
  • 63
  • 119

1 Answers1

20

Try this:

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

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

Robᵩ
  • 163,533
  • 20
  • 239
  • 308