Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Scons is complaining

  implicit dependency foo not found, needed by target bar

foo is created in my SCons build flow, and then consumed in the creation of target bar. After foo is created, SCons complains that it doesn't exist when it re-checks the dependencies before running bar. Why is SCons caching the existence check for foo?

After I get the failure, if I remove .sconsign.dblite and rerun, SCons finds the file and keeps running.

share|improve this question
1  
it is difficult to help you without the scons script – David Cournapeau Jul 3 '09 at 9:25
The scons script is 4000 lines -- I won't inflict that upon you. – Ross Rogers Jul 25 '09 at 5:46

1 Answer

up vote 1 down vote accepted

The issue was that I was running with

SetOption('implicit_cache', 1)

When I comment out implicit caching, then this problem doesn't manifest. This seems to be a bug... shouldn't SCons re-check for the file if the implicit cache says the file doesn't exist?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.