Hi Giridhar,
On 20 May 2014 12:32, Giridhar Tammana <
girid...@gmail.com> wrote:
> How do I set dump_trace variable?
The 'dump_trace' is a customization that needs to be done to your
SConscript file. The reason is that there's no command-line option in
SCons to say "please treat everything as dirty" (and last time I asked
about it, it didn't seem like there would ever be one). The following
should do the trick:
if ARGUMENTS.get("dump_trace", False) :
env.SetOption("no_exec", True)
env.Decider(lambda x, y, z : True)
SCons.Node.Python.Value.changed_since_last_build = (lambda x, y, z: True)
cheers,
Remko