Add /TP to CXXFLAGS for msvc. Win32 portability fixes for tests.
[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.XX - XXX
12
13   From Chad Austin:
14
15   - Support specifying a list of tools when calling Environment.Copy().
16
17   - Give a Value Nodes a timestamp of the system time when they're
18     created, so they'll work when using timestamp-based signatures.
19
20   - Add a DefaultEnvironment() function that only creates a default
21     environment on-demand (for fetching source files, e.g.).
22
23   - Portability fix for test/M4.py.
24
25   From Steven Knight:
26
27   - Tighten up the scons -H help output.
28
29   - When the input yacc file ends in .yy and the -d flag is specified,
30     recognize that a .hpp file (not a .h file) will be created.
31
32   - Make builder prefixes work correctly when deducing a target
33     from a source file name in another directory.
34
35   - Documentation fixes:  typo in the man page.
36
37   - Use "cvs co -d" instead of "cvs co -p >" when checking out something
38     from CVS with a specified module name.  This avoids zero-length
39     files when there is a checkout error.
40
41   - Add an "sconsign" script to print the contents of .sconsign files.
42
43   - Speed up maintaining the various lists of Node children by using
44     dictionaries to avoid "x in list" searches.
45
46   - Cache the computed list of Node children minus those being Ignored
47     so it's only calculated once.
48
49   - Fix use of the --cache-show option when building a Program()
50     (or using any other arbitrary action) by making sure all Action
51     instances have strfunction() methods.
52
53   - Allow the source of Command() to be a directory.
54
55   - Better error handling of things like raw TypeErrors in SConscripts.
56
57   - When installing using "setup.py install --prefix=", suppress the
58     distutils warning message about adding the (incorrect) library
59     directory to your search path.
60
61   - Correct the spelling of the "validater" option to "validator."
62     Add a DeprecatedWarning when the old spelling is used.
63
64   - Allow a Builder's emitter to be a dictionary that maps source file
65     suffixes to emitter functions, using the suffix of the first file
66     in the source list to pick the right one.
67
68   - Refactor the creation of the Program, *Object and *Library Builders
69     so that they're moved out of SCons.Defaults and created on demand.
70
71   - Don't split SConscript file names on white space.
72
73   - Document the SConscript function's "dirs" and "name" keywords.
74
75   - Remove the internal (and superfluous) SCons.Util.argmunge() function.
76
77   - Add /TP to the default CXXFLAGS for msvc, so it can compile all
78     of the suffixes we use as C++ files.
79
80   From Gary Oberbrunner:
81
82   - Report the target being built in error messages when building
83     multiple sources from different extensions, or when the target file
84     extension can't be deduced, or when we don't have an action for a
85     file suffix.
86
87   - Provide helpful error messages when the arguments to env.Install()
88     are incorrect.
89
90   - Fix the value returned by the Node.prevsiginfo() method to conform
91     to a previous change when checking whether a node is current.
92
93   - Supply a stack trace if the Taskmaster catches an exception.
94
95   From Laurent Pelecq:
96
97   - When the -debug=pdb option is specified, use pdb.Pdb().runcall() to
98     call pdb directly, don't call Python recursively.
99
100   From Christoph Wiedemann:
101
102   - Have the g++ Tool actually use g++ in preference to c++.
103
104   - Have the gcc Tool actually use gcc in preference to cc.
105
106   - Add a gnutools.py test of the GNU tool chain.
107
108   - Be smarter about linking: use $CC by default and $CXX only if we're
109     linking with any C++ objects.
110
111   - Avoid SCons hanging when a piped command has a lot of output to read.
112
113   - Add QT support for preprocessing .ui files into .c files.
114
115
116
117 RELEASE 0.90 - Wed, 25 Jun 2003 14:24:52 -0500
118
119   From Chad Austin:
120
121   - Fix the _concat() documentation, and add a test for it.
122
123   - Portability fixes for non-GNU versions of lex and yacc.
124
125   From Matt Balvin:
126
127   - Fix handling of library prefixes when the subdirectory matches
128     the prefix.
129
130   From Timothee Bessett:
131
132   - Add an M4 Builder.
133
134   From Charles Crain:
135
136   - Use '.lnk' as the suffix on the temporary file for linking long
137     command lines (necessary for the Phar Lap linkloc linker).
138
139   - Save non-string Options values as their actual type.
140
141   - Save Options string values that contain a single quote correctly.
142
143   - Save any Options values that are changed from the default
144     Environment values, not just ones changed on the command line or in
145     an Options file.
146
147   - Make closing the Options file descriptor exception-safe.
148
149   From Steven Knight:
150
151   - SCons now enforces (with an error) that construction variables
152     must have the same form as valid Python identifiers.
153
154   - Fix man page bugs: remove duplicate AddPostAction() description;
155     document no_import_lib; mention that CPPFLAGS does not contain
156     $_CPPINCFLAGS; mention that F77FLAGS does not contain $_F77INCFLAGS;
157     mention that LINKFLAGS and SHLINKFLAGS contains neither $_LIBFLAGS
158     nor $_LIBDIRFLAGS.
159
160   - Eliminate a dependency on the distutils.fancy_getopt module by
161     copying and pasting its wrap_text() function directly.
162
163   - Make the Script.Options() subclass match the underlying base class
164     implementation.
165
166   - When reporting a target is up to date, quote the target like make
167     (backquote-quote) instead of with double quotes.
168
169   - Fix handling of ../* targets when using -U, -D or -u.
170
171   From Steve Leblanc:
172
173   - Don't update the .sconsign files when run with -n.
174
175   From Gary Oberbrunner:
176
177   - Add support for the Intel C Compiler (icl.exe).
178
179   From Anthony Roach
180
181   - Fix Import('*').
182
183   From David Snopek
184
185   - Fix use of SConf in paths with white space in them.
186
187   - Add CheckFunc and CheckType functionality to SConf.
188
189   - Fix use of SConf with Builders that return a list of nodes.
190
191   From David Snopek and Christoph Wiedemann
192
193   - Fix use of the SConf subsystem with SConscriptChdir().
194
195   From Greg Spencer
196
197   - Check for the existence of MS Visual Studio on disk before using it,
198     to avoid getting fooled by leftover junk in the registry.
199
200   - Add support for MSVC++ .NET.
201
202   - Add support for MS Visual Studio project files (DSP, DSW,
203     SLN and VCPROJ files).
204
205   From Christoph Wiedemann
206
207   - SConf now works correctly when the -n and -q options are used.
208
209
210
211 RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500
212
213   From Chad Austin:
214
215   - Use .dll (not .so) for shared libraries on Cygwin; use -fPIC
216     when compiling them.
217
218   - Use 'rm' to remove files under Cygwin.
219
220   - Add a PLATFORM variable to construction environments.
221
222   - Remove the "platform" argument from tool specifications.
223
224   - Propogate PYTHONPATH when running the regression tests so distutils
225     can be found in non-standard locations.
226
227   - Using MSVC long command-line linking when running Cygwin.
228
229   - Portability fixes for a lot of tests.
230
231   - Add a Value Node class for dependencies on in-core Python values.
232
233   From Allen Bierbaum:
234
235   - Pass an Environment to the Options validator method, and
236     add an Options.Save() method.
237
238   From Steve Christensen:
239
240   - Add an optional sort function argument to the GenerateHelpText()
241     Options function.
242
243   - Evaluate the "varlist" variables when computing the signature of a
244     function action.
245
246   From Charles Crain:
247
248   - Parse the source .java files for class names (including inner class
249     names) to figure out the target .class files that will be created.
250
251   - Make Java support work with Repositories and SConscriptChdir(0).
252
253   - Pass Nodes, not strings, to Builder emitter functions.
254
255   - Refactor command-line interpolation and signature calculation
256     so we can use real Node attributes.
257
258   From Steven Knight:
259
260   - Add Java support (javac, javah, jar and rmic).
261
262   - Propagate the external SYSTEMROOT environment variable into ENV on
263     Win32 systems, so external commands that use sockets will work.
264
265   - Add a .posix attribute to PathList expansions.
266
267   - Check out CVS source files using POSIX path names (forward slashes
268     as separators) even on Win32.
269
270   - Add Node.clear() and Node.FS.Entry.clear() methods to wipe out a
271     Node's state, allowing it to be re-evaluated by continuous
272     integration build interfaces.
273
274   - Change the name of the Set{Build,Content}SignatureType() functions
275     to {Target,Source}Signatures().  Deprecate the old names but support
276     them for backwards compatibility.
277
278   - Add internal SCons.Node.FS.{Dir,File}.Entry() methods.
279
280   - Interpolate the null string if an out-of-range subscript is used
281     for a construction variable.
282
283   - Fix the internal Link function so that it properly links or copies
284     files in subsidiary BuildDir directories.
285
286   - Refactor the internal representation of a single execution instance
287     of an action to eliminate redundant signature calculations.
288
289   - Eliminate redundant signature calculations for Nodes.
290
291   - Optimize out calling hasattr() before accessing attributes.
292
293   - Say "Cleaning targets" (not "Building...") when the -c option is
294     used.
295
296   From Damyan Pepper:
297
298   - Quote the "Entering directory" message like Make.
299
300   From Stefan Reichor:
301
302   - Add support for using Ghostscript to convert Postscript to PDF files.
303
304   From Anthony Roach:
305
306   - Add a standalone "Alias" function (separate from an Environment).
307
308   - Make Export() work for local variables.
309
310   - Support passing a dictionary to Export().
311
312   - Support Import('*') to import everything that's been Export()ed.
313
314   - Fix an undefined exitvalmap on Win32 systems.
315
316   - Support new SetOption() and GetOption() functions for setting
317     various command-line options from with an SConscript file.
318
319   - Deprecate the old SetJobs() and GetJobs() functions in favor of
320     using the new generic {Set,Get}Option() functions.
321
322   - Fix a number of tests that searched for a Fortran compiler using the
323     external PATH instead of what SCons would use.
324
325   - Fix the interaction of SideEffect() and BuildDir() so that (for
326     example) PDB files get put correctly in a BuildDir().
327
328   From David Snopek:
329
330   - Contribute the "Autoscons" code for Autoconf-like checking for
331     the existence of libraries, header files and the like.
332
333   - Have the Tool() function add the tool name to the $TOOLS
334     construction variable.
335
336   From Greg Spencer:
337
338   - Support the C preprocessor #import statement.
339
340   - Allow the SharedLibrary() Builder on Win32 systems to be able to
341     register a newly-built dll using regsvr32.
342
343   - Add a Builder for Windows type library (.tlb) files from IDL files.
344
345   - Add an IDL scanner.
346
347   - Refactor the Fortran, C and IDL scanners to share common logic.
348
349   - Add .srcpath and .srcdir attributes to $TARGET and $SOURCE.
350
351   From Christoph Wiedemann:
352
353   - Integrate David Snopek's "Autoscons" code as the new SConf
354     configuration subsystem, including caching of values between
355     runs (using normal SCons dependency mechanisms), tests, and
356     documentation.
357
358
359
360 RELEASE 0.13 - Mon, 31 Mar 2003 20:22:00 -0600
361
362   From Charles Crain:
363
364   - Fix a bug when BuildDir(duplicate=0) is used and SConscript
365     files are called from within other SConscript files.
366
367   - Support (older) versions of Perforce which don't set the Windows
368     registry.
369
370
371
372 RELEASE 0.12 - Thu, 27 Mar 2003 23:52:09 -0600
373
374   From Charles Crain:
375
376   - Added support for the Perforce source code management system.
377
378   - Fix str(Node.FS) so that it returns a path relative to the calling
379     SConscript file's directory, not the top-level directory.
380
381   - Added support for a separate src_dir argument to SConscript()
382     that allows explicit specification of where the source files
383     for an SConscript file can be found.
384
385   - Support more easily re-usable flavors of command generators by
386     calling callable variables when strings are expanded.
387
388   From Steven Knight:
389
390   - Added an INSTALL construction variable that can be set to a function
391     to control how the Install() and InstallAs() Builders install files.
392     The default INSTALL function now copies, not links, files.
393
394   - Remove deprecated features:  the "name" argument to Builder objects,
395     and the Environment.Update() method.
396
397   - Add an Environment.SourceCode() method to support fetching files
398     from source code systems.  Add factory methods that create Builders
399     to support BitKeeper, CVS, RCS, and SCCS.  Add support for fetching
400     files from RCS or SCCS transparently (like GNU Make).
401
402   - Make the internal to_String() function more efficient.
403
404   - Make the error message the same as other build errors when there's a
405     problem unlinking a target file in preparation for it being built.
406
407   - Make TARGET, TARGETS, SOURCE and SOURCES reserved variable names and
408     warn if the user tries to set them in a construction environment.
409
410   - Add support for Tar and Zip files.
411
412   - Better documentation of the different ways to export variables to a
413     subsidiary SConscript file.  Fix documentation bugs in a tools
414     example, places that still assumed SCons split strings on white
415     space, and typos.
416
417   - Support fetching arbitrary files from the TARGETS or SOURCES lists
418     (e.g. ${SOURCES[2]}) when calculating the build signature of a
419     command.
420
421   - Don't silently swallow exceptions thrown by Scanners (or other
422     exceptions while finding a node's dependent children).
423
424   - Push files to CacheDir() before calling the superclass built()
425     method (which may clear the build signature as part of clearing
426     cached implicit dependencies, if the file has a source scanner).
427     (Bug reported by Jeff Petkau.)
428
429   - Raise an internal error if we attempt to push a file to CacheDir()
430     with a build signature of None.
431
432   - Add an explicit Exit() function for terminating early.
433
434   - Change the documentation to correctly describe that the -f option
435     doesn't change to the directory in which the specified file lives.
436     
437   - Support changing directories locally with SConscript directory
438     path names relative to any SConstruct file specified with -f.
439     This allows you to build in another directory by simply changing
440     there and pointing at the SConstruct file in another directory.
441
442   - Change the default SConscriptChdir() behavior to change to the
443     SConscript directory while it's being read.
444
445   - Fix an exception thrown when the -U option was used with no
446     Default() target specified.
447
448   - Fix -u so that it builds things in corresponding build directories
449     when used in a source directory.
450
451   From Lachlan O'Dea:
452
453   - Add SharedObject() support to the masm tool.
454
455   - Fix WhereIs() to return normalized paths.
456
457   From Jeff Petkau:
458
459   - Don't copy a built file to a CacheDir() if it's already there.
460
461   - Avoid partial copies of built files in a CacheDir() by copying
462     to a temporary file and renaming.
463
464   From Anthony Roach:
465
466   - Fix incorrect dependency-cycle errors when an Aliased source doesn't
467     exist.
468
469
470
471 RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600
472
473   From Chad Austin:
474
475   - Add support for IRIX and the SGI MIPSPro tool chain.
476
477   - Support using the MSVC tool chain when running Cygwin Python.
478
479   From Michael Cook:
480
481   - Avoid losing signal bits in the exit status from a command,
482     helping terminate builds on interrupt (CTRL+C).
483
484   From Charles Crain:
485
486   - Added new AddPreAction() and AddPostAction() functions that support
487     taking additional actions before or after building specific targets.
488
489   - Add support for the PharLap ETS tool chain.
490
491   From Steven Knight:
492
493   - Allow Python function Actions to specify a list of construction
494     variables that should be included in the Action's signature.
495
496   - Allow libraries in the LIBS variable to explicitly include the prefix
497     and suffix, even when using the GNU linker.
498     (Bug reported by Neal Becker.)
499
500   - Use DOS-standard CR-LF line endings in the scons.bat file.
501     (Bug reported by Gary Ruben.)
502
503   - Doc changes:  Eliminate description of deprecated "name" keyword
504     argument from Builder definition (reported by Gary Ruben).
505
506   - Support using env.Append() on BUILDERS (and other dictionaries).
507     (Bug reported by Bj=F6rn Bylander.)
508
509   - Setting the BUILDERS construction variable now properly clears
510     the previous Builder attributes from the construction Environment.
511     (Bug reported by Bj=F6rn Bylander.)
512
513   - Fix adding a prefix to a file when the target isn't specified.
514     (Bug reported by Esa Ilari Vuokko.)
515
516   - Clean up error messages from problems duplicating into read-only
517     BuildDir directories or into read-only files.
518
519   - Add a CommandAction.strfunction() method, and add an "env" argument
520     to the FunctionAction.strfunction() method, so that all Action
521     objects have strfunction() methods, and the functions for building
522     and returning a string both take the same arguments.
523
524   - Add support for new CacheDir() functionality to share derived files
525     between builds, with related options --cache-disable, --cache-force,
526     and --cache-show.
527
528   - Change the default behavior when no targets are specified to build
529     everything in the current directory and below (like Make).  This
530     can be disabled by specifying Default(None) in an SConscript.
531
532   - Revamp SCons installation to fix a case-sensitive installation
533     on Win32 systems, and to add SCons-specific --standard-lib,
534     --standalone-lib, and --version-lib options for easier user
535     control of where the libraries get installed.
536
537   - Fix the ability to directly import and use Platform and Tool modules
538     that have been implicitly imported into an Environment().
539
540   - Add support for allowing an embedding interface to annotate a node
541     when it's created.
542
543   - Extend the SConscript() function to accept build_dir and duplicate
544     keyword arguments that function like a BuildDir() call.
545
546   From Steve Leblanc:
547
548   - Fix the output of -c -n when directories are involved, so it
549     matches -c.
550
551   From Anthony Roach:
552
553   - Use a different shared object suffix (.os) when using gcc so shared
554     and static objects can exist side-by-side in the same directory.
555
556   - Allow the same object files on Win32 to be linked into either
557     shared or static libraries.
558
559   - Cache implicit cache values when using --implicit-cache.
560
561
562
563 RELEASE 0.10 - Thu, 16 Jan 2003 04:11:46 -0600
564
565   From Derrick 'dman' Hudson:
566
567   - Support Repositories on other file systems by symlinking or
568     copying files when hard linking won't work.
569
570   From Steven Knight:
571
572   - Remove Python bytecode (*.pyc) files from the scons-local packages.
573
574   - Have FunctionActions print a description of what they're doing
575     (a representation of the Python call).
576
577   - Fix the Install() method so that, like other actions, it prints
578     what would have happened when the -n option is used.
579
580   - Don't create duplicate source files in a BuildDir when the -n
581     option is used.
582
583   - Refactor the Scanner interface to eliminate unnecessary Scanner
584     calls and make it easier to write efficient scanners.
585
586   - Added a "recursive" flag to Scanner creation that specifies the
587     Scanner should be invoked recursively on dependency files returned
588     by the scanner.
589
590   - Significant performance improvement from using a more efficient
591     check, throughout the code, for whether a Node has a Builder.
592
593   - Fix specifying only the source file to MultiStepBuilders such as
594     the Program Builder.  (Bug reported by Dean Bair.)
595
596   - Fix an exception when building from a file with the same basename as
597     the subdirectory in which it lives.  (Bug reported by Gerard Patel.)
598
599   - Fix automatic deduction of a target file name when there are
600     multiple source files specified; the target is now deduced from just
601     the first source file in the list.
602
603   - Documentation fixes: better initial explanation of SConscript files;
604     fix a misformatted "table" in the StaticObject explanation.
605
606   From Steven Knight and Steve Leblanc:
607
608   - Fix the -c option so it will remove symlinks.
609
610   From Steve Leblanc:
611
612   - Add a Clean() method to support removing user-specified targets
613     when using the -c option.
614
615   - Add a development script for running SCons through PyChecker.
616
617   - Clean up things found by PyChecker (mostly unnecessary imports).
618
619   - Add a script to use HappyDoc to create HTML class documentation.
620
621   From Lachlan O'Dea:
622
623   - Make the Environment.get() method return None by default.
624
625   From Anthony Roach:
626
627   - Add SetJobs() and GetJobs() methods to allow configuration of the
628     number of default jobs (still overridden by -j).
629
630   - Convert the .sconsign file format from ASCII to a pickled Python
631     data structure.
632
633   - Error message cleanups:  Made consistent the format of error
634     messages (now all start with "scons: ***") and warning messages (now
635     all start with "scons: warning:").  Caught more cases with the "Do
636     not know how to build" error message.
637
638   - Added support for the MinGW tool chain.
639
640   - Added a --debug=includes option.
641
642
643
644 RELEASE 0.09 - Thu,  5 Dec 2002 04:48:25 -0600
645
646   From Chad Austin:
647
648   - Add a Prepend() method to Environments, to append values to
649     the beginning of construction variables.
650
651   From Matt Balvin:
652
653   - Add long command-line support to the "lib" Tool (Microsoft library
654     archiver), too.
655
656   From Charles Crain:
657
658   - Allow $$ in a string to be passed through as $.
659
660   - Support file names with odd characters in them.
661
662   - Add support for construction variable substition on scanner
663     directories (in CPPPATH, F77PATH, LIBPATH, etc.).
664
665   From Charles Crain and Steven Knight:
666
667   - Add Repository() functionality, including the -Y option.
668
669   From Steven Knight:
670
671   - Fix auto-deduction of target names so that deduced targets end
672     up in the same subdirectory as the source.
673
674   - Don't remove source files specified on the command line!
675
676   - Suport the Intel Fortran Compiler (ifl.exe).
677
678   - Supply an error message if there are no command-line or
679     Default() targets specified.
680
681   - Fix the ASPPCOM values for the GNU assembler.
682     (Bug reported by Brett Polivka.)
683
684   - Fix an exception thrown when a Default() directory was specified
685     when using the -U option.
686
687   - Issue a warning when -c can't remove a target.
688
689   - Eliminate unnecessary Scanner calls by checking for the
690     existence of a file before scanning it.  (This adds a generic
691     hook to check an arbitrary condition before scanning.)
692
693   - Add explicit messages to tell when we're "Reading SConscript files
694     ...," "done reading SConscript files," "Building targets," and
695     "done building targets."  Add a -Q option to supress these.
696
697   - Add separate $SHOBJPREFIX and $SHOBJSUFFIX construction variables
698     (by default, the same as $OBJPREFIX and $OBJSUFFIX).
699
700   - Add Make-like error messages when asked to build a source file,
701     and before trying to build a file that doesn't have all its source
702     files (including when an invalid drive letter is used on WIN32).
703
704   - Add an scons-local-{version} package (in both .tar.gz and .zip
705     flavors) to help people who want to ship SCons as a stand-alone
706     build tool in their software packages.
707
708   - Prevent SCons from unlinking files in certain situations when
709     the -n option is used.
710
711   - Change the name of Tool/lib.py to Tool/mslib.py.
712
713   From Steven Knight and Anthony Roach:
714
715   - Man page:  document the fact that Builder calls return Node objects.
716
717   From Steve LeBlanc:
718
719   - Refactor option processing to use our own version of Greg Ward's
720     Optik module, modified to run under Python 1.5.2.
721
722   - Add a ParseConfig() command to modify an environment based on
723     parsing output from a *-config command.
724
725   From Jeff Petkau:
726
727   - Fix interpretation of '#/../foo' on Win32 systems.
728
729   From Anthony Roach:
730
731   - Fixed use of command lines with spaces in their arguments,
732     and use of Nodes with spaces in their string representation.
733
734   - Make access and modification times of files in a BuildDir match
735     the source file, even when hard linking isn't available.
736
737   - Make -U be case insensitive on Win32 systems.
738
739   - Issue a warning and continue when finding a corrupt .sconsign file.
740
741   - Fix using an alias as a dependency of a target so that if one of the
742     alias' dependencies gets rebuilt, the resulting target will, too.
743
744   - Fix differently ordered targets causing unnecessary rebuilds
745     on case insensitive systems.
746
747   - Use os.system() to execute external commands whenever the "env"
748     utility is available, which is much faster than fork()/exec(),
749     and fixes the -j option on several platforms.
750
751   - Fix use of -j with multiple targets.
752
753   - Add an Options() object for friendlier accomodation of command-
754     line arguments.
755
756   - Add support for Microsoft VC++ precompiled header (.pch) files,
757     debugger (.pdb) files, and resource (.rc) files.
758
759   - Don't compute the $_CPPINCFLAGS, $_F77INCFLAGS, $_LIBFLAGS and
760     $_LIBDIRFLAGS variables each time a command is executed, define
761     them so they're computed only as needed.  Add a new _concat
762     function to the Environment that allows people to define their
763     own similar variables.
764
765   - Fix dependency scans when $LIBS is overridden.
766
767   - Add EnsurePythonVersion() and EnsureSConsVersion() functions.
768
769   - Fix the overly-verbose stack trace on ListBuilder build errors.
770
771   - Add a SetContentSignatureType() function, allowing use of file
772     timestamps instead of MD5 signatures.
773
774   - Make -U and Default('source') fail gracefully.
775
776   - Allow the File() and Dir() methods to take a path-name string as
777     the starting directory, in addition to a Dir object.
778
779   - Allow the command handler to be selected via the SPAWN, SHELL
780     and ESCAPE construction variables.
781
782   - Allow construction variables to be overridden when a Builder
783     is called.
784
785   From sam th:
786
787   - Dynamically check for the existence of utilities with which to
788     initialize Environments by default.
789
790
791
792 RELEASE 0.08 - Mon, 15 Jul 2002 12:08:51 -0500
793
794   From Charles Crain:
795
796   - Fixed a bug with relative CPPPATH dirs when using BuildDir().
797     (Bug reported by Bob Summerwill.)
798
799   - Added a warnings framework and a --warn option to enable or
800     disable warnings.
801
802   - Make the C scanner warn users if files referenced by #include
803     directives cannot be found and --warn=dependency is specified.
804
805   - The BUILDERS construction variable should now be a dictionary
806     that maps builder names to actions.  Existing uses of lists,
807     and the Builder name= keyword argument, generate warnings
808     about use of deprecated features.
809
810   - Removed the "shared" keyword argument from the Object and
811     Library builders.
812     
813   - Added separated StaticObject, SharedObject, StaticLibrary and
814     SharedLibrary builders.  Made Object and Library synonyms for
815     StaticObject and StaticLibrary, respectively.
816
817   - Add LIBS and LIBPATH dependencies for shared libraries.
818
819   - Removed support for the prefix, suffix and src_suffix arguments
820     to Builder() to be callable functions.
821
822   - Fix handling file names with multiple dots.
823
824   - Allow a build directory to be outside of the SConstruct tree.
825
826   - Add a FindFile() function that searches for a file node with a
827     specified name.
828
829   - Add $CPPFLAGS to the shared-object command lines for g++ and gcc.
830
831   From Charles Crain and Steven Knight:
832
833   - Add a "tools=" keyword argument to Environment instantiation,
834     and a separate Tools() method, for more flexible specification
835     of tool-specific environment changes.
836
837   From Steven Knight:
838
839   - Add a "platform=" keyword argument to Environment instantiation,
840     and a separate Platform() method, for more flexible specification
841     of platform-specific environment changes.
842
843   - Updated README instructions and setup.py code to catch an
844     installation failure from not having distutils installed.
845
846   - Add descriptions to the -H help text for -D, -u and -U so
847     people can tell them apart.
848
849   - Remove the old feature of automatically splitting strings
850     of file names on white space.
851
852   - Add a dependency Scanner for native Fortran "include" statements,
853     using a new "F77PATH" construction variable.
854
855   - Fix C #include scanning to detect file names with characters like
856     '-' in them.
857
858   - Add more specific version / build output to the -v option.
859
860   - Add support for the GNU as, Microsoft masm, and nasm assemblers.
861
862   - Allow the "target" argument to a Builder call to be omitted, in
863     which case the target(s) are deduced from the source file(s) and the
864     Builder's specified suffix.
865
866   - Add a tar archive builder.
867
868   - Add preliminary support for the OS/2 Platform, including the icc
869     and ilink Tools.
870
871   From Jeff Petkau:
872
873   - Fix --implicit-cache if the scanner returns an empty list.
874
875   From Anthony Roach:
876
877   - Add a "multi" keyword argument to Builder creation that specifies
878     it's okay to call the builder multiple times for a target.
879
880   - Set a "multi" on Aliases so multiple calls will append to an Alias.
881
882   - Fix emitter functions' use of path names when using BuildDir or
883     in subdirectories.
884
885   - Fix --implicit-cache causing redundant rebuilds when the header
886     file list changed.
887
888   - Fix --implicit-cache when a file has no implicit dependencies and
889     its source is generated.
890
891   - Make the drive letters on Windows always be the same case, so that
892     changes in the case of drive letters don't cause a rebuild.
893
894   - Fall back to importing the SCons.TimeStamp module if the SCons.MD5
895     module can't be imported.
896
897   - Fix interrupt handling to guarantee that a single interrupt will
898     halt SCons both when using -j and not.
899
900   - Fix .sconsign signature storage so that output files of one build
901     can be safely used as input files to another build.
902
903   - Added a --debug=time option to print SCons execution times.
904
905   - Print an error message if a file can't be unlinked before being
906     built, rather than just silently terminating the build.
907
908   - Add a SideEffect() method that can be used to tell the build
909     engine that a given file is created as a side effect of building
910     a target.  A file can be specified as a side effect of more than
911     one build comand, in which case the commands will not be executed
912     simultaneously.
913
914   - Significant performance gains from not using our own version of
915     the inefficient stock os.path.splitext() method, caching source
916     suffix computation, code cleanup in MultiStepBuilder.__call__(),
917     and replicating some logic in scons_subst().
918
919   - Add --implicit-deps-changed and --implicit-deps-unchanged options.
920
921   - Add a GetLaunchDir() function.
922
923   - Add a SetBuildSignatureType() function.
924
925   From Zed Shaw:
926
927   - Add an Append() method to Environments, to append values to
928     construction variables.
929
930   - Change the name of Update() to Replace().  Keep Update() as a
931     deprecated synonym, at least for now.
932
933   From Terrel Shumway:
934
935   - Use a $PYTHON construction variable, initialized to sys.executable,
936     when using Python to build parts of the SCons packages.
937
938   - Use sys.prefix, not sys.exec_prefix, to find pdb.py.
939
940
941
942 RELEASE 0.07 - Thu,  2 May 2002 13:37:16 -0500
943
944   From Chad Austin:
945
946   - Changes to build SCons packages on IRIX (and other *NIces).
947
948   - Don't create a directory Node when a file already exists there,
949     and vice versa.
950
951   - Add 'dirs' and 'names' keyword arguments to SConscript for
952     easier specification of subsidiary SConscript files.
953
954   From Charles Crain:
955
956   - Internal cleanup of environment passing to function Actions.
957
958   - Builders can now take arbitrary keyword arguments to create
959     attributes to be passed to: command generator functions,
960     FunctionAction functions, Builder emitter functions (below),
961     and prefix/suffix generator functions (below).
962
963   - Command generator functions can now return ANYTHING that can be
964     converted into an Action (a function, a string, a CommandGenerator
965     instance, even an ActionBase instance).
966
967   - Actions now call get_contents() with the actual target and source
968     nodes used for the build.
969
970   - A new DictCmdGenerator class replaces CompositeBuilder to support
971     more flexible Builder behavior internally.
972
973   - Builders can now take an emitter= keyword argument.  An emitter
974     is a function that takes target, source, and env argument, then
975     return a 2-tuple of (new sources, new targets).  The emitter is
976     called when the Builder is __call__'ed, allowing a user to modify
977     source and target lists.
978
979   - The prefix, suffix and src_suffix Builder arguments now take a
980     callable as well a string.  The callable is passed the Environment
981     and any extra Builder keyword arguments and is expected to return
982     the appropriate prefix or suffix.
983
984   - CommandActions can now be a string, a list of command + argument
985     strings, or a list of commands (strings or lists).
986
987   - Added shared library support.  The Object and Library Builders now
988     take a "shared=1" keyword argument to specify that a shared object
989     or shared library should be built.  It is an error to try to build
990     static objects into a shared library or vice versa.
991
992   - Win32 support for .def files has been added.  Added the Win32-specific
993     construction variables $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
994     $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX.  When building a .dll,
995     the new construction variable $WIN32_INSERT_DEF, controls whether
996     the appropriately-named .def file is inserted into the target
997     list (if not already present).  A .lib file is always added to
998     a Library build if not present in the list of targets.
999
1000   - ListBuilder now passes all targets to the action, not just the first.
1001
1002   - Fix so that -c now deletes generated yacc .h files.
1003
1004   - Builder actions and emitter functions can now be initialized, through
1005     construction variables, to things other than strings.
1006
1007   - Make top-relative '#/dir' lookups work like '#dir'.
1008
1009   - Fix for relative CPPPATH directories in subsidiary SConscript files
1010     (broken in 0.06).
1011
1012   - Add a for_signature argument to command generators, so that
1013     generators that need to can return distinct values for the
1014     command signature and for executing the command.
1015
1016   From Alex Jacques:
1017
1018   - Create a better scons.bat file from a py2bat.py script on the Python
1019     mailing list two years ago (modeled after pl2bat.pl).
1020
1021   From Steven Knight:
1022
1023   - Fix so that -c -n does *not* remove the targets!
1024
1025   - Man page:  Add a hierarchical libraries + Program example.
1026
1027   - Support long MSVC linker command lines through a builder action
1028     that writes to a temporary file and uses the magic MSVC "link @file"
1029     argument syntax if the line is longer than 2K characters.
1030
1031   - Fix F77 command-line options on Win32 (use /Fo instead of -o).
1032
1033   - Use the same action to build from .c (lower case) and .C (upper
1034     case) files on case-insensitive systems like Win32.
1035
1036   - Support building a PDF file directly from a TeX or LaTeX file
1037     using pdftex or pdflatex.
1038
1039   - Add a -x option to runtest.py to specify the script being tested.
1040     A -X option indicates it's an executable, not a script to feed
1041     to the Python interpreter.
1042
1043   - Add a Split() function (identical to SCons.Util.argmunge()) for use
1044     in the next release, when Builders will no longer automatically split
1045     strings on white space.
1046
1047   From Steve Leblanc:
1048
1049   - Add the SConscriptChdir() method.
1050
1051   From Anthony Roach:
1052
1053   - Fix --debug=tree when used with directory targets.
1054
1055   - Significant internal restructuring of Scanners and Taskmaster.
1056
1057   - Added new --debug=dtree option.
1058
1059   - Fixes for --profile option.
1060
1061   - Performance improvement in construction variable substitution.
1062
1063   - Implemented caching of content signatures, plus added --max-drift
1064     option to control caching.
1065
1066   - Implemented caching of dependency signatures, enabled by new
1067     --implicit-cache option.
1068
1069   - Added abspath construction variable modifier.
1070
1071   - Added $SOURCE variable as a synonym for $SOURCES[0].
1072
1073   - Write out .sconsign files on error or interrupt so intermediate
1074     build results are saved.
1075
1076   - Change the -U option to -D.  Make a new -U that builds just the
1077     targets from the local SConscript file.
1078
1079   - Fixed use of sys.path so Python modules can be imported from
1080     the SConscript directory.
1081
1082   - Fix for using Aliases with the -u, -U and -D options.
1083
1084   - Fix so that Nodes can be passed to SConscript files.
1085
1086   From Moshe Zadka:
1087   
1088   - Changes for official Debian packaging.
1089
1090
1091
1092 RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
1093
1094   From Charles Crain:
1095
1096   - Fix command generators to expand construction variables.
1097
1098   - Make FunctionAction arguments be Nodes, not strings.
1099
1100   From Stephen Kennedy:
1101
1102   - Performance:  Use a dictionary, not a list, for a Node's parents.
1103
1104   From Steven Knight:
1105
1106   - Add .zip files to the packages we build.
1107
1108   - Man page:  document LIBS, fix a typo, document ARGUMENTS.
1109
1110   - Added RANLIB and RANLIBFLAGS construction variables.  Only use them
1111     in ARCOM if there's a "ranlib" program on the system.
1112
1113   - Add a configurable CFILESUFFIX for the Builder of .l and .y files
1114     into C files.
1115
1116   - Add a CXXFile Builder that turns .ll and .yy files into .cc files
1117     (configurable via a CXXFILESUFFIX construction variable).
1118
1119   - Use the POSIX-standard lex -t flag, not the GNU-specific -o flag.
1120     (Bug reported by Russell Christensen.)
1121
1122   - Fixed an exception when CPPPATH or LIBPATH is a null string.
1123     (Bug reported by Richard Kiss.)
1124
1125   - Add a --profile=FILE option to make profiling SCons easier.
1126
1127   - Modify the new DVI builder to create .dvi files from LaTeX (.ltx
1128     and .latex) files.
1129
1130   - Add support for Aliases (phony targets).
1131
1132   - Add a WhereIs() method for searching for path names to executables.
1133
1134   - Add PDF and PostScript document builders.
1135
1136   - Add support for compiling Fortran programs from a variety of
1137     suffixes (a la GNU Make):  .f, .F, .for, .FOR, .fpp and .FPP
1138
1139   - Support a CPPFLAGS variable on all default commands that use the
1140     C preprocessor.
1141
1142   From Steve Leblanc:
1143
1144   - Add support for the -U option.
1145
1146   - Allow CPPPATH, LIBPATH and LIBS to be specified as white-space
1147     separated strings.
1148
1149   - Add a document builder to create .dvi files from TeX (.tex) files.
1150
1151   From Anthony Roach:
1152
1153   - Fix:  Construction variables with values of 0 were incorrectly
1154     interpolated as ''. 
1155
1156   - Support env['VAR'] to fetch construction variable values.
1157
1158   - Man page:  document Precious().
1159
1160
1161
1162 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
1163
1164   From Chad Austin:
1165
1166   - Set PROGSUFFIX to .exe under Cygwin.
1167
1168   From Charles Crain:
1169
1170   - Allow a library to specified as a command-line source file, not just
1171     in the LIBS construction variable.
1172
1173   - Compensate for a bug in os.path.normpath() that returns '' for './'
1174     on WIN32.
1175
1176   - More performance optimizations:  cache #include lines from files,
1177     eliminate unnecessary calls.
1178
1179   - If a prefix or suffix contains white space, treat the resulting
1180     concatenation as separate arguments.
1181
1182   - Fix irregularities in the way we fetch DevStudio information from
1183     the Windows registry, and in our registry error handling.
1184
1185   From Steven Knight:
1186
1187   - Flush stdout after print so it intermixes correctly with stderr
1188     when redirected.
1189
1190   - Allow Scanners to return a list of strings, and document how to
1191     write your own Scanners.
1192
1193   - Look up implicit (scanned) dependencies relative to the directory
1194     of file being scanned.
1195
1196   - Make writing .sconsign files more robust by first trying to write
1197     to a temp file that gets renamed.
1198
1199   - Create all of the directories for a list of targets before trying
1200     to build any of the targets.
1201
1202   - WIN32 portability fixes in tests.
1203
1204   - Allow the list of variables exported to an SConscript file to be
1205     a UserList, too.
1206
1207   - Document the overlooked LIBPATH construction variable.
1208     (Bug reported by Eicke Godehardt.)
1209
1210   - Fix so that Ignore() ignores indirect, implicit dependencies
1211     (included files), not just direct dependencies.
1212
1213   - Put the man page in the Debian distribution.
1214
1215   - Run HTML docs through tidy to clean up the HTML (for Konqueror).
1216
1217   - Add preliminary support for Unicode strings.
1218
1219   - Efficiency:  don't scan dependencies more than once during the
1220     walk of a tree.
1221
1222   - Fix the -c option so it doesn't stop removing targets if one doesn't
1223     already exist.
1224     (Bug reported by Paul Connell.)
1225
1226   - Fix the --debug=pdb option when run on Windows NT.
1227     (Bug reported by Paul Connell.)
1228
1229   - Add support for the -q option.
1230
1231   From Steve Leblanc:
1232
1233   - Add support for the -u option.
1234
1235   - Add .cc and .hh file suffixes to the C Scanner.
1236
1237   From Anthony Roach:
1238
1239   - Make the scons script return an error code on failures.
1240
1241   - Add support for using code to generate a command to build a target.
1242
1243
1244
1245 RELEASE 0.04 - Wed, 30 Jan 2002 11:09:42 -0600
1246
1247   From Charles Crain:
1248
1249   - Significant performance improvements in the Node.FS and
1250     Scanner subsystems.
1251
1252   - Fix signatures of binary files on Win32 systems.
1253
1254   - Allow LIBS and LIBPATH to be strings, not just arrays.
1255
1256   - Print a traceback if a Python-function builder throws an exception.
1257
1258   From Steven Knight:
1259
1260   - Fix using a directory as a Default(), and allow Default() to
1261     support white space in file names for strings in arrays.
1262
1263   - Man page updates:  corrected some mistakes, documented various
1264     missing Environment methods, alphabetized the construction
1265     variables and other functions, defined begin and end macros for
1266     the example sections, regularized white space separation, fixed
1267     the use of Export() in the Multiple Variants example.
1268
1269   - Function action fixes:  None is now a successful return value.
1270     Exceptions are now reported.  Document function actions.
1271
1272   - Add 'Action' and 'Scanner' to the global keywords so SConscript
1273     files can use them too.
1274
1275   - Removed the Wrapper class between Nodes and Walkers.
1276
1277   - Add examples using Library, LIBS, and LIBPATH.
1278
1279   - The C Scanner now always returns a sorted list of dependencies
1280     so order changes don't cause unnecessary rebuilds.
1281
1282   - Strip $(-$) bracketed text from command lines.  Use this to
1283     surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
1284     to changes to -I or -L options.
1285
1286   - Add the Ignore() method to ignore dependencies.
1287
1288   - Provide an error message when a nonexistent target is specified
1289     on the command line.
1290
1291   - Remove targets before building them, and add an Environment
1292     Precious() method to override that.
1293
1294   - Eliminate redundant calls to the same builder when the target is a
1295     list of targets:  Add a ListBuilder class that wraps Builders to
1296     handle lists atomically.  Extend the Task class to support building
1297     and updating multiple targets in a single Task.  Simplify the
1298     interface between Task and Taskmaster.
1299
1300   - Add a --debug=pdb option to re-run SCons under the Python debugger.
1301
1302   - Only compute a build signature once for each node.
1303
1304   - Changes to our sys.path[] manipulation to support installation into
1305     an arbitrary --prefix value.
1306
1307   From Steve Leblanc:
1308
1309   - Add var=value command-line arguments.
1310
1311
1312
1313 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
1314
1315   From Charles Crain:
1316
1317   - Performance improvements in the Node.FS and Sig.Calculator classes.
1318
1319   - Add the InstallAs() method.
1320
1321   - Execute commands through an external interpreter (sh, cmd.exe, or
1322     command.com) to handle redirection metacharacters.
1323
1324   - Allow the user to supply a command handler.
1325
1326   From Steven Knight:
1327
1328   - Search both /usr/lib and /usr/local/lib for scons directories by
1329     adding them both to sys.path, with whichever is in sys.prefix first.
1330
1331   - Fix interpreting strings of multiple white-space separated file names
1332     as separate file names, allowing prefixes and suffixes to be appended
1333     to each individually.
1334
1335   - Refactor to move CompositeBuilder initialization logic from the
1336     factory wrapper to the __init__() method, and allow a Builder to
1337     have both an action and a src_builder (or array of them).
1338
1339   - Refactor BuilderBase.__call__() to separate Node creation/lookup
1340     from initialization of the Node's builder information.
1341
1342   - Add a CFile Builder object that supports turning lex (.l) and
1343     yacc (.y) files into .c files.
1344
1345   - Document: variable interpretation attributes; how to propogate
1346     the user's environment variables to executed commands; how to
1347     build variants in multiple BuildDirs.
1348
1349   - Collect String, Dict, and List type-checking in common utility
1350     routines so we can accept User{String,Dict,List}s all over.
1351
1352   - Put the Action factory and classes into their own module.
1353
1354   - Use one CPlusPlusAction in the Object Builder's action dictionary,
1355     instead of letting it create multiple identical instances.
1356
1357   - Document the Install() and InstallAs() methods.
1358
1359   From Steve Leblanc:
1360
1361   - Require that a Builder be given a name argument, supplying a
1362     useful error message when it isn't.
1363
1364   From Anthony Roach:
1365
1366   - Add a "duplicate" keyword argument to BuildDir() that can be set
1367     to prevent linking/copying source files into build directories.
1368
1369   - Add a "--debug=tree" option to print an ASCII dependency tree.
1370
1371   - Fetch the location of the Microsoft Visual C++ compiler(s) from
1372     the Registry, instead of hard-coding the location.
1373     
1374   - Made Scanner objects take Nodes, not path names.
1375     
1376   - Have the C Scanner cache the #include file names instead of
1377     (re-)scanning the file each time it's called.
1378
1379   - Created a separate class for parent "nodes" of file system roots,
1380     eliminating the need for separate is-parent-null checks everywhere.
1381     
1382   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
1383     favor of Python's more efficient built-in identity comparisons.
1384
1385
1386
1387 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
1388
1389   From Charles Crain:
1390
1391   - Added the Install(), BuildDir(), and Export() methods.
1392
1393   - Fix the -C option by delaying setting the top of the FS tree.
1394
1395   - Avoid putting the directory path on the libraries in the LIBS
1396     construction variable.
1397
1398   - Added a GetBuildPath() method to return the full path to the
1399     Node for a specified string.
1400
1401   - Fixed variable substitution in CPPPATH and LIBPATH.
1402
1403   From Steven Knight:
1404
1405   - Fixed the version comment in the scons.bat (the UNIX geek used
1406     # instead of @rem).
1407
1408   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
1409
1410   - Provide make-like warning message for "command not found" and
1411     similar errors.
1412
1413   - Added an EXAMPLES section to the man page.
1414
1415   - Make Default() targets properly relative to their SConscript
1416     file's subdirectory.
1417
1418   From Anthony Roach:
1419
1420   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
1421
1422   - Fixed SCONS_LIB_DIR to work as documented.
1423
1424   - Made Default() accept Nodes as arguments.
1425
1426   - Changed Export() to make it easier to use.
1427   
1428   - Added the Import() and Return() methods.
1429
1430
1431
1432 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
1433
1434 A brief overview of important functionality available in release 0.01:
1435
1436   - C and C++ compilation on POSIX and Windows NT.
1437
1438   - Automatic scanning of C/C++ source files for #include dependencies.
1439
1440   - Support for building libraries; setting construction variables
1441     allows creation of shared libraries.
1442
1443   - Library and C preprocessor search paths.
1444
1445   - File changes detected using MD5 signatures.
1446
1447   - User-definable Builder objects for building files.
1448
1449   - User-definable Scanner objects for scanning for dependencies.
1450
1451   - Parallel build (-j) support.
1452
1453   - Dependency cycles detected.
1454
1455   - Linux packages available in RPM and Debian format.
1456
1457   - Windows installer available.