Add IRIX and MIPSPro support. (Chad Austin)
[scons.git] / src / CHANGES.txt
1 # __COPYRIGHT__
2 # __FILE__ __REVISION__ __DATE__ __DEVELOPER__
3
4
5                  SCons - a software construction tool
6
7                             Change Log
8
9
10
11 RELEASE 0.11 - XXX
12
13   From Chad Austin:
14
15   - Add support for IRIX and the SGI MIPSPro tool chain.
16
17   From Charles Crain:
18
19   - Added new AddPreAction() and AddPostAction() functions that support
20     taking additional actions before or after building specific targets.
21
22   - Add support for the PharLap ETS tool chain.
23
24   From Steven Knight:
25
26   - Allow Python function Actions to specify a list of construction
27     variables that should be included in the Action's signature.
28
29   - Allow libraries in the LIBS variable to explicitly include the prefix
30     and suffix, even when using the GNU linker.
31     (Bug reported by Neal Becker.)
32
33   - Use DOS-standard CR-LF line endings in the scons.bat file.
34     (Bug reported by Gary Ruben.)
35
36   - Doc changes:  Eliminate description of deprecated "name" keyword
37     argument from Builder definition (reported by Gary Ruben).
38
39   - Support using env.Append() on BUILDERS (and other dictionaries).
40     (Bug reported by Bj=F6rn Bylander.)
41
42   - Setting the BUILDERS construction variable now properly clears
43     the previous Builder attributes from the construction Environment.
44     (Bug reported by Bj=F6rn Bylander.)
45
46   - Fix adding a prefix to a file when the target isn't specified.
47     (Bug reported by Esa Ilari Vuokko.)
48
49   - Clean up error messages from problems duplicating into read-only
50     BuildDir directories or into read-only files.
51
52   From Steve Leblanc:
53
54   - Fix the output of -c -n when directories are involved, so it
55     matches -c.
56
57   From Anthony Roach:
58
59   - Use a different static object suffix (.os) when using gcc so shared
60     and static objects can exist side-by-side in the same directory.
61
62   - Allow the same object files on Win32 to be linked into either
63     shared or static libraries.
64
65
66
67 RELEASE 0.10 - Thu, 16 Jan 2003 04:11:46 -0600
68
69   From Derrick 'dman' Hudson:
70
71   - Support Repositories on other file systems by symlinking or
72     copying files when hard linking won't work.
73
74   From Steven Knight:
75
76   - Remove Python bytecode (*.pyc) files from the scons-local packages.
77
78   - Have FunctionActions print a description of what they're doing
79     (a representation of the Python call).
80
81   - Fix the Install() method so that, like other actions, it prints
82     what would have happened when the -n option is used.
83
84   - Don't create duplicate source files in a BuildDir when the -n
85     option is used.
86
87   - Refactor the Scanner interface to eliminate unnecessary Scanner
88     calls and make it easier to write efficient scanners.
89
90   - Added a "recursive" flag to Scanner creation that specifies the
91     Scanner should be invoked recursively on dependency files returned
92     by the scanner.
93
94   - Significant performance improvement from using a more efficient
95     check, throughout the code, for whether a Node has a Builder.
96
97   - Fix specifying only the source file to MultiStepBuilders such as
98     the Program Builder.  (Bug reported by Dean Bair.)
99
100   - Fix an exception when building from a file with the same basename as
101     the subdirectory in which it lives.  (Bug reported by Gerard Patel.)
102
103   - Fix automatic deduction of a target file name when there are
104     multiple source files specified; the target is now deduced from just
105     the first source file in the list.
106
107   - Documentation fixes: better initial explanation of SConscript files;
108     fix a misformatted "table" in the StaticObject explanation.
109
110   From Steven Knight and Steve Leblanc:
111
112   - Fix the -c option so it will remove symlinks.
113
114   From Steve Leblanc:
115
116   - Add a Clean() method to support removing user-specified targets
117     when using the -c option.
118
119   - Add a development script for running SCons through PyChecker.
120
121   - Clean up things found by PyChecker (mostly unnecessary imports).
122
123   - Add a script to use HappyDoc to create HTML class documentation.
124
125   From Lachlan O'Dea:
126
127   - Make the Environment.get() method return None by default.
128
129   From Anthony Roach:
130
131   - Add SetJobs() and GetJobs() methods to allow configuration of the
132     number of default jobs (still overridden by -j).
133
134   - Convert the .sconsign file format from ASCII to a pickled Python
135     data structure.
136
137   - Error message cleanups:  Made consistent the format of error
138     messages (now all start with "scons: ***") and warning messages (now
139     all start with "scons: warning:").  Caught more cases with the "Do
140     not know how to build" error message.
141
142   - Added support for the MinGW tool chain.
143
144   - Added a --debug=includes option.
145
146
147
148 RELEASE 0.09 - Thu,  5 Dec 2002 04:48:25 -0600
149
150   From Chad Austin:
151
152   - Add a Prepend() method to Environments, to append values to
153     the beginning of construction variables.
154
155   From Matt Balvin:
156
157   - Add long command-line support to the "lib" Tool (Microsoft library
158     archiver), too.
159
160   From Charles Crain:
161
162   - Allow $$ in a string to be passed through as $.
163
164   - Support file names with odd characters in them.
165
166   - Add support for construction variable substition on scanner
167     directories (in CPPPATH, F77PATH, LIBPATH, etc.).
168
169   From Charles Crain and Steven Knight:
170
171   - Add Repository() functionality, including the -Y option.
172
173   From Steven Knight:
174
175   - Fix auto-deduction of target names so that deduced targets end
176     up in the same subdirectory as the source.
177
178   - Don't remove source files specified on the command line!
179
180   - Suport the Intel Fortran Compiler (ifl.exe).
181
182   - Supply an error message if there are no command-line or
183     Default() targets specified.
184
185   - Fix the ASPPCOM values for the GNU assembler.
186     (Bug reported by Brett Polivka.)
187
188   - Fix an exception thrown when a Default() directory was specified
189     when using the -U option.
190
191   - Issue a warning when -c can't remove a target.
192
193   - Eliminate unnecessary Scanner calls by checking for the
194     existence of a file before scanning it.  (This adds a generic
195     hook to check an arbitrary condition before scanning.)
196
197   - Add explicit messages to tell when we're "Reading SConscript files
198     ...," "done reading SConscript files," "Building targets," and
199     "done building targets."  Add a -Q option to supress these.
200
201   - Add separate $SHOBJPREFIX and $SHOBJSUFFIX construction variables
202     (by default, the same as $OBJPREFIX and $OBJSUFFIX).
203
204   - Add Make-like error messages when asked to build a source file,
205     and before trying to build a file that doesn't have all its source
206     files (including when an invalid drive letter is used on WIN32).
207
208   - Add an scons-local-{version} package (in both .tar.gz and .zip
209     flavors) to help people who want to ship SCons as a stand-alone
210     build tool in their software packages.
211
212   - Prevent SCons from unlinking files in certain situations when
213     the -n option is used.
214
215   - Change the name of Tool/lib.py to Tool/mslib.py.
216
217   From Steven Knight and Anthony Roach:
218
219   - Man page:  document the fact that Builder calls return Node objects.
220
221   From Steve LeBlanc:
222
223   - Refactor option processing to use our own version of Greg Ward's
224     Optik module, modified to run under Python 1.5.2.
225
226   - Add a ParseConfig() command to modify an environment based on
227     parsing output from a *-config command.
228
229   From Jeff Petkau:
230
231   - Fix interpretation of '#/../foo' on Win32 systems.
232
233   From Anthony Roach:
234
235   - Fixed use of command lines with spaces in their arguments,
236     and use of Nodes with spaces in their string representation.
237
238   - Make access and modification times of files in a BuildDir match
239     the source file, even when hard linking isn't available.
240
241   - Make -U be case insensitive on Win32 systems.
242
243   - Issue a warning and continue when finding a corrupt .sconsign file.
244
245   - Fix using an alias as a dependency of a target so that if one of the
246     alias' dependencies gets rebuilt, the resulting target will, too.
247
248   - Fix differently ordered targets causing unnecessary rebuilds
249     on case insensitive systems.
250
251   - Use os.system() to execute external commands whenever the "env"
252     utility is available, which is much faster than fork()/exec(),
253     and fixes the -j option on several platforms.
254
255   - Fix use of -j with multiple targets.
256
257   - Add an Options() object for friendlier accomodation of command-
258     line arguments.
259
260   - Add support for Microsoft VC++ precompiled header (.pch) files,
261     debugger (.pdb) files, and resource (.rc) files.
262
263   - Don't compute the $_CPPINCFLAGS, $_F77INCFLAGS, $_LIBFLAGS and
264     $_LIBDIRFLAGS variables each time a command is executed, define
265     them so they're computed only as needed.  Add a new _concat
266     function to the Environment that allows people to define their
267     own similar variables.
268
269   - Fix dependency scans when $LIBS is overridden.
270
271   - Add EnsurePythonVersion() and EnsureSConsVersion() functions.
272
273   - Fix the overly-verbose stack trace on ListBuilder build errors.
274
275   - Add a SetContentSignatureType() function, allowing use of file
276     timestamps instead of MD5 signatures.
277
278   - Make -U and Default('source') fail gracefully.
279
280   - Allow the File() and Dir() methods to take a path-name string as
281     the starting directory, in addition to a Dir object.
282
283   - Allow the command handler to be selected via the SPAWN, SHELL
284     and ESCAPE construction variables.
285
286   - Allow construction variables to be overridden when a Builder
287     is called.
288
289   From sam th:
290
291   - Dynamically check for the existence of utilities with which to
292     initialize Environments by default.
293
294
295
296 RELEASE 0.08 - Mon, 15 Jul 2002 12:08:51 -0500
297
298   From Charles Crain:
299
300   - Fixed a bug with relative CPPPATH dirs when using BuildDir().
301     (Bug reported by Bob Summerwill.)
302
303   - Added a warnings framework and a --warn option to enable or
304     disable warnings.
305
306   - Make the C scanner warn users if files referenced by #include
307     directives cannot be found and --warn=dependency is specified.
308
309   - The BUILDERS construction variable should now be a dictionary
310     that maps builder names to actions.  Existing uses of lists,
311     and the Builder name= keyword argument, generate warnings
312     about use of deprecated features.
313
314   - Removed the "shared" keyword argument from the Object and
315     Library builders.
316     
317   - Added separated StaticObject, SharedObject, StaticLibrary and
318     SharedLibrary builders.  Made Object and Library synonyms for
319     StaticObject and StaticLibrary, respectively.
320
321   - Add LIBS and LIBPATH dependencies for shared libraries.
322
323   - Removed support for the prefix, suffix and src_suffix arguments
324     to Builder() to be callable functions.
325
326   - Fix handling file names with multiple dots.
327
328   - Allow a build directory to be outside of the SConstruct tree.
329
330   - Add a FindFile() function that searches for a file node with a
331     specified name.
332
333   - Add $CPPFLAGS to the shared-object command lines for g++ and gcc.
334
335   From Charles Crain and Steven Knight:
336
337   - Add a "tools=" keyword argument to Environment instantiation,
338     and a separate Tools() method, for more flexible specification
339     of tool-specific environment changes.
340
341   From Steven Knight:
342
343   - Add a "platform=" keyword argument to Environment instantiation,
344     and a separate Platform() method, for more flexible specification
345     of platform-specific environment changes.
346
347   - Updated README instructions and setup.py code to catch an
348     installation failure from not having distutils installed.
349
350   - Add descriptions to the -H help text for -D, -u and -U so
351     people can tell them apart.
352
353   - Remove the old feature of automatically splitting strings
354     of file names on white space.
355
356   - Add a dependency Scanner for native Fortran "include" statements,
357     using a new "F77PATH" construction variable.
358
359   - Fix C #include scanning to detect file names with characters like
360     '-' in them.
361
362   - Add more specific version / build output to the -v option.
363
364   - Add support for the GNU as, Microsoft masm, and nasm assemblers.
365
366   - Allow the "target" argument to a Builder call to be omitted, in
367     which case the target(s) are deduced from the source file(s) and the
368     Builder's specified suffix.
369
370   - Add a tar archive builder.
371
372   - Add preliminary support for the OS/2 Platform, including the icc
373     and ilink Tools.
374
375   From Jeff Petkau:
376
377   - Fix --implicit-cache if the scanner returns an empty list.
378
379   From Anthony Roach:
380
381   - Add a "multi" keyword argument to Builder creation that specifies
382     it's okay to call the builder multiple times for a target.
383
384   - Set a "multi" on Aliases so multiple calls will append to an Alias.
385
386   - Fix emitter functions' use of path names when using BuildDir or
387     in subdirectories.
388
389   - Fix --implicit-cache causing redundant rebuilds when the header
390     file list changed.
391
392   - Fix --implicit-cache when a file has no implicit dependencies and
393     its source is generated.
394
395   - Make the drive letters on Windows always be the same case, so that
396     changes in the case of drive letters don't cause a rebuild.
397
398   - Fall back to importing the SCons.TimeStamp module if the SCons.MD5
399     module can't be imported.
400
401   - Fix interrupt handling to guarantee that a single interrupt will
402     halt SCons both when using -j and not.
403
404   - Fix .sconsign signature storage so that output files of one build
405     can be safely used as input files to another build.
406
407   - Added a --debug=time option to print SCons execution times.
408
409   - Print an error message if a file can't be unlinked before being
410     built, rather than just silently terminating the build.
411
412   - Add a SideEffect() method that can be used to tell the build
413     engine that a given file is created as a side effect of building
414     a target.  A file can be specified as a side effect of more than
415     one build comand, in which case the commands will not be executed
416     simultaneously.
417
418   - Significant performance gains from not using our own version of
419     the inefficient stock os.path.splitext() method, caching source
420     suffix computation, code cleanup in MultiStepBuilder.__call__(),
421     and replicating some logic in scons_subst().
422
423   - Add --implicit-deps-changed and --implicit-deps-unchanged options.
424
425   - Add a GetLaunchDir() function.
426
427   - Add a SetBuildSignatureType() function.
428
429   From Zed Shaw:
430
431   - Add an Append() method to Environments, to append values to
432     construction variables.
433
434   - Change the name of Update() to Replace().  Keep Update() as a
435     deprecated synonym, at least for now.
436
437   From Terrel Shumway:
438
439   - Use a $PYTHON construction variable, initialized to sys.executable,
440     when using Python to build parts of the SCons packages.
441
442   - Use sys.prefix, not sys.exec_prefix, to find pdb.py.
443
444
445
446 RELEASE 0.07 - Thu,  2 May 2002 13:37:16 -0500
447
448   From Chad Austin:
449
450   - Changes to build SCons packages on IRIX (and other *NIces).
451
452   - Don't create a directory Node when a file already exists there,
453     and vice versa.
454
455   - Add 'dirs' and 'names' keyword arguments to SConscript for
456     easier specification of subsidiary SConscript files.
457
458   From Charles Crain:
459
460   - Internal cleanup of environment passing to function Actions.
461
462   - Builders can now take arbitrary keyword arguments to create
463     attributes to be passed to: command generator functions,
464     FunctionAction functions, Builder emitter functions (below),
465     and prefix/suffix generator functions (below).
466
467   - Command generator functions can now return ANYTHING that can be
468     converted into an Action (a function, a string, a CommandGenerator
469     instance, even an ActionBase instance).
470
471   - Actions now call get_contents() with the actual target and source
472     nodes used for the build.
473
474   - A new DictCmdGenerator class replaces CompositeBuilder to support
475     more flexible Builder behavior internally.
476
477   - Builders can now take an emitter= keyword argument.  An emitter
478     is a function that takes target, source, and env argument, then
479     return a 2-tuple of (new sources, new targets).  The emitter is
480     called when the Builder is __call__'ed, allowing a user to modify
481     source and target lists.
482
483   - The prefix, suffix and src_suffix Builder arguments now take a
484     callable as well a string.  The callable is passed the Environment
485     and any extra Builder keyword arguments and is expected to return
486     the appropriate prefix or suffix.
487
488   - CommandActions can now be a string, a list of command + argument
489     strings, or a list of commands (strings or lists).
490
491   - Added shared library support.  The Object and Library Builders now
492     take a "shared=1" keyword argument to specify that a shared object
493     or shared library should be built.  It is an error to try to build
494     static objects into a shared library or vice versa.
495
496   - Win32 support for .def files has been added.  Added the Win32-specific
497     construction variables $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
498     $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX.  When building a .dll,
499     the new construction variable $WIN32_INSERT_DEF, controls whether
500     the appropriately-named .def file is inserted into the target
501     list (if not already present).  A .lib file is always added to
502     a Library build if not present in the list of targets.
503
504   - ListBuilder now passes all targets to the action, not just the first.
505
506   - Fix so that -c now deletes generated yacc .h files.
507
508   - Builder actions and emitter functions can now be initialized, through
509     construction variables, to things other than strings.
510
511   - Make top-relative '#/dir' lookups work like '#dir'.
512
513   - Fix for relative CPPPATH directories in subsidiary SConscript files
514     (broken in 0.06).
515
516   - Add a for_signature argument to command generators, so that
517     generators that need to can return distinct values for the
518     command signature and for executing the command.
519
520   From Alex Jacques:
521
522   - Create a better scons.bat file from a py2bat.py script on the Python
523     mailing list two years ago (modeled after pl2bat.pl).
524
525   From Steven Knight:
526
527   - Fix so that -c -n does *not* remove the targets!
528
529   - Man page:  Add a hierarchical libraries + Program example.
530
531   - Support long MSVC linker command lines through a builder action
532     that writes to a temporary file and uses the magic MSVC "link @file"
533     argument syntax if the line is longer than 2K characters.
534
535   - Fix F77 command-line options on Win32 (use /Fo instead of -o).
536
537   - Use the same action to build from .c (lower case) and .C (upper
538     case) files on case-insensitive systems like Win32.
539
540   - Support building a PDF file directly from a TeX or LaTeX file
541     using pdftex or pdflatex.
542
543   - Add a -x option to runtest.py to specify the script being tested.
544     A -X option indicates it's an executable, not a script to feed
545     to the Python interpreter.
546
547   - Add a Split() function (identical to SCons.Util.argmunge()) for use
548     in the next release, when Builders will no longer automatically split
549     strings on white space.
550
551   From Steve Leblanc:
552
553   - Add the SConscriptChdir() method.
554
555   From Anthony Roach:
556
557   - Fix --debug=tree when used with directory targets.
558
559   - Significant internal restructuring of Scanners and Taskmaster.
560
561   - Added new --debug=dtree option.
562
563   - Fixes for --profile option.
564
565   - Performance improvement in construction variable substitution.
566
567   - Implemented caching of content signatures, plus added --max-drift
568     option to control caching.
569
570   - Implemented caching of dependency signatures, enabled by new
571     --implicit-cache option.
572
573   - Added abspath construction variable modifier.
574
575   - Added $SOURCE variable as a synonym for $SOURCES[0].
576
577   - Write out .sconsign files on error or interrupt so intermediate
578     build results are saved.
579
580   - Change the -U option to -D.  Make a new -U that builds just the
581     targets from the local SConscript file.
582
583   - Fixed use of sys.path so Python modules can be imported from
584     the SConscript directory.
585
586   - Fix for using Aliases with the -u, -U and -D options.
587
588   - Fix so that Nodes can be passed to SConscript files.
589
590   From Moshe Zadka:
591   
592   - Changes for official Debian packaging.
593
594
595
596 RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
597
598   From Charles Crain:
599
600   - Fix command generators to expand construction variables.
601
602   - Make FunctionAction arguments be Nodes, not strings.
603
604   From Stephen Kennedy:
605
606   - Performance:  Use a dictionary, not a list, for a Node's parents.
607
608   From Steven Knight:
609
610   - Add .zip files to the packages we build.
611
612   - Man page:  document LIBS, fix a typo, document ARGUMENTS.
613
614   - Added RANLIB and RANLIBFLAGS construction variables.  Only use them
615     in ARCOM if there's a "ranlib" program on the system.
616
617   - Add a configurable CFILESUFFIX for the Builder of .l and .y files
618     into C files.
619
620   - Add a CXXFile Builder that turns .ll and .yy files into .cc files
621     (configurable via a CXXFILESUFFIX construction variable).
622
623   - Use the POSIX-standard lex -t flag, not the GNU-specific -o flag.
624     (Bug reported by Russell Christensen.)
625
626   - Fixed an exception when CPPPATH or LIBPATH is a null string.
627     (Bug reported by Richard Kiss.)
628
629   - Add a --profile=FILE option to make profiling SCons easier.
630
631   - Modify the new DVI builder to create .dvi files from LaTeX (.ltx
632     and .latex) files.
633
634   - Add support for Aliases (phony targets).
635
636   - Add a WhereIs() method for searching for path names to executables.
637
638   - Add PDF and PostScript document builders.
639
640   - Add support for compiling Fortran programs from a variety of
641     suffixes (a la GNU Make):  .f, .F, .for, .FOR, .fpp and .FPP
642
643   - Support a CPPFLAGS variable on all default commands that use the
644     C preprocessor.
645
646   From Steve Leblanc:
647
648   - Add support for the -U option.
649
650   - Allow CPPPATH, LIBPATH and LIBS to be specified as white-space
651     separated strings.
652
653   - Add a document builder to create .dvi files from TeX (.tex) files.
654
655   From Anthony Roach:
656
657   - Fix:  Construction variables with values of 0 were incorrectly
658     interpolated as ''. 
659
660   - Support env['VAR'] to fetch construction variable values.
661
662   - Man page:  document Precious().
663
664
665
666 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
667
668   From Chad Austin:
669
670   - Set PROGSUFFIX to .exe under Cygwin.
671
672   From Charles Crain:
673
674   - Allow a library to specified as a command-line source file, not just
675     in the LIBS construction variable.
676
677   - Compensate for a bug in os.path.normpath() that returns '' for './'
678     on WIN32.
679
680   - More performance optimizations:  cache #include lines from files,
681     eliminate unnecessary calls.
682
683   - If a prefix or suffix contains white space, treat the resulting
684     concatenation as separate arguments.
685
686   - Fix irregularities in the way we fetch DevStudio information from
687     the Windows registry, and in our registry error handling.
688
689   From Steven Knight:
690
691   - Flush stdout after print so it intermixes correctly with stderr
692     when redirected.
693
694   - Allow Scanners to return a list of strings, and document how to
695     write your own Scanners.
696
697   - Look up implicit (scanned) dependencies relative to the directory
698     of file being scanned.
699
700   - Make writing .sconsign files more robust by first trying to write
701     to a temp file that gets renamed.
702
703   - Create all of the directories for a list of targets before trying
704     to build any of the targets.
705
706   - WIN32 portability fixes in tests.
707
708   - Allow the list of variables exported to an SConscript file to be
709     a UserList, too.
710
711   - Document the overlooked LIBPATH construction variable.
712     (Bug reported by Eicke Godehardt.)
713
714   - Fix so that Ignore() ignores indirect, implicit dependencies
715     (included files), not just direct dependencies.
716
717   - Put the man page in the Debian distribution.
718
719   - Run HTML docs through tidy to clean up the HTML (for Konqueror).
720
721   - Add preliminary support for Unicode strings.
722
723   - Efficiency:  don't scan dependencies more than once during the
724     walk of a tree.
725
726   - Fix the -c option so it doesn't stop removing targets if one doesn't
727     already exist.
728     (Bug reported by Paul Connell.)
729
730   - Fix the --debug=pdb option when run on Windows NT.
731     (Bug reported by Paul Connell.)
732
733   - Add support for the -q option.
734
735   From Steve Leblanc:
736
737   - Add support for the -u option.
738
739   - Add .cc and .hh file suffixes to the C Scanner.
740
741   From Anthony Roach:
742
743   - Make the scons script return an error code on failures.
744
745   - Add support for using code to generate a command to build a target.
746
747
748
749 RELEASE 0.04 - Wed, 30 Jan 2002 11:09:42 -0600
750
751   From Charles Crain:
752
753   - Significant performance improvements in the Node.FS and
754     Scanner subsystems.
755
756   - Fix signatures of binary files on Win32 systems.
757
758   - Allow LIBS and LIBPATH to be strings, not just arrays.
759
760   - Print a traceback if a Python-function builder throws an exception.
761
762   From Steven Knight:
763
764   - Fix using a directory as a Default(), and allow Default() to
765     support white space in file names for strings in arrays.
766
767   - Man page updates:  corrected some mistakes, documented various
768     missing Environment methods, alphabetized the construction
769     variables and other functions, defined begin and end macros for
770     the example sections, regularized white space separation, fixed
771     the use of Export() in the Multiple Variants example.
772
773   - Function action fixes:  None is now a successful return value.
774     Exceptions are now reported.  Document function actions.
775
776   - Add 'Action' and 'Scanner' to the global keywords so SConscript
777     files can use them too.
778
779   - Removed the Wrapper class between Nodes and Walkers.
780
781   - Add examples using Library, LIBS, and LIBPATH.
782
783   - The C Scanner now always returns a sorted list of dependencies
784     so order changes don't cause unnecessary rebuilds.
785
786   - Strip $(-$) bracketed text from command lines.  Use this to
787     surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
788     to changes to -I or -L options.
789
790   - Add the Ignore() method to ignore dependencies.
791
792   - Provide an error message when a nonexistent target is specified
793     on the command line.
794
795   - Remove targets before building them, and add an Environment
796     Precious() method to override that.
797
798   - Eliminate redundant calls to the same builder when the target is a
799     list of targets:  Add a ListBuilder class that wraps Builders to
800     handle lists atomically.  Extend the Task class to support building
801     and updating multiple targets in a single Task.  Simplify the
802     interface between Task and Taskmaster.
803
804   - Add a --debug=pdb option to re-run SCons under the Python debugger.
805
806   - Only compute a build signature once for each node.
807
808   - Changes to our sys.path[] manipulation to support installation into
809     an arbitrary --prefix value.
810
811   From Steve Leblanc:
812
813   - Add var=value command-line arguments.
814
815
816
817 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
818
819   From Charles Crain:
820
821   - Performance improvements in the Node.FS and Sig.Calculator classes.
822
823   - Add the InstallAs() method.
824
825   - Execute commands through an external interpreter (sh, cmd.exe, or
826     command.com) to handle redirection metacharacters.
827
828   - Allow the user to supply a command handler.
829
830   From Steven Knight:
831
832   - Search both /usr/lib and /usr/local/lib for scons directories by
833     adding them both to sys.path, with whichever is in sys.prefix first.
834
835   - Fix interpreting strings of multiple white-space separated file names
836     as separate file names, allowing prefixes and suffixes to be appended
837     to each individually.
838
839   - Refactor to move CompositeBuilder initialization logic from the
840     factory wrapper to the __init__() method, and allow a Builder to
841     have both an action and a src_builder (or array of them).
842
843   - Refactor BuilderBase.__call__() to separate Node creation/lookup
844     from initialization of the Node's builder information.
845
846   - Add a CFile Builder object that supports turning lex (.l) and
847     yacc (.y) files into .c files.
848
849   - Document: variable interpretation attributes; how to propogate
850     the user's environment variables to executed commands; how to
851     build variants in multiple BuildDirs.
852
853   - Collect String, Dict, and List type-checking in common utility
854     routines so we can accept User{String,Dict,List}s all over.
855
856   - Put the Action factory and classes into their own module.
857
858   - Use one CPlusPlusAction in the Object Builder's action dictionary,
859     instead of letting it create multiple identical instances.
860
861   - Document the Install() and InstallAs() methods.
862
863   From Steve Leblanc:
864
865   - Require that a Builder be given a name argument, supplying a
866     useful error message when it isn't.
867
868   From Anthony Roach:
869
870   - Add a "duplicate" keyword argument to BuildDir() that can be set
871     to prevent linking/copying source files into build directories.
872
873   - Add a "--debug=tree" option to print an ASCII dependency tree.
874
875   - Fetch the location of the Microsoft Visual C++ compiler(s) from
876     the Registry, instead of hard-coding the location.
877     
878   - Made Scanner objects take Nodes, not path names.
879     
880   - Have the C Scanner cache the #include file names instead of
881     (re-)scanning the file each time it's called.
882
883   - Created a separate class for parent "nodes" of file system roots,
884     eliminating the need for separate is-parent-null checks everywhere.
885     
886   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
887     favor of Python's more efficient built-in identity comparisons.
888
889
890
891 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
892
893   From Charles Crain:
894
895   - Added the Install(), BuildDir(), and Export() methods.
896
897   - Fix the -C option by delaying setting the top of the FS tree.
898
899   - Avoid putting the directory path on the libraries in the LIBS
900     construction variable.
901
902   - Added a GetBuildPath() method to return the full path to the
903     Node for a specified string.
904
905   - Fixed variable substitution in CPPPATH and LIBPATH.
906
907   From Steven Knight:
908
909   - Fixed the version comment in the scons.bat (the UNIX geek used
910     # instead of @rem).
911
912   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
913
914   - Provide make-like warning message for "command not found" and
915     similar errors.
916
917   - Added an EXAMPLES section to the man page.
918
919   - Make Default() targets properly relative to their SConscript
920     file's subdirectory.
921
922   From Anthony Roach:
923
924   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
925
926   - Fixed SCONS_LIB_DIR to work as documented.
927
928   - Made Default() accept Nodes as arguments.
929
930   - Changed Export() to make it easier to use.
931   
932   - Added the Import() and Return() methods.
933
934
935
936 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
937
938 A brief overview of important functionality available in release 0.01:
939
940   - C and C++ compilation on POSIX and Windows NT.
941
942   - Automatic scanning of C/C++ source files for #include dependencies.
943
944   - Support for building libraries; setting construction variables
945     allows creation of shared libraries.
946
947   - Library and C preprocessor search paths.
948
949   - File changes detected using MD5 signatures.
950
951   - User-definable Builder objects for building files.
952
953   - User-definable Scanner objects for scanning for dependencies.
954
955   - Parallel build (-j) support.
956
957   - Dependency cycles detected.
958
959   - Linux packages available in RPM and Debian format.
960
961   - Windows installer available.