Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>You might want to check out alternative build tools like <a href="http://www.scons.org/" rel="nofollow noreferrer">SCons</a>. SCons has a mode <em>--implicit-cache</em> where it caches implicit dependencies. That should help in the scenario you described.</p> <p>Here's an extract from the <a href="http://www.scons.org/doc/production/HTML/scons-man.html" rel="nofollow noreferrer">man page</a>.</p> <blockquote> <p>--implicit-cache<br> Cache implicit dependencies. This causes scons to use the implicit (scanned) dependencies from the last time it was run instead of scanning the files for implicit dependencies. This can significantly speed up SCons, but with the following limitations: scons will not detect changes to implicit dependency search paths (e.g. CPPPATH, LIBPATH) that would ordinarily cause different versions of same-named files to be used. scons will miss changes in the implicit dependencies in cases where a new implicit dependency is added earlier in the implicit dependency search path (e.g. CPPPATH, LIBPATH) than a current implicit dependency with the same name. </p> <p>--implicit-deps-changed<br> Forces SCons to ignore the cached implicit dependencies. This causes the implicit dependencies to be rescanned and recached. This implies --implicit-cache. </p> <p>--implicit-deps-unchanged<br> Force SCons to ignore changes in the implicit dependencies. This causes cached implicit dependencies to always be used. This implies --implicit-cache. </p> </blockquote>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload