Open
Description
Filed to capture a thread here:
Should one wish to see the scripts being processed, there's not a particularly clean way to set this up, due to the way things get evaluated: hooking the SConscript function via a decorator ends up with references to things unavailable at the time. It would, however, be easy for SCons itself to provide this information, perhaps enabled by a debug flag. That is, it could optionally go from
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: done reading SConscript files.
scons: Building targets ...
...
scons: done building targets.
to
scons: Reading SConscript files ...
Reading src/SConscript
Reading src/lib/network/SConscript
...
scons: done reading SConscript files.
...