Refactor BuilderBase.__call__() to separate node creation from attribute initialization.
[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   From Anthony Roach:
34
35   - Add a "duplicate" keyword argument to BuildDir() that can be set
36     to prevent linking/copying source files into build directories.
37
38   - Add a "--debug=tree" option to print an ASCII dependency tree.
39
40   - Fetch the location of the Microsoft Visual C++ compiler(s) from
41     the Registry, instead of hard-coding the location.
42     
43   - Made Scanner objects take Nodes, not path names.
44     
45   - Have the C Scanner cache the #include file names instead of
46     (re-)scanning the file each time it's called.
47
48   - Created a separate class for parent "nodes" of file system roots,
49     eliminating the need for separate is-parent-null checks everywhere.
50     
51   - Removed defined __hash__() and __cmp() methods from FS.Entry, in
52     favor of Python's more efficient built-in identity comparisons.
53
54
55
56 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
57
58   From Charles Crain:
59
60   - Added the Install(), BuildDir(), and Export() methods.
61
62   - Fix the -C option by delaying setting the top of the FS tree.
63
64   - Avoid putting the directory path on the libraries in the LIBS
65     construction variable.
66
67   - Added a GetBuildPath() method to return the full path to the
68     Node for a specified string.
69
70   - Fixed variable substitution in CPPPATH and LIBPATH.
71
72   From Steven Knight:
73
74   - Fixed the version comment in the scons.bat (the UNIX geek used
75     # instead of @rem).
76
77   - Fix to setup.py so it doesn't require a sys.argv[1] argument.
78
79   - Provide make-like warning message for "command not found" and
80     similar errors.
81
82   - Added an EXAMPLES section to the man page.
83
84   - Make Default() targets properly relative to their SConscript
85     file's subdirectory.
86
87   From Anthony Roach:
88
89   - Documented CXXFLAGS, CXXCOM, and CPPPATH.
90
91   - Fixed SCONS_LIB_DIR to work as documented.
92
93   - Made Default() accept Nodes as arguments.
94
95   - Changed Export() to make it easier to use.
96   
97   - Added the Import() and Return() methods.
98
99
100
101 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
102
103 A brief overview of important functionality available in release 0.01:
104
105   - C and C++ compilation on POSIX and Windows NT.
106
107   - Automatic scanning of C/C++ source files for #include dependencies.
108
109   - Support for building libraries; setting construction variables
110     allows creation of shared libraries.
111
112   - Library and C preprocessor search paths.
113
114   - File changes detected using MD5 signatures.
115
116   - User-definable Builder objects for building files.
117
118   - User-definable Scanner objects for scanning for dependencies.
119
120   - Parallel build (-j) support.
121
122   - Dependency cycles detected.
123
124   - Linux packages available in RPM and Debian format.
125
126   - Windows installer available.