summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make env['FOO'] by shorthand for env.Dictionary()['FOO'] (Anthony Roach)Steven Knight2002-03-223-0/+21
|
* Move autogenerate() from SCons.Util.py to SCons.Environmentpy.Steven Knight2002-03-229-224/+193
|
* Make construction variables with a value of 0 work (Anthony Roach)Steven Knight2002-03-213-1/+14
|
* Speed up SCons.Sig.Calculator.bsig() (second most time-consuming function) ↵Steven Knight2002-03-212-11/+12
| | | | by 6%-12% by using the new Walker eval_func argument.
* Fix subtle problems in end cases with using multiple scanners on a Node.Steven Knight2002-03-2012-162/+277
|
* Enhance the Walker to call a third supplied function to actually work on a ↵Steven Knight2002-03-193-36/+52
| | | | Node, and pass the parent Node to both the out-of-date-check function and the work function. Refactor Taskmaster to use the new Walker function.
* Turn the Prog Scanner into a prototype pattern that looks up LIBPATH Nodes ↵Steven Knight2002-03-162-35/+69
| | | | (the way the C Scanner does CPPPATH).
* Make FunctionAction arguments be Nodes, not strings. (Charles Crain)Steven Knight2002-03-1615-48/+80
|
* Swap the global and local arguments in scons_subst*() to match the Python ↵Steven Knight2002-03-142-5/+16
| | | | convention for exec().
* Support whitespace separated CPPPATH, etc. (Task 49057). (Steve Leblanc)Steven Knight2002-03-125-42/+139
|
* Add a --profile=file option.Steven Knight2002-03-124-0/+75
|
* 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-124-5/+104
|
* Make the C*FILESUFFIX.py, LEX*.py and YACC*.py tests not dependent on the ↵Steven Knight2002-03-106-115/+253
| | | | system's lex or yacc.
* Fix an exception caused by a null-string CPPPATH.Steven Knight2002-03-085-9/+41
|
* Changes to the CommandGenerator functionality. (Charles Crain)Steven Knight2002-03-084-10/+41
|
* Fix RANLIB tests for systems that don't have ranlib. (Charles Crain.)Steven Knight2002-03-072-0/+19
|
* Change the default lex command to use the POSIX-compliant -t option, not the ↵Steven Knight2002-03-072-2/+5
| | | | GNU-specific -o option.
* Add a CXXFile builder to turn .ll and .yy files into .cc.Steven Knight2002-03-075-9/+126
|
* Make the CFile Builder's SUFFIX configurable.Steven Knight2002-03-076-71/+195
|
* Add RANLIB, and check for the existence of 'ranlib' before adding it to the ↵Steven Knight2002-03-025-15/+241
| | | | default ARCOM.
* Add tests for AR and ARFLAGS.Steven Knight2002-03-022-0/+192
|
* Performance: Use a dictionary, not a list, for a Node's parents. (Stephen ↵Steven Knight2002-03-013-17/+7
| | | | Kennedy)
* Document LIBS, fix a typo.Steven Knight2002-02-272-1/+9
|
* Extend SConstruct et al. to build .zip files, and to build the scons-src ↵Steven Knight2002-02-267-196/+394
| | | | package on Win32 platforms.
* Initialize the new branch.Steven Knight2002-02-258-40/+58
|
* Set up according to Python HOWTO.Steven Knight2002-02-221-4/+1
|
* Prepare for release 0.05.Steven Knight2002-02-226-15/+31
|
* Add the -q option.Steven Knight2002-02-215-15/+65
|
* Fix the --debug=pdb option on Windows.Steven Knight2002-02-213-11/+15
|
* Remove all built targets even if some don't exist.Steven Knight2002-02-213-5/+28
|
* Implement the -u option (Task 39028). (Steve Leblanc)Steven Knight2002-02-216-50/+141
|
* Add command generator function support. (Anthony Roach)Steven Knight2002-02-206-1/+204
|
* Remove left-over dir argument from get_contents() calls. (Anthony Roach)Steven Knight2002-02-202-2/+2
|
* Fix runtest.py for new package-testing scheme baseline tests.Steven Knight2002-02-203-3/+57
|
* Revamp package testing.Steven Knight2002-02-195-168/+167
|
* Efficiency: On the Taskmaster's Walker's out-of-date checks, don't return ↵Steven Knight2002-02-183-0/+40
| | | | any children if the node itself has already been visited.
* Only substitute __FILE__, etc. in revision lines.Steven Knight2002-02-182-14/+30
|
* SConstruct file clean ups.Steven Knight2002-02-171-30/+28
|
* Add preliminary support for Unicode strings.Steven Knight2002-02-176-19/+79
|
* Exit status portability on Windows NT.Steven Knight2002-02-171-7/+29
|
* Run HTML files through tidy (if it's available) to clean them up.Steven Knight2002-02-152-5/+17
|
* Document the minimum Python version required.Steven Knight2002-02-143-0/+47
|
* Fix new .sconsign file write-logic portability to Windows NT.Steven Knight2002-02-143-6/+9
|
* Install the man page in the Debian package.Steven Knight2002-02-132-1/+3
|
* SConstruct fix to avoid unnecessary rebuilds.Steven Knight2002-02-131-2/+2
|
* Ignore the version.sgml file when deciding whether to rebuild documentation.Steven Knight2002-02-121-2/+18
|
* Filter out a file's ignore list from all of its dependencies, direct or ↵Steven Knight2002-02-126-8/+53
| | | | indirect.
* Document the LIBPATH construction variable.Steven Knight2002-02-102-0/+28
|
* Allow the exported variables in an SConscript() call to be a UserList, too.Steven Knight2002-02-103-5/+24
|