summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons
Commit message (Expand)AuthorAgeFilesLines
* Add a --profile=file option.Steven Knight2002-03-121-0/+9
* Move find_file() and find_files() from SCons.Util to SCons.Node.FS.Steven Knight2002-03-126-69/+75
* Implement the -U option. (Steve Leblanc)Steven Knight2002-03-121-3/+15
* Fix an exception caused by a null-string CPPPATH.Steven Knight2002-03-082-9/+22
* Changes to the CommandGenerator functionality. (Charles Crain)Steven Knight2002-03-083-7/+37
* Change the default lex command to use the POSIX-compliant -t option, not the ...Steven Knight2002-03-071-2/+2
* Add a CXXFile builder to turn .ll and .yy files into .cc.Steven Knight2002-03-072-4/+16
* Make the CFile Builder's SUFFIX configurable.Steven Knight2002-03-073-71/+101
* Add RANLIB, and check for the existence of 'ranlib' before adding it to the d...Steven Knight2002-03-021-13/+37
* Performance: Use a dictionary, not a list, for a Node's parents. (Stephen K...Steven Knight2002-03-012-17/+3
* Add the -q option.Steven Knight2002-02-211-1/+15
* Fix the --debug=pdb option on Windows.Steven Knight2002-02-211-9/+7
* Remove all built targets even if some don't exist.Steven Knight2002-02-211-3/+10
* Implement the -u option (Task 39028). (Steve Leblanc)Steven Knight2002-02-212-22/+66
* Add command generator function support. (Anthony Roach)Steven Knight2002-02-204-1/+109
* Remove left-over dir argument from get_contents() calls. (Anthony Roach)Steven Knight2002-02-202-2/+2
* Efficiency: On the Taskmaster's Walker's out-of-date checks, don't return an...Steven Knight2002-02-182-0/+37
* Add preliminary support for Unicode strings.Steven Knight2002-02-175-19/+77
* Fix new .sconsign file write-logic portability to Windows NT.Steven Knight2002-02-141-1/+8
* Filter out a file's ignore list from all of its dependencies, direct or indir...Steven Knight2002-02-125-8/+50
* Allow the exported variables in an SConscript() call to be a UserList, too.Steven Knight2002-02-101-4/+6
* Create all of the directories for a target list before trying to build the ta...Steven Knight2002-02-109-24/+69
* Fix variable interpolation with spaces, and problems with the WIN32 environme...Steven Knight2002-02-093-30/+87
* Make writing a .sconsign more robust by writing to a temporary file first and...Steven Knight2002-02-091-5/+27
* Lookup implicit dependencies relative to the directory of the node in which t...Steven Knight2002-02-091-1/+4
* More performance optimizations (Charles Crain)Steven Knight2002-02-053-20/+41
* Make scons return a failure code when a Builder fails (Anthony Roach)Steven Knight2002-02-051-2/+5
* Make scons return an error code (Anthony Roach)Steven Knight2002-02-041-1/+4
* Set PROGSUFFIX to .exe under Cygwin. (Chad Austin)Steven Knight2002-02-041-2/+4
* Support Scanner functions returning strings, not just Nodes.Steven Knight2002-02-032-12/+25
* Compensate for an os.path.normpath('./') bug on Win32. (Charles Crain)Steven Knight2002-01-312-0/+19
* Flush sys.stdout after every write() so it intermixes properly with sys.stder...Steven Knight2002-01-311-0/+11
* Allow libraries to specified as source files on the command line.Steven Knight2002-01-312-10/+13
* Put quotes around arguments that contain white space, for appearance and for ...Steven Knight2002-01-291-3/+13
* Update Copyright lines for the new year.Steven Knight2002-01-2936-37/+37
* Performance improvement: avoid recomputing signatures.Steven Knight2002-01-295-25/+18
* Fix so Nodes don't get removed by ListBuilder after they're built.Steven Knight2002-01-282-9/+66
* Add a --debug=pdb option to run SCons under the Python debugger.Steven Knight2002-01-271-1/+15
* Fix for previous Tasks change.Steven Knight2002-01-272-9/+13
* Only execute an Action once for a List of targets.Steven Knight2002-01-264-95/+226
* Add the Precious() method.Steven Knight2002-01-246-6/+60
* Provide an error message when a target hasn't been defined.Steven Knight2002-01-243-11/+42
* Add the Ignore() method.Steven Knight2002-01-244-3/+63
* Provide a traceback if a Python-function builder throws an exception (Crain).Steven Knight2002-01-233-1/+28
* Handle LIBPATH as a string (Crain).Steven Knight2002-01-232-2/+15
* Fix binary file signatures on Win32 (Crain).Steven Knight2002-01-232-1/+8
* Strip $(-$) bracketed text from command lines.Steven Knight2002-01-238-20/+90
* Make the C Scanner always return the dependencies sorted, so order difference...Steven Knight2002-01-232-10/+21
* Task 45350 - Add passing of custom command-line arguments.Steven Knight2002-01-182-3/+16
* Remove the Wrapper class in between the Walker and Node.Steven Knight2002-01-171-15/+10