summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Script
Commit message (Collapse)AuthorAgeFilesLines
...
* Deprecate $WIN32 variables name in place of $WINDOWS* variables names, and ↵Steven Knight2006-01-211-3/+3
| | | | eliminate other Win32 references.
* Fix the use of Configure() contexts in nested subsidiary SConscript files. ↵Steven Knight2005-12-282-3/+3
| | | | (Jon Rafkind)
* Handle scanning of the in-memory entries for a Dir with a scanner, not a ↵Steven Knight2005-12-271-1/+1
| | | | hard-coded Python method.
* Add a --debug=taskmaster option to print traces of what it's doing on its stack.Steven Knight2005-12-181-1/+11
|
* Report removal of multiple targets correctly when using -n -c. (Patrick Mezard)Steven Knight2005-10-021-2/+4
|
* Check all targets when deciding if a target is up to date. (Patrick Mezard)Steven Knight2005-09-261-13/+16
|
* Handle IOError exceptions when pushing files to CacheDir (and elsewhere).Steven Knight2005-08-201-2/+36
|
* Fix the -U behavior (broken when we made BUILD_TARGETS modifiable).Steven Knight2005-08-172-4/+22
|
* Allow modification of BUILD_TARGETS from with SConscript files. (Stanislav ↵Steven Knight2005-08-131-1/+3
| | | | Baranov)
* Enhance EnsureSConsVersion() to take revision numbers, too. (Amir Szekely)Steven Knight2005-08-121-11/+23
|
* Print stacktrace for UserErrors when --debug=stacktrace is used. (Chad Austin)Steven Knight2005-08-111-0/+3
|
* Move max_drift from Sig/MD5.py to Node/FS.py.Steven Knight2005-07-041-3/+2
|
* Add a --diskcheck option to control looking on-disk for things.Steven Knight2005-06-101-1/+43
|
* Don't print duplicate stats when --profile is used.Steven Knight2005-06-021-11/+10
|
* Print statistics even when we terminate early (e.g. using -h).Steven Knight2005-06-021-23/+24
|
* Add a --debug=nomemoizer option to disable memoization.Steven Knight2005-06-012-12/+21
|
* Eliminate multiple calls to os.stat() to fetch file info.Steven Knight2005-05-132-11/+11
|
* Remove widespread reliance on SCons.Node.FS.default_fs so we can initialize ↵Steven Knight2005-04-022-112/+160
| | | | it once (later than we used to) and eliminate all the __setTopLevelDir() calls.
* Add a subsystem for collecting stats about how Nodes are handled by the ↵Steven Knight2005-03-241-3/+5
| | | | Taskmaster.
* Refactor Main.py's Alias lookup to allow customized Alias (sub-)classes. ↵Steven Knight2005-03-181-2/+12
| | | | (Stanislav Baranov)
* Restore (some) old SCons.Script.* names, some released SConscript files are ↵Steven Knight2005-03-172-1/+62
| | | | using them.
* Actually support a global Entry name (since we already documented it).Steven Knight2005-03-161-0/+1
|
* Optimize out N*M suffix matching in Builder.py.Steven Knight2005-03-041-0/+5
|
* Fix creating a build_dir from scratch when there's a subsidiary SConscript() ↵Steven Knight2005-02-161-1/+3
| | | | file.
* Don't read up entire directories to decide if an Alias is up-to-date.Steven Knight2005-02-141-0/+2
|
* Move the canned Scanner objects out of Defaults.py and document how to add ↵Steven Knight2005-02-141-0/+6
| | | | Scanners that env.Object() can use.
* Display the help message when -u -h is supplied. (Elliot Murphy)Steven Knight2005-02-111-2/+0
|
* Fix --debug=memoizer so it actually prints some stats on Python 2.x.Steven Knight2005-01-132-1/+19
|
* Improve --debug=count to get an idea of when different objects are created.Steven Knight2005-01-121-11/+32
|
* More performance improvements?Steven Knight2005-01-121-30/+46
|
* Eliminate Executor's creation and use of a build_dict and a subst_dict, ↵Steven Knight2005-01-102-4/+26
| | | | which were creating a separate OverrideEnvironment for every target and foiling the Memoizer's attempts at speeding up things.
* Support 'from SConsScript import *' to allow Python modules imported by ↵Steven Knight2005-01-083-1304/+1397
| | | | SConscript files to get at the global builders and functions more easily.
* Remove build engine dependencies on SCons.Script. Fix a misspelled variable ↵Steven Knight2005-01-081-1/+13
| | | | name.
* Print --debug={tree,dtree,includes} even if the build has an error.Steven Knight2004-12-031-19/+19
|
* Add a --debug=stree option to show Node status. (Kevin Quick)Steven Knight2004-11-211-2/+9
|
* Faster/leaner tree dumping. (Kevin Quick)Steven Knight2004-11-111-2/+2
|
* Handle moved SCons source tree. (Kevin Quick)Steven Knight2004-11-111-33/+25
|
* Clear out dependent-child caches when a node is rebuilt. (Kevin Quick)Steven Knight2004-10-071-1/+1
|
* Fix use of a list of SConscript files when calling env.SConscript().Steven Knight2004-09-291-1/+7
|
* Add a --debug=findlibs option. (Gary Oberbrunner)Steven Knight2004-09-251-1/+3
|
* Add a ParseDepends() function to read up mkdep-style files.Steven Knight2004-09-251-0/+1
|
* Fix handling when BuildDir exists but is unwriteable. Add Stop. to messages ↵Steven Knight2004-09-201-2/+2
| | | | at SConscript-read time. (Kevin Quick)
* Print tracebacks for errors other than UserError and StopError. (Gary ↵Steven Knight2004-09-181-5/+14
| | | | Oberbrunner)
* Fix -k sometimes trying to link executables even when library builds fail.Steven Knight2004-09-171-2/+8
|
* Fix suffix selection when there's no source file. (Kevin Quick)Steven Knight2004-09-151-12/+0
|
* Handle exceptions in FunctionActions. (Steve Christensen)Steven Knight2004-09-151-1/+4
|
* Create .cvsignore files to ignore the generated *.pyc files.Steven Knight2004-09-131-0/+1
|
* Lots of Configure() enhancements. (Christoph Wiedemann)Steven Knight2004-09-051-5/+19
|
* Remove all features deprecated in 0.93 or earlier.Steven Knight2004-09-031-38/+0
|
* Allow Help() to be called multiple times, appending to the text each time. ↵Steven Knight2004-08-302-35/+31
| | | | (Chad Austin)