Collect common type-checking logic in SCons.Util.
[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.03 - 
12
13   From Charles Crain:
14
15   - Performance improvements in the Node.FS and Sig.Calculator classes.
16
17   From Steven Knight:
18
19   - Search both /usr/lib and /usr/local/lib for scons directories by
20     adding them both to sys.path, with whichever is in sys.prefix first.
21
22   - Fix interpreting strings of multiple white-space separated file names
23     as separate file names, allowing prefixes and suffixes to be appended
24     to each individually.
25
26   - Refactor to move CompositeBuilder initialization logic from the
27     factory wrapper to the __init__() method, and allow a Builder to
28     have both an action and a src_builder (or array of them).
29
30   - Refactor BuilderBase.__call__() to separate Node creation/lookup
31     from initialization of the Node's builder information.
32
33   - Add a CFile Builder object that supports turning lex (.l) and
34     yacc (.y) files into .c files.
35
36   - Document: variable interpretation attributes; how to propogate
37     the user's environment variables to executed commands; how to
38     build variants in multiple BuildDirs.
39
40   - Collect String, Dict, and List type-checking in common utility
41     routines so we can accept User{String,Dict,List}s all over.
42
43   From Anthony Roach:
44
45   - Add a "duplicate" keyword argument to BuildDir() that can be set
46     to prevent linking/copying source files into build directories.
47
48   - Add a "--debug=tree" option to print an ASCII dependency tree.
49
50   - Fetch the location of the Microsoft Visual C++ compiler(s) from
51     the Registry, instead of hard-coding the location.
52     
53   - Made Scanner objects take Nodes, not path names.
54     
55   - Have the C Scanner cache the #include file names instead of
56     (re-)scanning the file each time it's called.
57
58   - Created a separate class for parent "nodes" of file system roots,
59     eliminating the need for separate is-parent-null checks everywhere.
60     
61   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
62     favor of Python's more efficient built-in identity comparisons.
63
64
65
66 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
67
68   From Charles Crain:
69
70   - Added the Install(), BuildDir(), and Export() methods.
71
72   - Fix the -C option by delaying setting the top of the FS tree.
73
74   - Avoid putting the directory path on the libraries in the LIBS
75     construction variable.
76
77   - Added a GetBuildPath() method to return the full path to the
78     Node for a specified string.
79
80   - Fixed variable substitution in CPPPATH and LIBPATH.
81
82   From Steven Knight:
83
84   - Fixed the version comment in the scons.bat (the UNIX geek used
85     # instead of @rem).
86
87   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
88
89   - Provide make-like warning message for "command not found" and
90     similar errors.
91
92   - Added an EXAMPLES section to the man page.
93
94   - Make Default() targets properly relative to their SConscript
95     file's subdirectory.
96
97   From Anthony Roach:
98
99   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
100
101   - Fixed SCONS_LIB_DIR to work as documented.
102
103   - Made Default() accept Nodes as arguments.
104
105   - Changed Export() to make it easier to use.
106   
107   - Added the Import() and Return() methods.
108
109
110
111 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
112
113 A brief overview of important functionality available in release 0.01:
114
115   - C and C++ compilation on POSIX and Windows NT.
116
117   - Automatic scanning of C/C++ source files for #include dependencies.
118
119   - Support for building libraries; setting construction variables
120     allows creation of shared libraries.
121
122   - Library and C preprocessor search paths.
123
124   - File changes detected using MD5 signatures.
125
126   - User-definable Builder objects for building files.
127
128   - User-definable Scanner objects for scanning for dependencies.
129
130   - Parallel build (-j) support.
131
132   - Dependency cycles detected.
133
134   - Linux packages available in RPM and Debian format.
135
136   - Windows installer available.