summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix win32LinkGenerator.Steven Knight2002-04-173-18/+28
|
* Fix importing of modules from the SConscript directory (Anthony Roach)Steven Knight2002-04-162-1/+12
|
* Handle long command lines for the MSVC linker.Steven Knight2002-04-162-8/+45
|
* Shared library test fixes. (Charles Crain)Steven Knight2002-04-161-1/+1
|
* Follow-on shared library fix for WIN32 systems. (Charles Crain)Steven Knight2002-04-151-1/+1
|
* Big change for shared libraries and a bunch of other flexibility. (Charles ↵Steven Knight2002-04-1516-322/+769
| | | | Crain)
* Change the meaning of -U, and made -D work like -U used to. (Anthony Roach)Steven Knight2002-04-113-8/+29
|
* Make .sconsign files get written even if the build fails or is terminated. ↵Steven Knight2002-04-114-4/+10
| | | | (Anthony Roach)
* Change to SConscript directory when reading it. (Steve Leblanc)Steven Knight2002-04-112-0/+19
|
* Add abspath construction variable modifier and variable (Anthony Roach)Steven Knight2002-04-115-4/+31
|
* Implement implicit dependency caching.Steven Knight2002-04-117-79/+262
|
* Add a better hierarchical build example from the scons-users mailing list.Steven Knight2002-04-091-0/+5
|
* Implement content signature caching and --max-drift (Anthony Roach)Steven Knight2002-04-098-37/+148
|
* Clean up how the Environment dictionary is passed to function Actions. ↵Steven Knight2002-04-053-3/+45
| | | | (Charles Crain)
* Various performance enhancements. (Anthony Roach)Steven Knight2002-04-055-10/+38
|
* Fix various problems with --profile (Anthony Roach)Steven Knight2002-04-051-3/+7
|
* Add --debug=dtree option (Anthony Roach)Steven Knight2002-04-051-2/+13
|
* Fix rescanning of files with no implicit deps (Anthony Roach)Steven Knight2002-04-043-13/+27
|
* Fix --debug=tree for directory targets (Anthony Roach)Steven Knight2002-04-0418-1048/+786
|
* Make -c work with -n: don't remove the files!Steven Knight2002-03-312-1/+16
|
* Prepare for 0.06 release.Steven Knight2002-03-283-19/+18
|
* Support a CPPFLAGS variable (a la GNU Make).Steven Knight2002-03-282-4/+7
|
* Add Fortran support.Steven Knight2002-03-283-2/+25
|
* Add more document Builders: PDF and PostScript.Steven Knight2002-03-272-5/+39
|
* Fix problems with two tests (one portability, one syntax).Steven Knight2002-03-271-2/+2
|
* Add WhereIs() functionality.Steven Knight2002-03-275-16/+111
|
* Add support for target Aliases.Steven Knight2002-03-2512-15/+295
|
* Move SCons.Util.scons_str2nodes() to SCons.Node/__init__.py and shorten its ↵Steven Knight2002-03-249-117/+129
| | | | name.
* Support the build of TeX documents (Task 47116). (Steve Leblanc)Steven Knight2002-03-232-2/+38
|
* Make env['FOO'] by shorthand for env.Dictionary()['FOO'] (Anthony Roach)Steven Knight2002-03-222-0/+15
|
* 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-2011-161/+276
|
* 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-167-26/+45
|
* 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-122-1/+6
|
* Add a --profile=file option.Steven Knight2002-03-122-0/+11
|
* 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-122-3/+19
|
* Fix an exception caused by a null-string CPPPATH.Steven Knight2002-03-083-9/+25
|
* 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-072-2/+5
| | | | GNU-specific -o option.
* Add a CXXFile builder to turn .ll and .yy files into .cc.Steven Knight2002-03-073-4/+19
|
* Make the CFile Builder's SUFFIX configurable.Steven Knight2002-03-074-71/+104
|
* Add RANLIB, and check for the existence of 'ranlib' before adding it to the ↵Steven Knight2002-03-022-13/+40
| | | | default ARCOM.
* 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-271-0/+2
|