summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Script
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the misbegotten --save-explain-info feature.Steven Knight2004-08-171-7/+1
|
* Add a Flatten() function to help the transition to Builders returning lists.Steven Knight2004-08-121-0/+1
|
* Make exception handling thread-safe by using sys.exc_info() instead of ↵Steven Knight2004-07-132-14/+11
| | | | sys.exc_{type,value}.
* Make exception handling conform to Pythonic standards. (Kevin Quick)Steven Knight2004-07-131-1/+1
|
* QT fixes and enhancements: Moc() and Uic() builders, a lot of new ↵Steven Knight2004-07-121-1/+1
| | | | variables. (Christoph Wiedemann)
* Add an option to not save the --debug=explain information.Steven Knight2004-06-151-5/+8
|
* Remove dead imports and other things found by PyChecker.Steven Knight2004-06-011-5/+8
|
* Eliminate the refactored-out-of-existence Sig.Calculator methods (whose jobs ↵Steven Knight2004-05-301-1/+1
| | | | are now handled by Node methods). Stop tying calculators to Taskmaster objects, and eliminate the unused Taskmaster.Calc class.
* Make env.SConscript() expand dirs names.Steven Knight2004-05-251-0/+7
|
* Better handling of syntax errors during variable expansion. (Anthony Roach)Steven Knight2004-05-231-3/+3
|
* Add support for fetching command-line arguments by position number. (Gary ↵Steven Knight2004-05-231-0/+3
| | | | Oberbrunner)
* Make the saved info opaque to the .sconsign subsystem. Lots of other cleanup.Steven Knight2004-05-141-47/+3
|
* Cleaner Task interface when using the -c option.Steven Knight2004-05-081-12/+6
|
* Refactor .sconsign management into its own module.Steven Knight2004-05-061-1/+1
|
* Performance improvement: memo-ize Node.FS string values when appropriate.Steven Knight2004-05-011-0/+6
|
* Ant-like tasks: Chmod(), Copy(), Delete(), Mkdir(), Move(), Touch().Steven Knight2004-04-191-0/+8
|
* Add the highly anticipated --debug=explain option to provide build reasoning.Steven Knight2004-04-171-2/+71
|
* Add warnings for easily-confused variable names like 'targets' and 'sources.'Steven Knight2004-04-061-0/+2
|
* Put the --duplicate option in alphabetical order in the help output.Steven Knight2004-04-031-11/+12
|
* Fix the Command() global function when the action is a command-line string.Steven Knight2004-03-311-23/+1
|
* Add --debug=presub to the help text.Steven Knight2004-03-241-4/+6
|
* Add a --debug= option to print commands before substitution. (Gary Oberbrunner)Steven Knight2004-03-231-1/+4
|
* Add an Execute() method.Steven Knight2004-03-121-0/+3
|
* scons.0.92 - Implement a --duplicate= option. (Christoph Wiedemann)Steven Knight2004-03-061-2/+25
|
* Save memory by allowing Nodes to clean up their Executor's build ↵Steven Knight2004-02-091-0/+6
| | | | environments after they've been built.
* Add options to investigate object creation and memory consumption.Steven Knight2004-02-071-11/+47
|
* Fix ARGUMENTS specifications on the command line that have multiple = in ↵Steven Knight2004-01-251-1/+1
| | | | them. (Zephaniah Hull)
* Handle Configure() calls in multiple SConscript files.Steven Knight2004-01-081-13/+13
|
* Fix spelling errors in error messages, man page typos.Steven Knight2003-12-081-3/+3
|
* Relax the duplicate-environment restriction for targets so that it's okay if ↵Steven Knight2003-12-081-0/+1
| | | | the two environments would build the target with the same command or function call. (Scott Fritchie)
* Make the message about missing SConscript files a warning, not a hard ↵Steven Knight2003-12-012-21/+30
| | | | write(), so it can be ignored/disabled. (Scott Fritchie)
* Added better -H documentation for --debug and remove -e from man page. ↵Steven Knight2003-11-181-1/+3
| | | | (Anthony Roach)
* Add BUILD_TARGETS, COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.Steven Knight2003-11-072-32/+82
|
* Add new Options flavors. (Hartmut Goebel)Steven Knight2003-11-041-1/+6
|
* Fix subclassing of the Environment and Scanner classes.Steven Knight2003-10-301-288/+336
|
* Fix a regression with CPPDEFINES when using the g++ Tool.Steven Knight2003-10-261-340/+292
|
* Really handle lack of the threading.py module when run by non-threaded Pythons.Steven Knight2003-10-221-1/+7
|
* Better detection of KeyboardInterrupts. (Christoph Wiedemann)Steven Knight2003-10-212-2/+4
|
* Fix various SConf bugs. (Christoph Wiedemann)Steven Knight2003-10-211-0/+6
|
* More Environment method conversions:Steven Knight2003-10-131-31/+22
|
* Add more environment methods for global functions: Action(), Builder(), ↵Steven Knight2003-09-251-19/+32
| | | | Environment(), Literal(), Platform(), Split(), Tool(). Deprecate ParseConfig() in favor of an environment method.
* Refactor the GetSConscriptFilenames() function into an SConsEnvironment method.Steven Knight2003-09-251-76/+77
|
* Add global functions for all of the default Builders attached to the default ↵Steven Knight2003-09-231-59/+91
| | | | Environment.
* Expand construction variables on the values of SConscript() keyword arguments.Steven Knight2003-09-181-1/+6
|
* Have the closing message say ...terminatedSteven Knight2003-09-181-1/+6
|
* Python 1.5.2 portability.Steven Knight2003-09-181-1/+1
|
* Turn more global functions into Environment methods. (clone of 0.92.C121)Steven Knight2003-09-152-102/+133
|
* Make more Environment methods from global functions.Steven Knight2003-09-141-30/+49
|
* Add SourceSignatures() and TargetSignatures() environment methods.Steven Knight2003-09-122-29/+5
|
* Make a Clean() environment method. Add global functions for AlwaysBuild(), ↵Steven Knight2003-09-102-25/+14
| | | | Command(), Depends(), Ignore(), Install(), InstallAs(), Precious(), SideEffect() and SourceCode().