summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Change the copyright statement to reflect ownership by the foundation. Add ↵Steven Knight2004-07-305-2/+177
| | | | and fix statements where needed. Update scripts accordingly.
* Don't blow up if the external PATH variable is not set.Steven Knight2004-07-303-47/+68
|
* Fix null entries in CPPPATH. (Gary Oberbrunner)Steven Knight2004-07-303-1/+13
|
* Ignore null tools. (Gary Oberbrunner)Steven Knight2004-07-302-0/+19
|
* Treat file extensions with all digits as part of the base name. (Gary ↵Steven Knight2004-07-304-10/+61
| | | | Oberbrunne)
* Move LIB{PREFIX,SUFFIX} definitions from the Platform modules to individual ↵Steven Knight2004-07-308-2/+20
| | | | Tool modules. (Chris Murray)
* Add support for newer ifort versions of the Intel Fortran compiler on Linux. ↵Steven Knight2004-07-295-14/+81
| | | | (Jonathan Gurley) Fortran 90 tests for future use. (Chris Murray)
* Refactorings towards a RelativeTopDir() function.Steven Knight2004-07-293-78/+68
|
* Add Fortran 90/95 support. (Chris Murray)Steven Knight2004-07-2921-75/+992
|
* Add a .win32 attribute for FS entries; preserve Literal() attributes when ↵Steven Knight2004-07-215-16/+91
| | | | concatenating strings in subst_list(). (Chris Murray)
* Fix tests on systems where 'ar' prints warnings about creating archives. ↵Steven Knight2004-07-131-0/+4
| | | | (Kevin Quick)
* Fix test/chained-build.py for systems that can finish execution within one ↵Steven Knight2004-07-131-0/+4
| | | | second. (Kevin Quick)
* Make exception handling thread-safe by using sys.exc_info() instead of ↵Steven Knight2004-07-139-103/+102
| | | | sys.exc_{type,value}.
* Make exception handling conform to Pythonic standards. (Kevin Quick)Steven Knight2004-07-133-13/+10
|
* QT fixes and enhancements: Moc() and Uic() builders, a lot of new ↵Steven Knight2004-07-128-123/+275
| | | | variables. (Christoph Wiedemann)
* Make dblite.py handle Unicode strings.Steven Knight2004-07-111-9/+42
|
* Fix errors when there are dangling symlinks. (Gary Oberbrunner)Steven Knight2004-07-083-2/+21
|
* Two more win32 fixes: don't have SConfTests.py look for sin(), since it's ↵Steven Knight2004-07-083-8/+26
| | | | available in the default library when using Visual Studio; add the new object scanner as the source_scanner for the RES Builder.
* Delay any creation of DefaultEnvironment() until after the SConscript files ↵Steven Knight2004-07-021-7/+9
| | | | are read.
* Officially support target_factory and source_factory when creating a Builder.Steven Knight2004-06-259-79/+130
|
* Fix a problem with --debug=explain when actions change due to expanded ↵Steven Knight2004-06-171-5/+8
| | | | construction variables.
* Add an option to not save the --debug=explain information.Steven Knight2004-06-158-30/+133
|
* Change PDB file generation from compile time to link time. (Anthony Roach)Steven Knight2004-06-143-18/+11
|
* Make the use of the calc argument in Node methods consistent.Steven Knight2004-06-025-13/+25
|
* Store the different dependencies in binfo separately.Steven Knight2004-06-015-52/+88
|
* Remove dead imports and other things found by PyChecker.Steven Knight2004-06-0141-115/+80
|
* Eliminate the refactored-out-of-existence Sig.Calculator methods (whose jobs ↵Steven Knight2004-05-307-555/+54
| | | | are now handled by Node methods). Stop tying calculators to Taskmaster objects, and eliminate the unused Taskmaster.Calc class.
* Make env.SConscript() expand dirs names.Steven Knight2004-05-251-0/+7
|
* Add unit tests for the last two changes.Steven Knight2004-05-253-0/+45
|
* Fix use of --debug=explain with SConsignFile(). (Chad Austin)Steven Knight2004-05-241-1/+5
|
* Accomodate conversion from old .sconsign formats.Steven Knight2004-05-242-1/+20
|
* Better handling of syntax errors during variable expansion. (Anthony Roach)Steven Knight2004-05-234-12/+19
|
* Add support for fetching command-line arguments by position number. (Gary ↵Steven Knight2004-05-232-0/+12
| | | | Oberbrunner)
* Remove the shared library prefix/suffix from {PREFIXES,SUFFIXES} on Win32, ↵Steven Knight2004-05-221-2/+2
| | | | since .dll files are not valid libraries for native Win32 compilers. (Chad Austin)
* Fix spurious rebuilds/reinstalls of header files and circular dependencies ↵Steven Knight2004-05-1922-113/+328
| | | | with generated header files by allowing Scanners to be associated explicitly with Builders, not just through Scanner file suffix lists.
* When a Node has been built, don't walk the whole tree back to delete the ↵Steven Knight2004-05-172-7/+7
| | | | parents's implicit dependencies, let returning up the normal Taskmaster descent take care of it for us.
* Move Action initializations for common default COM values from Tool/*.py to ↵Steven Knight2004-05-165-7/+22
| | | | Defaults.py.
* Make the saved info opaque to the .sconsign subsystem. Lots of other cleanup.Steven Knight2004-05-1413-586/+569
|
* Better midl (Visual Studio MIDL compiler) Tool detection. (Anthony Roach)Steven Knight2004-05-085-17/+28
|
* Cleaner Task interface when using the -c option.Steven Knight2004-05-083-14/+92
|
* Refactor .sconsign management into its own module.Steven Knight2004-05-0612-440/+521
|
* Refactor Builders to remove the node_factory keyword argument (in favor of ↵Steven Knight2004-05-043-28/+26
| | | | the separate and more flexible target_factory and source_factory keywords).
* Portability fixes for Win32.Steven Knight2004-05-041-4/+8
|
* Make CommandGenerationAction able to handle subsidiary actions with no ↵Steven Knight2004-05-042-1/+11
| | | | strfunction() method.
* Have ParseConfig() support the -Wl option.Steven Knight2004-05-033-22/+39
|
* Really support strfunction for all Action subclasses by refactoring the ↵Steven Knight2004-05-039-325/+320
| | | | interface between Executor and Action, and collecting all the print/execute logic in a single ActionBase.__call__() method.
* Fix use of timestamps with --implicit-cache. (Anthony Roach)Steven Knight2004-05-016-12/+26
|
* Performance improvement: memo-ize Node.FS string values when appropriate.Steven Knight2004-05-017-10/+141
|
* Support use of strfunction() with all kinds of Action objects.Steven Knight2004-04-283-67/+168
|
* Test fixes for Python 2.3.3 on Win32. (Anthony Roach)Steven Knight2004-04-282-21/+44
|