summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Initialize *FLAGS variables with objects that can add flags either as ↵Steven Knight2004-02-2666-151/+364
| | | | strings or lists.
* Better error message when a source file is missing.Steven Knight2004-02-245-7/+10
|
* Handle recursive substitution in overrides.Steven Knight2004-02-2411-32/+242
|
* Add an internal Environment._update() method that updates the dictionary ↵Steven Knight2004-02-235-0/+32
| | | | directly without running through user protections.
* Add a common tasks appendix to the user's guide. (Anthony Roach)Steven Knight2004-02-176-0/+234
|
* Make the Library test work even with linkers that don't like mixing C ↵Steven Knight2004-02-171-2/+5
| | | | programs with C++ libraries. (Chad Austin)
* Use "env -" instead of "env -i". (Chad Austin)Steven Knight2004-02-172-1/+4
|
* Update the __env__ variable when making a Copy() or Override() of an ↵Steven Knight2004-02-173-22/+68
| | | | Environment.
* Enhanced test to catch potential problems with absolute path names.Steven Knight2004-02-171-19/+37
|
* Add AppendUnique() and PrependUnique() Environment methods. Fix using the ↵Steven Knight2004-02-166-20/+193
| | | | qt Tool from a copied construction environment.
* Lay some groundwork for URL Nodes by abstracting local file system ↵Steven Knight2004-02-151-45/+108
| | | | operations into the FS class.
* Save memory by allowing Nodes to clean up their Executor's build ↵Steven Knight2004-02-0914-20/+164
| | | | environments after they've been built.
* Make the M4 Builder work with repositories by adding an rsrcnode attribute.Steven Knight2004-02-096-52/+243
|
* Win32 portability.Steven Knight2004-02-081-2/+2
|
* Updated test for C++ files in libraries. (Chad Austin)Steven Knight2004-02-081-5/+6
|
* More robust reading of VCComponents.dat. (Chad Austin)Steven Knight2004-02-082-5/+9
|
* Deprecate the overrides Builder() keyword argument in favor of specifying ↵Steven Knight2004-02-0810-29/+92
| | | | values directly as keyword arguments, like we do for other functions and methods.
* Move the __env__ construction variable into the Environment itself, not ↵Steven Knight2004-02-074-17/+9
| | | | created in the subst_dict each time.
* Add options to investigate object creation and memory consumption.Steven Knight2004-02-0713-44/+269
|
* Fix a new variable expansion bug.Steven Knight2004-02-042-2/+13
|
* Fetch implicit dependencies from SCCS/RCS.Steven Knight2004-01-295-2/+103
|
* Provide a better error message when a construction variable expansion is a ↵Steven Knight2004-01-294-1/+50
| | | | Python syntax error.
* Accomodate white space in path names when running tests.Steven Knight2004-01-276-7/+25
|
* Fix ARGUMENTS specifications on the command line that have multiple = in ↵Steven Knight2004-01-253-2/+7
| | | | them. (Zephaniah Hull)
* Have the Qt Builder(s) use flags from the environment used to specify the ↵Steven Knight2004-01-253-20/+74
| | | | target, not the environment that first had the Builder(s) attached. (Christoph Wiedemann)
* Refactor variable substitution for more scalable expansion of , etc.Steven Knight2004-01-207-189/+392
|
* Fix retrieving multiple target files from cache. (Bob Halley)Steven Knight2004-01-178-29/+147
|
* Win32 portability in test/Program.py.Steven Knight2004-01-161-2/+4
|
* Update for MSVS 2003 (7.1). (Greg Spencer)Steven Knight2004-01-162-24/+53
|
* Fix an incorrect registry lookup in msvc.py.Steven Knight2004-01-162-1/+6
|
* Make our source-file builds depend on the Copyright years, and fix the ↵Steven Knight2004-01-162-3/+4
| | | | option-v accordingly.
* Make the midl builder put the targets in the target directory, rather than ↵Steven Knight2004-01-163-7/+44
| | | | the source directory. (Anthony Roach)
* Fix MSVS Project file invocation when running scons.bat.Steven Knight2004-01-153-61/+102
|
* Better error handling if someone tries to add a non-Node as a source, ↵Steven Knight2004-01-116-41/+134
| | | | dependency or ignored dependency of a Node.
* Better test for use of Configure() in nested SConscript files..Steven Knight2004-01-101-3/+18
|
* Make the static/shared object check work even if the object was already created.Steven Knight2004-01-105-59/+75
|
* Fix .class suffix handling in JavaH.Steven Knight2004-01-083-3/+12
|
* Make Action() and env.Action() equivalent.Steven Knight2004-01-083-1/+10
|
* Handle Configure() calls in multiple SConscript files.Steven Knight2004-01-083-29/+51
|
* Update the Copyright years to include 2004.Steven Knight2004-01-072-3/+3
|
* Refactor construction variable expansion to handle recursive substitution of ↵Steven Knight2004-01-055-385/+681
| | | | variables.
* Miscellaneous changes: update a call to env.subst(); white space cleanup in ↵Steven Knight2004-01-045-188/+32
| | | | EnvironmentTests.py and Node/NodeTests.py; more informative failure reporting in Node/FSTests.py; remove the now-unused SCons.Node.arg2nodes() function.
* Fix __COPYRIGHT__ and __REVISION__ lines; make IDLTests.py as an Aegis test, ↵Steven Knight2003-12-313-5/+5
| | | | not a source file.
* Minor test enhancements.Steven Knight2003-12-231-21/+29
|
* Work around Cygwin Python's broken idea that it's case-sensitive. (Chad Austin)Steven Knight2003-12-195-5/+96
|
* Add support for a toolpath for Environments.Steven Knight2003-12-186-16/+205
|
* Have the Zip() Builder create compressed .zip files by default.Steven Knight2003-12-165-24/+66
|
* Fix stripping the library prefix.Steven Knight2003-12-127-26/+125
|
* Fix spelling errors in error messages, man page typos.Steven Knight2003-12-083-5/+10
|
* Relax the duplicate-environment restriction for targets so that it's okay if ↵Steven Knight2003-12-086-55/+255
| | | | the two environments would build the target with the same command or function call. (Scott Fritchie)