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