Strip $(-$) bracketed text from command lines.
[scons.git] / src / CHANGES.txt
1 # Copyright (c) 2001 Steven Knight
2 # __FILE__ __REVISION__ __DATE__ __DEVELOPER__
3
4
5                  SCons - a software construction tool
6
7                             Change Log
8
9
10
11 RELEASE 0.04 - 
12
13   From Charles Crain:
14
15   - Significant performance improvements in the Node.FS and
16     Scanner subsystems.
17
18   From Steven Knight:
19
20   - Fix using a directory as a Default(), and allow Default() to
21     support white space in file names for strings in arrays.
22
23   - Man page updates:  corrected some mistakes, documented various
24     missing Environment methods, alphabetized the construction
25     variables and other functions, defined begin and end macros for
26     the example sections, regularized white space separation.
27
28   - Function action fixes:  None is now a successful return value.
29     Exceptions are now reported.  Document function actions.
30
31   - Add 'Action' and 'Scanner' to the global keywords so SConscript
32     files can use them too.
33
34   - Removed the Wrapper class between Nodes and Walkers.
35
36   - Add examples using Library, LIBS, and LIBPATH.
37
38   - The C Scanner now always returns a sorted list of dependencies
39     so order changes don't cause unnecessary rebuilds.
40
41   - Strip $(-$) bracketed text from command lines.  Use this to
42     surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
43     to changes to -I or -L options.
44
45   From Steve Leblanc:
46
47   - Add var=value command-line arguments.
48
49
50
51 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
52
53   From Charles Crain:
54
55   - Performance improvements in the Node.FS and Sig.Calculator classes.
56
57   - Add the InstallAs() method.
58
59   - Execute commands through an external interpreter (sh, cmd.exe, or
60     command.com) to handle redirection metacharacters.
61
62   - Allow the user to supply a command handler.
63
64   From Steven Knight:
65
66   - Search both /usr/lib and /usr/local/lib for scons directories by
67     adding them both to sys.path, with whichever is in sys.prefix first.
68
69   - Fix interpreting strings of multiple white-space separated file names
70     as separate file names, allowing prefixes and suffixes to be appended
71     to each individually.
72
73   - Refactor to move CompositeBuilder initialization logic from the
74     factory wrapper to the __init__() method, and allow a Builder to
75     have both an action and a src_builder (or array of them).
76
77   - Refactor BuilderBase.__call__() to separate Node creation/lookup
78     from initialization of the Node's builder information.
79
80   - Add a CFile Builder object that supports turning lex (.l) and
81     yacc (.y) files into .c files.
82
83   - Document: variable interpretation attributes; how to propogate
84     the user's environment variables to executed commands; how to
85     build variants in multiple BuildDirs.
86
87   - Collect String, Dict, and List type-checking in common utility
88     routines so we can accept User{String,Dict,List}s all over.
89
90   - Put the Action factory and classes into their own module.
91
92   - Use one CPlusPlusAction in the Object Builder's action dictionary,
93     instead of letting it create multiple identical instances.
94
95   - Document the Install() and InstallAs() methods.
96
97   From Steve Leblanc:
98
99   - Require that a Builder be given a name argument, supplying a
100     useful error message when it isn't.
101
102   From Anthony Roach:
103
104   - Add a "duplicate" keyword argument to BuildDir() that can be set
105     to prevent linking/copying source files into build directories.
106
107   - Add a "--debug=tree" option to print an ASCII dependency tree.
108
109   - Fetch the location of the Microsoft Visual C++ compiler(s) from
110     the Registry, instead of hard-coding the location.
111     
112   - Made Scanner objects take Nodes, not path names.
113     
114   - Have the C Scanner cache the #include file names instead of
115     (re-)scanning the file each time it's called.
116
117   - Created a separate class for parent "nodes" of file system roots,
118     eliminating the need for separate is-parent-null checks everywhere.
119     
120   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
121     favor of Python's more efficient built-in identity comparisons.
122
123
124
125 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
126
127   From Charles Crain:
128
129   - Added the Install(), BuildDir(), and Export() methods.
130
131   - Fix the -C option by delaying setting the top of the FS tree.
132
133   - Avoid putting the directory path on the libraries in the LIBS
134     construction variable.
135
136   - Added a GetBuildPath() method to return the full path to the
137     Node for a specified string.
138
139   - Fixed variable substitution in CPPPATH and LIBPATH.
140
141   From Steven Knight:
142
143   - Fixed the version comment in the scons.bat (the UNIX geek used
144     # instead of @rem).
145
146   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
147
148   - Provide make-like warning message for "command not found" and
149     similar errors.
150
151   - Added an EXAMPLES section to the man page.
152
153   - Make Default() targets properly relative to their SConscript
154     file's subdirectory.
155
156   From Anthony Roach:
157
158   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
159
160   - Fixed SCONS_LIB_DIR to work as documented.
161
162   - Made Default() accept Nodes as arguments.
163
164   - Changed Export() to make it easier to use.
165   
166   - Added the Import() and Return() methods.
167
168
169
170 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
171
172 A brief overview of important functionality available in release 0.01:
173
174   - C and C++ compilation on POSIX and Windows NT.
175
176   - Automatic scanning of C/C++ source files for #include dependencies.
177
178   - Support for building libraries; setting construction variables
179     allows creation of shared libraries.
180
181   - Library and C preprocessor search paths.
182
183   - File changes detected using MD5 signatures.
184
185   - User-definable Builder objects for building files.
186
187   - User-definable Scanner objects for scanning for dependencies.
188
189   - Parallel build (-j) support.
190
191   - Dependency cycles detected.
192
193   - Linux packages available in RPM and Debian format.
194
195   - Windows installer available.