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