bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #20394] vpath directive drops entries


From: Paul D. Smith
Subject: [bug #20394] vpath directive drops entries
Date: Tue, 10 Jul 2007 06:51:00 +0000
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.4) Gecko/20061201 Firefox/2.0.0.4 (Ubuntu-feisty)

Follow-up Comment #4, bug #20394 (project make):

Something like that could be tricky to accomplish, since make is highly
recursive: when make starts checking for timestamps on files it doesn't know
whether that file was found using implicit or explicit rules, etc.

Plus, I think it would be even more confusing to have some kinds of targets
(implicit) behave unexpectedly while others (explicit) behaved as expected,
but more slowly.

To fix this problem we need to add a way to determine if the cache is stale.

My idea on how to do this is for make to keep a counter that is incremented
every time make invokes a subprocess.  Or maybe, from a correctness point of
view, it should be updated every time a subprocess _finishes_.  Then when a
directory was cached it would store the current value of that counter.  The
next time the cached data was consulted, if the current counter was greater
than the stored counter the cache would be considered stale and new data
would be read.

This would significantly reduce the efficiency of the cache, but it would
increase correctness and the cache would still be useful while make is
looking for things to build--for situations where there's very little or
nothing to do the cache would still be a big win.

    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?20394>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]