summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Warn when -c can't remove a file.Steven Knight2002-09-095-17/+51
|
* Eliminate an exception when using -U.Steven Knight2002-09-083-0/+5
|
* Fix ASPPCOM value for gas.Steven Knight2002-09-072-1/+6
|
* Win32 portability: Fix error status passing back when calling sys.exit().Steven Knight2002-09-071-2/+3
|
* Fix -j with multiple targets. (Anthony Roach)Steven Knight2002-09-071-3/+9
|
* Refactor SCons.Util.Detect() into an Environment method.Steven Knight2002-09-0527-47/+91
|
* Fix the tests that broke from the tool auto-detect stuff. (Anthony Roach ↵Steven Knight2002-09-0529-114/+135
| | | | and SK)
* Provide a message if there are no command-line targets specified and no ↵Steven Knight2002-08-312-0/+7
| | | | Default() targets.
* Make SCons/Tool/ifl.py get included in the win32 package, make Microsoft ↵Steven Knight2002-08-308-67/+50
| | | | tools be prefered on win32, and get rid of some cruft in the Platform files. (Anthony Roach)
* Account for systems not having every type of compiler.Steven Knight2002-08-291-6/+7
|
* Support the Intel Fortran Compiler.Steven Knight2002-08-293-1/+75
|
* Dynamically check for the existence of utilities. (sam th)Steven Knight2002-08-2926-10/+167
|
* On Win32 systems, supply a default if PATHEXT isn't in the environment; it ↵Steven Knight2002-08-281-1/+4
| | | | doesn't exist on Win95/Win98.
* Make sure auto-deducing target names works when a Node is passed in as a ↵Steven Knight2002-08-282-1/+15
| | | | source file.
* Don't remove source files specified on the command line!Steven Knight2002-08-283-1/+10
|
* Put auto-deduced target names in the same directory as the source file.Steven Knight2002-08-262-12/+15
|
* Add a Prepend() method to Environments. (Chad Austin)Steven Knight2002-08-263-0/+51
|
* Implement spawn() using os.system() on Posix OSes. (Anthony Roach)Steven Knight2002-08-232-17/+49
|
* Make case differences not effect #include order. (Anthony Roach)Steven Knight2002-08-233-2/+13
|
* Yet again redo the uppercasing of drives on win32 fix. (Anthony Roach)Steven Knight2002-08-221-3/+3
|
* Cache exists() and rexists() values all the time.Steven Knight2002-08-192-53/+74
|
* Add BuildDir() support to the Repository functionality.Steven Knight2002-08-134-43/+79
|
* Fix implicit dependencies with duplicate=0.Steven Knight2002-08-132-13/+34
|
* Redo the uppercasing of drives on win32 fix. (Anthony Roach)Steven Knight2002-08-121-3/+3
|
* Fix aliases as dependencies. (Anthony Roach)Steven Knight2002-08-092-8/+11
|
* Refactor the interface between Rsearch() and Rsearchall() and their supplied ↵Steven Knight2002-08-085-12/+29
| | | | functions' arguments to keep the repository and dir path portions separate.
* Add Install() + Local() functionality.Steven Knight2002-08-061-0/+3
|
* Add Local() functionality to Repository support.Steven Knight2002-08-062-3/+17
|
* Support Repository and Default().Steven Knight2002-08-066-98/+11
|
* Add Repository Install() and InstallAs() functionality.Steven Knight2002-08-056-4/+135
|
* Add a decent error message for corrupted .sconsign files (Bug 579666). ↵Steven Knight2002-08-054-3/+15
| | | | (Anthony Roach)
* Make -U be case insensitive on Win32 (Bug 589292) (Anthony Roach)Steven Knight2002-08-052-2/+18
|
* Fix incorrect time stamp for linked files (Bug 589288) (Anthony Roach)Steven Knight2002-08-051-1/+1
|
* Fix commands with spaces in them (Bug: 589281 and 589285). (Anthony Roach)Steven Knight2002-08-043-49/+84
|
* Multiple directory .h includes in Repositories.Steven Knight2002-07-2912-35/+212
|
* Refactor current() calculation so the Taskmaster passes the Sig calculator ↵Steven Knight2002-07-217-167/+86
| | | | to the Node, instead of going through calc to get to the Node.
* Add an Rsearchall() method, and refactor the repository manipulation of ↵Steven Knight2002-07-204-39/+107
| | | | CPPPATH to use it.
* Repository support (first cut).Steven Knight2002-07-1711-21/+202
|
* Prep for release 0.08.Steven Knight2002-07-153-5/+11
|
* Win32 portability fixes. (Charles Crain)Steven Knight2002-07-151-15/+19
|
* Add --implicit-deps-changed. (Anthony Roach)Steven Knight2002-07-143-2/+15
|
* Still more Win32 portability.Steven Knight2002-07-142-4/+9
|
* Added --implicit-deps-unchanged option. Added GetLaunchDir() function. Added ↵Steven Knight2002-07-125-4/+44
| | | | SetBuildSignatureType() function. (Anthony Roach)
* Fix scons -v on win32. (Anthony Roach)Steven Knight2002-07-121-5/+10
|
* Use the correct prefix for pdb.py. (Terrel Shumway)Steven Knight2002-07-122-2/+4
|
* Add prototype icc and ilink Tool specs for OS/2.Steven Knight2002-07-126-3/+143
|
* Allow build directories outside the SConstruct tree; add a FindFile() ↵Steven Knight2002-07-106-12/+24
| | | | function to search for files with a specified name; add to the shared-object g++ and gcc command lines. (Charles Crain)
* Add a prototype os2 Platform() module.Steven Knight2002-07-085-1/+71
|
* Add a TAR Builder.Steven Knight2002-07-088-4/+102
|
* Performance enhancements: use a more efficient splitext() method; cache ↵Steven Knight2002-07-064-48/+89
| | | | source suffix computation; clean up code in MultiStepBuilder.__call__(); replicate some logic in scons_subst(). (Anthony Roach)