Re: How to force a re-building of a cached file using the env.CacheDir() feature.

Mats Wichmann <[email protected]> Wed, 1 Feb 2023 10:45:07 -0700
Newsgroups gmane.comp.programming.tools.scons.user
Message-ID <[email protected]>
On 1/30/23 18:34, Don Baldwin wrote:
> So is there a way to find the bsig of a target?
> 
> Thanks,
> 
> Don

The sconsign utility calls this the build action signature, you can see 
output using "sconsign -a" - there will only be information if a node 
has a builder associated.

Should you need to extract it programatically while running SCons, the 
info is there - active nodes with builders have a binfo (build 
information) instance inside them, which contains a bactsig, Don't 
believe there's considered to be an official API to fetch that.