summaryrefslogtreecommitdiffstats
path: root/src/engine
Commit message (Collapse)AuthorAgeFilesLines
...
* Use fake Nodes, not strings, for scanner tests. Have Scanner test rexists() ↵Steven Knight2004-10-072-20/+25
| | | | methods return 1 for better test coverage. (Kevin Quick)
* Allow importing local files from Tools found on a toolpath. (Chad Austin)Steven Knight2004-10-071-11/+18
|
* Allow passing a dictionary of keyword arguments to Tool specifications. ↵Steven Knight2004-10-073-16/+48
| | | | (Gary Oberbrunner)
* Clear out dependent-child caches when a node is rebuilt. (Kevin Quick)Steven Knight2004-10-074-16/+42
|
* Better --debug=explain info when build actions change. (Kevin Quick)Steven Knight2004-10-061-3/+8
|
* Add a deprecated warning for the scanner keyword argument for Builder ↵Steven Knight2004-10-062-1/+6
| | | | creation. (Kevin Quick)
* Add a name to the default ObjSourceScanner. (Kevin Quick)Steven Knight2004-10-061-1/+1
|
* Fix use of a list of SConscript files when calling env.SConscript().Steven Knight2004-09-291-1/+7
|
* Fix env.subst() stack trace on var containing ListAction.Steven Knight2004-09-272-8/+48
|
* Fill in missing default Builder names. (Kevin Quick)Steven Knight2004-09-271-2/+4
|
* Add support for changing directory when executing Actions (the to the target ↵Steven Knight2004-09-277-98/+117
| | | | directory by default).
* More robust Scanner comparisons. (Kevin Quick)Steven Knight2004-09-263-1/+27
|
* Apply Scanner.Scanner args to the Base class initialization correctly. ↵Steven Knight2004-09-262-1/+14
| | | | (Kevin Quick)
* Update Scanner pydoc, enhance tests. (Kevin Quick)Steven Knight2004-09-252-23/+50
|
* Add a --debug=findlibs option. (Gary Oberbrunner)Steven Knight2004-09-254-4/+37
|
* Add a ParseDepends() function to read up mkdep-style files.Steven Knight2004-09-255-0/+111
|
* Add ParseConfig() support for -mwindows and -mno-cygwin. (Clive Levinson)Steven Knight2004-09-242-3/+10
|
* Get the source_scanner from the target node, not the source node. (Kevin Quick)Steven Knight2004-09-242-6/+6
|
* Add validator functions for PathOption. (Steve Christensen)Steven Knight2004-09-242-32/+201
|
* Fix --no-exec handling of cache. (Kevin Quick)Steven Knight2004-09-242-7/+27
|
* Make the linkloc tool use the value of to pick the version of MSVC. (Chris ↵Steven Knight2004-09-221-1/+1
| | | | Pawling)
* Fix inconsistency in Builder handling of src_suffix and extensions. (Kevin ↵Steven Knight2004-09-222-22/+53
| | | | Quick)
* Better error messages for bad builder creation. (Kevin Quick)Steven Knight2004-09-214-6/+28
|
* Performance optimization when caching include files for a search path. ↵Steven Knight2004-09-214-9/+227
| | | | (Eric Frias)
* Fix a cut-and-paste typo in the memoized attributed name in the ↵Steven Knight2004-09-211-1/+1
| | | | strfunction() method.
* Fix handling when BuildDir exists but is unwriteable. Add Stop. to messages ↵Steven Knight2004-09-202-3/+3
| | | | at SConscript-read time. (Kevin Quick)
* Allow ListOption to take a Python list of values asa default, not just a ↵Steven Knight2004-09-202-0/+12
| | | | comma-separated string containg the default values.
* Use callable class strfunction. (Kevin Quick)Steven Knight2004-09-202-0/+50
|
* Win32 portability fixes for tests.Steven Knight2004-09-191-0/+2
|
* Fix --debug=explain when the action is a Python function.Steven Knight2004-09-184-10/+43
|
* Build targets in an associated BuildDir even if there are local targets in ↵Steven Knight2004-09-182-5/+9
| | | | the source directory. (Kevin Quick)
* Allow LIBS to contain lists of lists.Steven Knight2004-09-183-4/+19
|
* Don't put LIBS Nodes in the scanned results list multiple times.Steven Knight2004-09-182-15/+37
|
* Print tracebacks for errors other than UserError and StopError. (Gary ↵Steven Knight2004-09-183-9/+41
| | | | Oberbrunner)
* Fix inconsistency in conf.CheckFunc().Steven Knight2004-09-172-2/+4
|
* Fix problems with Parallel Tasks and Exception handling. (Kevin Quick)Steven Knight2004-09-174-67/+239
|
* Fix -k sometimes trying to link executables even when library builds fail.Steven Knight2004-09-173-2/+24
|
* Guarantee ListOption persistence. (Elliot Murphy)Steven Knight2004-09-162-2/+5
|
* Return real builder names from the default, environment-less builders like ↵Steven Knight2004-09-153-10/+33
| | | | MkdirBuilder, DefaultSCCSBuilder and DefaultRCSBuilder. (Kevin Quick)
* Fix suffix selection when there's no source file. (Kevin Quick)Steven Knight2004-09-154-24/+241
|
* Avoid corrupting the .sconsign.dblite file by writing to a temporary file ↵Steven Knight2004-09-151-4/+14
| | | | and renaming it.
* Fix is_pseudo_derived_builder(). (Kevin Quick)Steven Knight2004-09-152-1/+8
|
* Fix Delete action for non-existent files and must_exist=1 under Python 2.3. ↵Steven Knight2004-09-151-1/+1
| | | | (Kevin Quick)
* Handle exceptions in FunctionActions. (Steve Christensen)Steven Knight2004-09-154-11/+15
|
* Fix Action comparison when a Builder has a suffix key of None. (Kevin Quick)Steven Knight2004-09-132-1/+22
|
* Better error message when a target is built multiple ways. (Kevin Quick)Steven Knight2004-09-131-1/+1
|
* Create .cvsignore files to ignore the generated *.pyc files.Steven Knight2004-09-139-0/+9
|
* Lots of Configure() enhancements. (Christoph Wiedemann)Steven Knight2004-09-0510-351/+473
|
* Add a configurable function for command-line printing. (Gary Oberbrunner)Steven Knight2004-09-053-3/+41
|
* Refactor spawning command-line actions to clean up the interface between ↵Steven Knight2004-09-043-89/+98
| | | | Action and SConf.