Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two projects under the boost build system:

Jamroot
  -- ProjH
    -- Jamfile
  -- ProjL
    --Jamfile

ProjH depends on ProjL. From some reason when I remove the bin directory from projH and I build it a part of projL is rebuilt as well each time I rebuild projH.

What are the options to debug this?


So far I tried running bjam with --debug-building and comparing build requirements when building ProjL directly and when building as ProjH dependency. They seem the same, the only difference is in include paths - when building as a dependency, they are relative to ProjH. But if this was the problem I suppose that ProjL would be built only once, not after each rebuild of ProjH.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.