3 SCons - a software construction tool
7 NOTE: The 4.0.0 Release of SCons dropped Python 2.7 Support
9 RELEASE VERSION/DATE TO BE FILLED IN LATER
12 - Fix dvipdf test failure due to passing incorrect flag to dvipdf.
15 - Internal MSVC and test updates: Rework the msvc installed versions cache so that it
16 is not exposed externally and update external references accordingly.
17 - Modify the MSCommon internal-use only debug logging records to contain the correct relative
18 file path when the debug function is called from outside the MSCommon module.
21 - Fix yacc tool, not respecting YACC set at time of tool initialization.
22 - Refactor SCons.Tool to move all common shared and loadable module linking logic to SCons.Tool.linkCommon
25 - Fix minor bug affecting SCons.Node.FS.File.get_csig()'s usage of the MD5 chunksize.
26 User-facing behavior does not change with this fix (GH Issue #3726).
29 - Fix Zip tool to respect ZIPCOMSTR. Previously all zip builder calls would yield something
30 like zip(["test.zip"], ["zip_scons.py"]) and ignore ZIPCOMSTR if ZIPCOM and ZIPCOMSTR
31 weren't set after the Environment/Tool is initialized. (Explained in PR #3659)
34 - Fix issue where java parsed a class incorrectly from lambdas used after a new.
37 - Complete tests for Dictionary, env.keys() and env.values() for
38 OverrideEnvironment. Enable env.setdefault() method, add tests.
39 - Raise an error if an option (not otherwise consumed) is used which
40 looks like an abbreviation of one one added by AddOption. (#3653)
41 - Tool module not found will now raise a UserError to more clearly indicate this is
42 probably an SConscript problem, and to make the traceback more relevant.
43 - Fix three issues with MergeFlags:
44 - Signature/return did not match documentation or existing usage - the implementation
45 now no longer returns the passed env
46 - merging --param arguments did not work (issue #3107);
47 - passing a dict to merge where the values are strings failed (issue #2961).
48 - Include previously-excluded SideEffect section in User Guide.
51 - Suppress missing SConscript deprecation warning if `must_exist=False`
55 - Fix using TEMPFILE in multiple actions in an action list.
59 RELEASE 4.0.1 - Mon, 16 Jul 2020 16:06:40 -0700
62 - Fix fortran tools to set SHFORTRAN variables to $FORTRAN, similarly SHF77, SHF90, SHF95,
63 SHF03 and SHF08 will default to the variables $F77, $F90, $F95, $F03 and $F08 respectively.
64 If you were depending on changing the value of FORTRAN (or $F[0-9][0-9]) having no effect
65 on the value of SHFORTRAN, this change will break that. The values of FORTRAN, F77, F90,
66 F95, F03, F08 and SHFORTRAN, SHF77 (etc.) now are not overridden in generate if alredy set
68 - Fix subprocess execution of 'lslpp' on AIX to produce text standard i/o.
69 - Re-do the fix for suncxx tool (Oracle Studio compiler) now that only Python 3 is supported,
70 to avoid decoding errors.
73 - Added Environment() variable TEMPFILEDIR which allows setting the directory which temp
74 files createdby TEMPFILEMUNGE are created in.
77 - Added method on Node to test if its node used in SConf. (Github Issue #3626)
81 RELEASE 4.0.0 - Sat, 04 Jul 2020 12:00:27 +0000
84 - Updated documentation toolchain to work properly under Python3, also
85 removed libxslt support from the Docbook Tool. (issue #3580)
86 - Added Docker images for building and testing SCons. (issue #3585)
89 - Improve Visual Studio solution/project generation code to add support
90 for a per-variant cppflags. Intellisense can be affected by cppflags,
91 this is especially important when it comes to /std:c++* which specifies
92 what C++ standard version to target. SCons will append /Zc:__cplusplus
93 to the project's cppflags when a /std:c++* flag is found as this is
94 required for intellisense to use the C++ standard version from cppflags.
97 - Specify UTF-8 encoding when opening Java source file as text. By default, encoding is the output
98 of locale.getpreferredencoding(False), and varies by platform.
101 - MSVC updates: When there are multiple product installations (e.g, Community and
102 Build Tools) of MSVC 2017 or MSVC 2019, an Enterprise, Professional,
103 or Community installation will be selected before a Build Tools installation when
104 "14.1" or "14.2" is requested, respectively. (GH Issue #3699).
105 - MSVC updates: When there are multiple product installations of MSVC 2017 (e.g.,
106 Community and Express), 2017 Express is no longer returned when "14.1" is
107 requested. Only 2017 Express will be returned when "14.1Exp" is requested.
109 - MSVC updates: An MSVC 6.0 installation now appears in the installed versions list
110 when msvc debug output is enabled (GH Issue #3699).
111 - MSVS test updates: Tests for building a program using generated MSVS project and
112 solution files using MSVS 2015 and later now work as expected on x86 hosts.
113 - Test update: Reduce the number of "false negative" test failures for the interactive
114 configuration test (test/interactive/configure.py).
115 - MSVS update: Fix the development environment path for MSVS 7.0.
118 - Fix broken clang + MSVC 2019 combination by using MSVC configuration logic to
119 propagate'VCINSTALLDIR' and 'VCToolsInstallDir' which clang tools use to locate
120 header files and libraries from MSVC install. (Fixes GH Issue #3480)
121 - Added C:\msys64\mingw64\bin to default mingw and clang windows PATH's. This
122 is a reasonable default and also aligns with changes in Appveyor's VS2019 image.
123 - Drop support for Python 2.7. SCons will be Python 3.5+ going forward.
124 - Change SCons.Node.ValueWithMemo to consider any name passed when memoizing Value() nodes
125 - Fix Github Issue #3550 - When using Substfile() with a value like Z:\mongo\build\install\bin
126 the implementation using re.sub() would end up interpreting the string and finding regex escape
127 characters where it should have been simply replacing existing text. Switched to use string.replace().
128 - Fix Github Issue #2904 - Provide useful error message when more than one Configure Contexts are opened.
129 Only one open is allowed. You must call conf.Finish() to complete the currently open one before creating another
130 - Add msys2 installed mingw default path to PATH for mingw tool.
131 - C:\msys64\mingw64\bin
132 - Purge obsolete internal build and tooling scripts
133 - Allow user specified location for vswhere.exe specified by VSWHERE.
134 NOTE: This must be set at the time the 'msvc' 'msvs' and/or 'mslink' tool(s) are initialized to have any effect.
135 - Resolve Issue #3451 and Issue #3450 - Rewrite SCons setup.py and packaging. Move script logic to entry points so
136 package can create scripts which use the correct version of Python.
137 - Resolve Issue #3248 - Removing '-Wl,-Bsymbolic' from SHLIBVERSIONFLAGS
138 NOTE: If your build depends on the above you must now add to your SHLIBVERSIONFLAGS
139 - Speedup bin/docs-update-generated by caching parsed docbook schema. (60x speedup)
140 - Reorganized source tree. Moved src/engine/SCons to SCons to be more in line with current Python source
141 tree organization practices.
142 - Renamed as.py to asm.py and left redirecting tool. 'as' is a reserved word and so
143 changing the name was required as we wanted to import symbols for use in compilation_db
145 - Add CompilationDatabase() builder in compilation_db tool. Contributed by MongoDB.
146 Setting COMPILATIONDB_USE_ABSPATH to True|False controls whether the files are absolute or relative
147 paths. Address Issue #3693 and #3694 found during development.
148 - Fixed Github Issue 3628 - Hardcoding pickle protocol to 4 (supports python 3.4+)
149 and skipping Python 3.8's new pickle protocol 5 whose main advantage is for out-of-band data buffers.
150 NOTE: If you used Python 3.8 with SCons 3.0.0 or above, you may get a a pickle protocol error. Remove your
151 .sconsign.dblite. You will end up with a full rebuild.
153 From Andrii Doroshenko:
154 - Extended `Environment.Dump()` to select a format to serialize construction variables (pretty, json).
157 - Updated design doc to use the correct syntax for Depends()
160 - Added support for scanning multiple entries in an action string if
161 IMPLICIT_COMMAND_DEPENDENCIES is set to 2 or 'all'. This enables more thorough
162 action scanning where every item in each command line is scanned to determine
163 if it is a non-source and non-target path and added to the list of implicit dependencies
165 - Added support for taking instances of the Value class as implicit
167 - Added new module SCons.Scanner.Python to allow scanning .py files.
168 - Added support for explicitly passing a name when creating Value() nodes. This may be useful
169 when the value can't be converted to a string or if having a name is otherwise desirable.
170 - Fixed usage of abspath and path for RootDir objects on Windows. Previously
171 env.fs.Dir("T:").abspath would return "T:\T:" and now it correctly returns "T:".
173 From Ivan Kravets, PlatformIO
174 - New conditional C Scanner (`SCons.Scanner.C.CConditionalScanner()`)
175 which interprets C/C Preprocessor conditional syntax (#ifdef, #if, #else,
176 #elif, #define, etc.)
177 - Improvements for virtual C Pre-Processor:
178 * Handle UNSIGNED LONG and LONG numeric constants in DEC (keep support for HEX)
179 * Skip unrecognized directives, such as `#if( defined ...)`
180 * Ignore `#include DYNAMIC_INCLUDE` directive that depends on a dynamic
181 macro which is not located in a state TABLE.
182 * Cleanup CPP expressions before evaluating (strip comments, carriage returns)
185 - Added a new flag called "linedraw" for the command line argument "--tree"
186 that instructs scons to use single line drawing characters to draw the dependency tree.
189 - Add no_progress (-Q) option as a set-able option. However, setting it in the
190 SConstruct/SConscript will still cause "scons: Reading SConscript files ..." to be
191 printed, since the option is not set when the build scripts first get read.
192 - Added check for SONAME in environment to setup symlinks correctly (Github Issue #3246)
193 - User callable's called during substition expansion could possibly throw a TypeError
194 exception, however SCons was using TypeError to detect if the callable had a different
195 signature than expected, and would silently fail to report user's exceptions. Fixed to
196 use signature module to detect function signature instead of TypeError. (Github Issue #3654)
197 - Added storage of SConstructs and SConscripts nodes into global set for checking
198 if a given node is a SConstruct/SConscript.
199 Added new node function SCons.Node.is_sconscript(self) (Github Issue #3625)
202 - Fix Issue #3469 - Fixed improper reuse of temporary and compiled files by Configure when changing
203 the order and/or number of tests. This is done by using the hash of the generated temporary files
204 content and (For the target files) the hash of the action.
205 So where previously files would be named:
206 - config_1.c, config_1.o, config_1
207 The will now be named (For example)
208 - conftest_68b375d16e812c43e6d72d6e93401e7c_0.c,
209 conftest_68b375d16e812c43e6d72d6e93401e7c_0_5713f09fc605f46b2ab2f7950455f187.o
211 conftest_68b375d16e812c43e6d72d6e93401e7c_0.o
212 conftest_68b375d16e812c43e6d72d6e93401e7c_0_5713f09fc605f46b2ab2f7950455f187 (for executable)
214 From Mathew Robinson:
215 - Improve performance of Subst by preventing unnecessary frame
216 allocations by no longer defining the *Subber classes inside of their
217 respective function calls.
218 - Improve performance of Subst in some cases by preventing
219 unnecessary calls to eval when a token is surrounded in braces
220 but is not a function call.
221 - Improve performance of subst by removing unnecessary recursion.
222 - Cleanup dangling symlinks before running builders (Issue #3516)
225 - Remove deprecated SourceCode
226 - str.format syntax errors fixed
227 - a bunch of linter/checker syntax fixups
228 - Convert remaining uses of insecure/deprecated mktemp method.
229 - Clean up some duplications in manpage. Clarify portion of manpage on Dir and File nodes.
230 - Reduce needless list conversions.
231 - Fixed regex in Python scanner.
232 - Accommodate VS 2017 Express - it's got a more liberal license then VS
233 Community, so some people prefer it (from 2019, no more Express)
234 - vswhere call should also now work even if programs aren't on the C: drive.
235 - Add an alternate warning message if cl.exe is not found and msvc config
236 cache is in use (SCONS_CACHE_MSVC_CONFIG was given) - config cache
238 - Fixed bug where changing TEXTFILESUFFIX would cause Substfile() to rebuild. (Github Issue #3540)
239 - Script/Main.py now uses importlib instead of imp module.
240 - Drop some Python 2-isms.
241 - MSVC updates: pass on VSCMD_DEBUG and VSCMD_SKIP_SENDTELEMETRY to msvc
242 tool setup if set in environment. Add Powershell to default env
243 (used to call telemetry script).
244 - Microsoft Visual Studio - switch to using uuid module to generate GUIDs rather than hand rolled
245 method using md5 directly.
246 NOTE: This change affects the following builders' output. If your build depends on the output of these builders
247 you will likely see a rebuild.
248 * Package() (with PACKAGETYPE='msi')
251 - Docbook builder provides a fallback if lxml fails to generate
252 a document with tostring().
253 - Fix description of ARCOMSTR constr. var. (issue 3636). Previously the text was a copy of ASCOMSTR which
254 has different function.
255 - Update xml files in SCons to reflect changed relative paths after
256 code restructuring (src/engine/SCons -> SCons)
257 - Preliminary Python 3.9 support - elimination of some warnings.
258 - Drop the with_metaclass jig which was designed to let class
259 definitions using a metaclass be written the same for Py2/Py3.
260 - Bump python_version_unsupported (and deprecated) to indicate 3.5
261 is lowest supported Python.
262 - ParseFlags should not modify the user's passed in dict in case it's
263 a compound data structure (e.g. values are lists) (issue #3665)
264 - In Py3 classes no longer need to be listed as deriving from object.
265 - Remove deprecated check for Task subclasses needing a needs_execute
266 method - this is now enforced via an abstract base class, so the
267 check and test is no longer needed.
268 - Close various logfiles (trace, cache, taskmastertrace, configure)
269 when done using atexit calls.
270 - Rebase forked copy of shutil.copytree to Python 3.7 stlib version.
271 - Significant rework of documentation: API docs are now generated
272 using Sphinx; manpage and user guide now use more "standard"
273 markup elements (which could facilitate later conversion to a
274 different doc format, should that choice be made); significant
275 rewordings in manpage. Manpage Examples moved to an external
276 repository / website (scons-cookbook.readthedocs.io).
277 - Clean up test harness and tests' use of subdir, file_fixture and
279 - SubstitutionEnvironment and OverrideEnvironment now have keys()
280 and values() methods to better emulate a dict (already had items()).
281 - Rename internal Warning base class to SConsWarning to avoid any
282 possible confusion with Python's own Warning class.
285 RELEASE 3.1.2 - Mon, 17 Dec 2019 02:06:27 +0000
287 From Edoardo Bezzeccheri
288 - Added debug option "action_timestamps" which outputs to stdout the absolute start and end time for each target.
291 - Fix suncxx tool (Oracle Studio compiler) when using Python 3. Previously would throw an exception.
292 Resolved by properly handling tool version string output as unicode.
295 - Resolved a typo in engine.SCons.Tool
298 - Resolved a race condition in multithreaded Windows builds with Python 2
299 in the case where a child process is spawned while a Python action has a
300 file open. Original author: Ryan Beasley.
301 - Added memoization support for calls to Environment.Value() in order to
302 improve performance of repeated calls.
306 - Update Command() function to accept target_scanner, source_factory, and target_factory arguments.
307 This makes Command act more like a one-off builder.
310 - Added support for "-imacros" to ParseFlags
313 - Fix CheckFunc detection code for Visual 2019. Some functions
314 (e.g. memmove) were incorrectly recognized as not available.
317 - Fix stacktrace when using SCons with Python 3.5+ and SunOS/Solaris related tools.
319 From Philipp Maierhöfer:
320 - Avoid crash with UnicodeDecodeError on Python 3 when a Latex log file in
321 non-UTF-8 encoding (e.g. containing umlauts in Latin-1 encoding when
322 the fontenc package is included with \usepackage[T1]{fontenc}) is read.
324 From Mathew Robinson:
325 - Improved threading performance by ensuring NodeInfo is shared
326 across threads. Results in ~13% improvement for parallel builds
327 (-j# > 1) with many shared nodes.
328 - Improve performance of Entry.disambiguate() by making check for
329 most common case first, preventing unnecessary IO.
330 - Improved DAG walk performance by reducing unnecessary work when
331 there are no un-visited children.
334 - Replace instances of string find method with "in" checks where
335 the index from find() was not used.
336 - CmdStringHolder fix from issue #3428
337 - Turn previously deprecated debug options into failures:
338 --debug=tree, --debug=dtree, --debug=stree, --debug=nomemoizer.
339 - Experimental New Feature: Enable caching MSVC configuration
340 If SCONS_CACHE_MSVC_CONFIG shell environment variable is set,
341 SCons will cache the results of past calls to vcvarsall.bat to
342 a file; integrates with existing memoizing of such vars.
343 On vs2019 saves 5+ seconds per SCons invocation, which really
344 helps test suite runs.
345 - Remove deprecated SourceSignatures, TargetSignatures
346 - Remove deprecated Builder keywords: overrides and scanner
347 - Remove deprecated env.Copy
348 - Remove deprecated BuildDir plus SConscript keyword build_dir
349 - A number of documentation improvements.
352 RELEASE 3.1.1 - Mon, 07 Aug 2019 20:09:12 -0500
355 - Remove obsoleted references to DeciderNeedsNode which could cause crash when using --debug=explain
358 - Add Fix and test for crash in 3.1.0 when using Decider('MD5-timestamp') and --debug=explain
361 - Added -fmerge-all-constants to flags that get included in both CCFLAGS and LINKFLAGS.
363 From Mathew Robinson:
364 - Fix issue #3415 - Update remaining usages of EnvironmentError to SConsEnvironmentError
365 this patch fixes issues introduced in 3.1.0 where any of the
366 following would cause SCons to error and exit:
367 - CacheDir not write-able
368 - JSON encoding errors for CacheDir config
369 - JSON decoding errors for CacheDir config
372 RELEASE 3.1.0 - Mon, 20 Jul 2019 16:59:23 -0700
375 - Code to supply correct version-specifier argument to vswhere for
376 VS version selection.
379 - Enhanced --debug=explain output. Now the separate components of the dependency list are split up
382 scons: rebuilding `file3' because:
383 the dependency order changed:
390 Old:/usr/bin/python New:/usr/bin/python
391 - Fix Issue #3350 - SCons Exception EnvironmentError is conflicting with Python's EnvironmentError.
392 - Fix spurious rebuilds on second build for cases where builder has > 1 target and the source file
393 is generated. This was causing the > 1th target to not have it's implicit list cleared when the source
394 file was actually built, leaving an implicit list similar to follows for 2nd and higher target
395 ['/usr/bin/python', 'xxx', 'yyy', 'zzz']
396 This was getting persisted to SConsign and on rebuild it would be corrected to be similar to this
397 ['zzz', 'yyy', 'xxx', '/usr/bin/python']
398 Which would trigger a rebuild because the order changed.
399 The fix involved added logic to mark all shared targets as peers and then ensure they're implicit
400 list is all cleared together.
401 - Fix Issue #3349 - SCons Exception EnvironmentError is conflicting with Python's EnvironmentError.
402 Renamed to SConsEnvironmentError
403 - Fix Issue #3350 - mslink failing when too many objects. This is resolved by adding TEMPFILEARGJOIN variable
404 which specifies what character to join all the argements output into the tempfile. The default remains a space
405 when mslink, msvc, or mslib tools are loaded they change the TEMPFILEARGJOIN to be a line separator (\r\n on win32)
406 - Fix performance degradation for MD5-timestamp decider. NOTE: This changes the Decider() function arguments.
408 def my_decider(dependency, target, prev_ni):
410 def my_decider(dependency, target, prev_ni, repo_node):
411 Where repo_node is the repository (or other) node to use to check if the node is out of date instead of dependency.
414 - Additional fix to issue #3135 - Also handle 'pure' and 'elemental' type bound procedures
415 - Fix issue #3135 - Handle Fortran submodules and type bound procedures
418 - Upgraded and improved Visual Studio solution/project generation code using the MSVSProject builder.
419 - Added support for Visual Studio 2017 and 2019.
420 - Added support for the following per-variant parameters to the builder:
421 - cpppaths: Provides per-variant include paths.
422 - cppdefines: Provides per-variant preprocessor definitions.
424 From Michael Hartmann:
425 - Fix handling of Visual Studio Compilers to properly reject any unknown HOST_PLATFORM or TARGET_PLATFORM
428 - Added support for Visual Studio 2019 toolset.
430 From Mathew Robinson:
431 - Update cache debug output to include cache hit rate.
432 - No longer unintentionally hide exceptions in Action.py
433 - Allow builders and pseudo-builders to inherit from OverrideEnvironments
435 From Leonard de Ruijter:
436 - Add logic to derive correct version argument to vswhere
439 - Enable LaTeX scanner to find more than one include per line
442 - scons-time takes more care closing files and uses safer mkdtemp to avoid
443 possible races on multi-job runs.
444 - Use importlib to dynamically load tool and platform modules instead of imp module
445 - sconsign: default to .sconsign.dblite if no filename is specified.
446 Be more informative in case of unsupported pickle protocol (py2 only).
447 - Fix issue #3336 - on Windows, paths were being added to PATH even if
448 tools were not found in those paths.
449 - More fixes for newer Java versions (since 9): handle new jdk directory
450 naming (jdk-X.Y instead of jdkX.Y) on Windows; handle two-digit major
451 version. Docstrings improved.
452 - Fixups for pylint: exception types, redefined functions,
453 globals, etc. Some old code removed to resolve issues (hashlib is
454 always present on modern Pythons; no longer need the code for
455 2.5-and-earlier optparse). cmp is not a builtin function in Py3,
456 drop one (unused) use; replace one. Fix another instance of
457 renaming to SConsEnvironmentError. Trailing whitespace.
458 Consistently use not is/in (if not x is y -> if x is not y).
459 - Add a PY3-only function for setting up the cachedir that should be less
460 prone to races. Add a hack to the PY2 version (from Issue #3351) to
461 be less prone to a race in the check for old-style cache.
462 - Fix coding error in docbook tool only exercised when using python lxml
463 - Recognize two additional GNU compiler header directory options in
464 ParseFlags: -iquote and -idirafter.
465 - Fix more re patterns that contain \ but not specified as raw strings
466 (affects scanners for D, LaTeX, swig)
469 RELEASE 3.0.5 - Mon, 26 Mar 2019 15:04:42 -0700
473 - Fix Issue #3283 - Handle using --config=force in combination with Decider('MD5-timestamp').
474 3.0.2 in fix for issue #2980 added that deciders can throw DeciderNeedsNode exception.
475 The Configure logic directly calls the decider when using --config=force but wasn't handling
476 that exception. This would yield minimally configure tests using TryLink() not running and
477 leaving TypeError Nonetype exception in config.log
478 - Fix Issue #3303 - Handle --config=force overwriting the Environment passed into Configure()'s
479 Decider and not clearing it when the configure context is completed.
480 - Add default paths for yacc tool on windows to include cygwin, mingw, and chocolatey
481 - Fix issue #2799 - Fix mingw tool to respect SHCCCOMSTR, SHLINKCOMSTR and LDMODULECOMSTR
482 - Fix Issue #3329 - Add support for MS SDK V10.0A (which is commonly installed with VS2017)
483 - Fix Issue #3333 - Add support for finding vswhere under 32 bit windows installs.
486 - Update the MSVC tool to include the nologo flag by default in RCFLAGS
489 - Change the default for AppendENVPath to delete_existing=0, so path
490 order will not be changed, unless explicitly set (Issue #3276)
491 - Fixed bug which threw error when running SCons on windows system with no MSVC installed.
492 - Update link tool to convert target to node before accessing node member
493 - Update mingw tool to remove MSVC like nologo CCFLAG
494 - Add default paths for lex tool on windows to include cygwin, mingw, and chocolatey
495 - Add lex construction variable LEXUNISTD for turning off unix headers on windows
496 - Update lex tool to use win_flex on windows if available
499 - Quiet open file ResourceWarnings on Python >= 3.6 caused by
500 not using a context manager around Popen.stdout
501 - Add the textfile tool to the default tool list
502 - Fix syntax on is/is not clauses: should not use with a literal
503 - Properly retrieve exit code when catching SystemExit
504 - scons-time now uses context managers around file opens
505 - Fix regex patterns that were not specified as raw strings
507 From Bernhard M. Wiedemann:
508 - Do not store build host+user name if reproducible builds are wanted
511 RELEASE 3.0.4 - Mon, 20 Jan 2019 22:49:27 +0000
514 - Improve finding of Microsoft compiler: add a 'products' wildcard
515 in case 2017 Build Tools only is installed as it is considered a separate
516 product from the default Visual Studio
517 - Add TEMPFILESUFFIX to allow a customizable filename extension, as
518 described in the patch attached to issue #2431.
519 - scons.py and sconsign.py stopped working if script called as a symlink
520 to location in scons-local location.
521 - Fix issue running scons using a symlink to scons.py in an scons-local dir
522 - Doc updates around Default(), and the various *TARGETS variables.
525 - Improved support for VC14.1 and Visual Studio 2017, as well as arm and arm64 targets.
526 Issues #3268 & Issue #3222
527 - Initial support for ARM targets with Visual Studio 2017 - Issue #3182 (You must set TARGET_ARCH for this to work)
528 - Update TempFileMunge class to use PRINT_CMD_LINE_FUNC
531 - Enhance cpp scanner regex logic to detect if/elif expressions without whitespaces but
532 parenthesis like "#if(defined FOO)" or "#elif!(BAR)" correctly.
535 RELEASE 3.0.3 - Mon, 07 Jan 2019 20:05:22 -0400
536 NOTE: 3.0.2 release was dropped because there was a packaging bug. Please consider all 3.0.2
540 - Fixes to packaging logic. Ensuring the SCons.Tool.clangCommon module is added
541 to the release packages.
542 - Modify scons.bat script to check for scons python script without .py extension if no file
543 scons.py exists. This enables an all platform wheel to work.
546 - Update doc examples to work with Python 3.5+: map() now returns an iterable instead of a list.
549 RELEASE 3.0.2 - Mon, 31 Dec 2018 16:00:12 -0700
551 From Bernard Blackham:
552 - Fixed handling of side-effects in task master (fixes #3013).
555 - Remove long deprecated SCons.Options code and tests. This removes BoolOption,EnumOption,
556 ListOption,PackageOption, and PathOption which have been replaced by *Variable() many years ago.
557 - Re-Enable parallel SCons (-j) when running via Pypy
558 - Move SCons test framework files to testing/framework and remove all references to QMtest.
559 QMTest has not been used by SCons for some time now.
560 - Updated logic for mingw and clang on win32 to search default tool install paths if not
561 found in normal SCons PATH. If the user specifies PATH or tool specific paths they
562 will be used and the default paths below will be ignored.
563 - Default path for clang/clangxx : C:\Program Files\LLVM\bin
564 - Default path for mingw : C:\MinGW\bin and/or C:\mingw-w64\*\mingw64\bin
565 - Key program to locate mingw : mingw32-make (as the gcc with mingw prefix has no fixed name)
566 - Fixed issue causing stack trace when python Action function contains a unicode string when being
568 - Add alternate path to QT install for Centos in qt tool: /usr/lib64/qt-3.3/bin
569 - Fix Java tools to search reasonable default paths for Win32, Linux, macOS. Add required paths
570 for swig and java native interface to JAVAINCLUDES. You should add these to your CPPPATH if you need
571 to compile with them. This handles spaces in paths in default Java paths on windows.
572 - Added more java paths to match install for Centos 7 of openjdk
573 - Fix new logic which populates JAVAINCLUDES to handle the case where javac is not found.
574 - Fix GH Issue #2580 - # in FRAMEWORKPATH doesn't get properly expanded. The # is left in the
576 - Fix issue #2980 with credit to Piotr Bartosik (and William Blevins). This is an issue where using
577 TimeStamp-MD5 Decider and CacheDir can yield incorrect md5's being written into the .sconsign.
578 The difference between Piotr Bartosik's patch and the current code is that the more complicated
579 creation of file to csig map is only done when the count of children for the current node doesn't
580 match the previous count which is loaded from the sconsign.
581 - Fix issue # 3106 MSVC if using MSVC_BATCH and target dir had a space would fail due to quirk in
582 MSVC's handling of escaped targetdirs when batch compiling.
583 - Fix GH Issue #3141 unicode string in a TryAction() with python 2.7 crashes.
584 - Fix GH Issue #3212 - Use of Py3 and CacheDir + Configure's TryCompile (or likely and Python Value Nodes)
585 yielded trying to combine strings and bytes which threw exception.
586 - Fix GH Issue #3225 SCons.Util.Flatten() doesn't handle MappingView's produced by dictionary as return
587 values from dict().{items(), keys(), values()}.
588 - Fix GH Issue #3241 - Properly support versioned shared libraries for MacOS. We've also introduced two
589 new env variables APPLELINK_CURRENT_VERSION and APPLELINK_COMPATIBILITY_VERSION which will specify
590 what is passed to the linkers -current_version and -compatibility_version flags. If not specified
591 they will be derived from SHLIBVERSION as such:
592 - APPLELINK_CURRENT_VERSION = SHLIBVERSION
593 - APPLELINK_COMPATIBILITY_VERSION = all but the last digit in SHLIBVERSION with .0 appended.
594 Note that the values of the above will be validated. Valid format for either APPLELINK variable is
595 X[.Y[.Z]] where 0 <= X <= 65535, 0 <= Y <= 255, 0 <= Z <= 255.
596 The new variables have been added to the documents and should show up in user guide and manpage.
597 - Fix GH Issue #3136 no longer wrap io.{BufferedReader,BufferedWriter,BufferedRWPair,BufferedRandom,TextIOWrapper
598 with logic to set HANDLE_FLAG_INHERIT flag on the file handle. Python 3.4+ automatically sets this according
599 to Python docs: https://docs.python.org/3/library/os.html#fd-inheritance
602 - Fix the PATH created by scons.bat (and other .bat files) to provide a normalized
603 PATH. Some pythons in the 3.6 series are no longer able to handle paths which
604 have ".." in them and end up crashing. This is done by cd'ing into the directory
605 we want to add to the path and then using %CD% to give us the normalized directory
606 See bug filed under Python 3.6: https://bugs.python.org/issue32457.
607 Note: On Win32 PATH's which have not been normalized may cause undefined behavior
608 by other executables being run by SCons (or any subprocesses of executables being run by SCons).
609 Resolving this issue should eliminate that possibility going forward.
611 From Andrew Featherstone
612 - Removed unused --warn options from the man page and source code.
615 - Fix cpp scanner regex logic to treat ifndef for py3.5+. Previously it was
616 not properly differentiating between if, ifdef, and ifndef.
618 From Philipp Maierhöfer
619 - Added a __hash__ method to the class SCons.Subst.Literal. Required when substituting Literal
620 objects when SCons runs with Python 3.
621 - Added missing FORTRANMODDIRPREFIX to the gfortran tool.
623 From Matthew Marinets:
624 - Fixed an issue that caused the Java emitter to incorrectly parse arguments to constructors that
628 - Fix exception when printing of EnviromentError messages.
629 Specifically, this fixes error reporting of the race condition when
630 initializing the cache which error previously was hidden.
633 - Updated Jar builder to handle nodes and directories better
634 - Updated Jar builder to flatten source list which could contain embedded lists
635 - Removed some magic numbers from jar.py on behalf of Mats Wichmann (mats@linux.com)
636 - Set the pickling protocal back to highest which was causing issues
637 with variant dir tests. This will cause issues if reading sconsigns
638 pickled with the previous lower protocol.
639 - Updated swig to setup default paths for windows
640 - Updated gettext tools to setup default paths for windows with Cygwin/MinGW setups
641 - Add common location for default paths for cygwin and mingw in Platform modules
642 - Updated YACC tool to work on windows with Cygwin/MinGW setups
643 - Set the pickling protocal back to highest which was causing issues
644 with variant dir tests. This will cause issues if reading sconsigns
645 pickled with the previous lower protocol.
646 - Updated FS.py to handle removal of splitunc function from python 3.7
647 - Updated the vc.py to ignore MSVS versions where no compiler could be found
649 From Gary Oberbrunner:
650 - Fix bug when Installing multiple subdirs outside the source tree
651 - fix to_str to handle None without raising exception
652 - Fix -jN for python 3.7
654 From Jonathon Reinhart:
655 - Replace all instances of `int main()` in C code with `int main(void)`.
656 Specifically, this fixes the test cases use by Configure.CheckCC() which
657 would fail when using -Wstrict-prototypes.
659 From Zachary Tessler:
660 - Fix calculation of signatures for FunctionActions that contain list (or set,...)
661 comprehensions whose expressions involve constant literals. Those constants had
662 been ignored in signatures, so changing them did not cause targets to be rebuilt.
665 - In the testing framework, module TestCommon, fixed must_contain(),
666 must_not_contain(), and related methods of TestCommon class to work with
667 substrings located at zero offset.
668 - Added virtualenv support. A new function Virtualenv() determines whether
669 SCons runs in a virtualenv. The search PATH may also be extended to
670 prefer executables from the current virtualenv over the ones provided by
671 base environment. New option --enable-virtualenv provided to import some
672 virtualenv-related variables to SCons and extend every env['ENV']['PATH']
673 automatically. New option --ignore-virtualenv disables this. Two
674 environment variables, SCONS_ENABLE_VIRTUALENV and
675 SCONS_IGNORE_VIRTUALENV are supported for the same purpose.
678 - Add SConstruct.py, Sconstruct.py, sconstruct.py to the search path for the root SConstruct file.
679 Allows easier debugging within Visual Studio
680 - Change setup.py to change the install directory (via pip, or setup.py install) from scons-#.#.#
681 to scons (Yielding <pythondir>/lib/scons/SCons/ instead of <pythondir>/lib/scons/SCons-#.#.#/).
682 This changes SCons to better comply with normal Python installation practices.
685 - Recognize new java 9, 10, 11 (as 9.0 and 10.0, 11.0)
686 - Updated manpage scons.xml to fix a nested list problem
687 - Updated doc terminiology: use prepend instead of append as appropriate
688 - XML validity fixes from SConstruct.py change
689 - Update wiki links to new github location
690 - Update bug links to new github location
691 - Make it easier for SConscript() call to fail on missing script.
692 It was possible to call SCons.Warnings.warningAsException
693 (not documented as a user API) to make all warnings fail. Now
694 SConscript can take an optional must_exist flag which if true fails
695 if the script does not exist. Not failing on missing script is
696 now considered deprecated, and the first instance will print a
697 deprecation message. It is now also possible to flip the scons
698 behavior (which still defaults to warn, not fail) by calling
699 SCons.Script.set_missing_sconscript_error, which is also not a
700 documented interface at the moment.
701 - Convert TestCmd.read to use with statement on open (quiets 17 py3 warnings)
702 - Quiet py3 warning in UtilTests.py
703 - Fix tests specifying octal constants for py3
704 - Fix must_contain tests for py3
705 - RPM package generation:
706 - Fix supplying a build architecture
707 - Disable auto debug package generation on certain rpmbuild versions
708 - Adjust some tests to only supply build-id file on certain rpmbuild versions
709 - Tests now use a file fixture for the repeated (trivial) main.c program.
710 - Document and comment cleanup.
711 - Added new Environment Value X_RPM_EXTRADEFS to supply custom settings
712 to the specfile without adding specific logic for each one to scons.
713 - The test for Python.h needed by swig tests is moved to get_python_platform
714 so it does not have to be repeated in every test; picks up one failure
715 which did not make the (previously needed) check. Windows version
716 of get_python_platform needed some rework in case running in virtualenv.
717 - If test opens os.devnull, register with atexit so file opens do not leak.
718 - Fix bugs in Win32 process spawn logic to handle OSError exception correctly.
719 - Use time.perf_counter instead of time.clock if it exists.
720 time.clock deprecated since py3.3, due to remove in 3.8. deprecation
721 warnings from py3.7 were failing a bunch of tests on Windows since they
722 mess up expected stderr.
723 - Prefer Py3's inspect.getfullargspec over deprecated inspect.getargspec.
724 Switched to "new" (standard in Py2.7) usage of receiving a namedtuple -
725 we were unpacking to a four-tuple, two of the items of which were unused;
726 getfullargspec returns a named tuple with seven elements so it is a
727 cleaner drop-in replacement using the namedtuple.
728 - Updated the test-framework.rst documentation.
729 - Remove obsoleted internal implementaiton of OrderedDict.
730 - Test for tar packaging fixups
731 - Stop using deprecated unittest asserts
732 - messages in strip-install-dir test now os-neutral
733 - Add xz compression format to packaging choices.
734 - Syntax cleanups - trailing blanks, use "is" to compare with None, etc.
735 Three uses of variables not defined are changed.
736 - Some script changes in trying to find scons engine
737 - Update (pep8) configure-cache script, add a --show option.
738 - Fix for a couple of "what if tool not found" exceptions in framework.
739 - Add Textfile/Substfile to default environment. (issue #3147)
740 - sconsign: a couple of python3 fixes; be more tolerant of implicit
741 entries which have no signatures; minor PEP8 changes.
742 - Fix a couple of type mistakes (list-> string, filter type -> list)
743 - Fix a couple of type mistakes in packaging tools: list-> string in msi,
744 filter type -> list in ipk
746 From Bernhard M. Wiedemann:
747 - Update SCons' internal scons build logic to allow overriding build date
748 with SOURCE_DATE_EPOCH for SCons itself.
749 - Change the datestamps in SCons' docs and embedded in code use ISO 8601 format and UTC
752 - Typo in customized decider example in user guide
753 - Replace usage of unittest.TestSuite with unittest.main() (fix #3113)
755 RELEASE 3.0.1 - Mon, 12 Nov 2017 15:31:33 -0700
758 - Jar can take multiple targets, and will make a duplicate jar from the sources for each target
759 - Added some warnings in case the Jar builder makes an implicit target
760 - Added Jar method and changed jar build to be more specific. Jar method will take in
761 directories or classes as source. Added more tests to JAR to ensure the jar was
762 packaged with the correct compiled class files.
763 - Added a No result test case to handle bug which seems unrelated to java in the
764 swig-dependencies.py test, more info here: http://scons.tigris.org/issues/show_bug.cgi?id=2907
765 - Added a travis script to test on ubuntu trusty now that the project is on github
766 so that Continuus Integration tests can be run automatically. It tests most case and considers
767 no result a pass as well. Improving this script can install more dependincies allowing for more
771 - Updated the Jar Builder tool in Tool/__init__.py so that is doesn't force class files as
772 sources, allowing directories to be passed, which was causing test/Java/JAR.py to fail.
775 - Fix issue where code in utility routine to_String_for_subst() had code whose result was never
777 (Found by: James Rinkevich https://pairlist4.pair.net/pipermail/scons-users/2017-October/006358.html )
778 - Fixed Variables.GenerateHelpText() to now use the sort parameter. Due to incorrect 2to3 fixer changes
779 8 years ago it was being used as a boolean parameter. Now you can specify sort to be a callable, or boolean
780 value. (True = normal sort). Manpage also updated.
781 - Fixed Tool loading logic from exploding sys.path with many site_scons/site_tools prepended on py3.
782 - Added additional output with time to process each SConscript file when using --debug=time.
785 - Fixed a regression in scons-3.0.0 where "from __future__ import print_function" was imposed
786 on the scope where SConstruct is executed, breaking existing builds using PY 2.7.
789 - Fix broken subst logic where a string with "$$(abc)" was being treated as "$(abc) and the
790 logic for removing the signature escapes was then failing because there was no closing "$)".
791 This was introduced by a pull request to allow recursive variable evaluations to yield a string
792 such as "$( $( some stuff $) $)".
794 From Zachary Tessler:
795 - Fix incorrect warning for repeated identical builder calls that use overrides
798 RELEASE 3.0.0 - Mon, 18 Sep 2017 08:32:04 -0700
800 NOTE: This is a major release. You should expect that some targets may rebuild when upgrading.
801 Significant changes in some python action signatures. Also switching between PY 2.7 and PY 3.5, 3.6
805 From William Blevins:
806 - Updated D language scanner support to latest: 2.071.1. (PR #1924)
807 https://dlang.org/spec/module.html accessed 11 August 2016
809 - Added support for selective imports: "import A : B, C;" -> A
810 - Added support for renamed imports. "import B = A;" -> A
811 - Supports valid combinations: "import A, B, CCC = C, DDD = D : EEE = FFF;" -> A, B, C, D
813 - May find new (previously missed) Dlang dependencies.
814 - May cause rebuild after upgrade due to dependency changes.
815 - Updated Fortran-related tests to pass under GCC 5/6.
816 - Fixed SCons.Tool.Packaging.rpm.package source nondeterminism across builds.
819 - Removed deprecated tools CVS, Perforce, BitKeeper, RCS, SCCS, Subversion.
820 - Removed deprecated module SCons.Sig
821 - Added prioritized list of xsltproc tools to docbook. The order will now be as
822 follows: xsltproc, saxon, saxon-xslt, xalan (with first being highest priority, first
824 - Fixed MSVSProject example code (http://scons.tigris.org/issues/show_bug.cgi?id=2979)
825 - Defined MS SDK 10.0 and Changed VS 2015 to use SDK 10.0
826 - Changes to Action Function and Action Class signiture creation. NOTE: This will cause rebuilds
827 for many builds when upgrading to SCons 3.0
828 - Fixed Bug #3027 - "Cross Compiling issue: cannot override ranlib"
829 - Fixed Bug #3020 - "Download link in user guide wrong. python setup.py install --version-lib broken"
830 - Fixed Bug #2486 - Added SetOption('silent',True) - Previously this value was not allowed to be set.
831 - Fixed Bug #3040 - Non-unicode character in CHANGES.txt
832 - Fixed Bug #2622 - AlwaysBuild + MSVC regression.
833 - Fixed Bug #3025 - (Credit to Florian : User flow86 on tigris) - Fix typo JAVACLASSSUFIX should have been
838 - Added the capability to build Windows Store Compatible libraries that can be used
839 with Universal Windows Platform (UWP) Apps and published to the store
842 - Add basic support for PyPy (by deleting __slots__ from Node with a
843 metaclass on PyPy); wrap most-used open() calls in 'with' statements to
844 avoid too many open files.
845 - Add __main__.py for `python -m SCons` in case it is on PYTHONPATH.
846 - Always use highest available pickle protocol for efficiency.
847 - Remove unused command line fallback for the zip tool.
850 - Fix issue #2832: Expand construction variables in 'chdir' argument of builders. (PR #463)
851 - Fix issue #2910: Make --tree=all handle Unicode. (PR #427)
852 - Fix issue #2788: Fix typo in documentation example for sconf. (PR #388)
855 - Use memoization to optimize PATH evaluation across all dependencies per
857 - Use set() where it is applicable (PR #344)
860 - Fixed msvs.py for Visual Studio Express editions that would report
861 "Error : ValueError: invalid literal for float(): 10.0Exp".
864 - Update LaTeX scanner to understand \import and related commands
867 - Add support for Visual Studio 2017. This support requires vswhere.exe a helper
868 tool installed with newer installs of 2017. SCons expects it to be located at
869 "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe"
870 It can be downloaded separately at
871 https://github.com/Microsoft/vswhere
874 - Allow nested $( ... $) sections
877 - Fixed the issue with LDMODULEVERSIONFLAGS reported by Tim Jenness
878 (https://pairlist4.pair.net/pipermail/scons-users/2016-May/004893.html).
879 An error was causing "-Wl,Bsymbolic" being added to linker's command-line
880 even when there was no specified value in LDMODULEVERSION and thus no
881 need for the flags to be specified.
882 - Added LoadableModule to the list of global functions (DefaultEnvironment
885 From Manish Vachharajani:
886 - Update debian rules, compat, and control to not use features
887 deprecated or obsolete in later versions of debhelpers
888 - Update python version to 2.7 in debian/control
891 - Fixed PCHPDBFLAGS causing a deprecation warning on MSVC v8 and later when
892 using PCHs and PDBs together.
896 - Added nested / namespace tool support
897 - Added a small fix to the python3 tool loader when loading a tool as a package
898 - Added additional documentation to the user manual on using toolpaths with the environment
899 This includes the use of sys.path to search for tools installed via pip or package managers
900 - Added support for a PyPackageDir function for use with the toolpath
903 - Reordered the default D tools from "dmd, gdc, ldc" to "dmd, ldc, gdc".
904 - Add a ProgramAllAtOnce builder to the dmd, ldc, and gdc tools. (PR #448)
905 - Remove a file name exception for very old Fedora LDC installation.
906 - gdc can now handle building shared objects (tested for version 6.3.0).
907 - Remove establishing the SharedLibrary builder in the dmd, ldc, and gdc
908 tools, must now include the ar tool to get this builder as is required for
909 other compiler tools.
910 - Add clang and clang++ tools based on Paweł Tomulik's work.
912 RELEASE 2.5.1 - Mon, 03 Nov 2016 13:37:42 -0400
915 - Add scons-configure-cache.py to packaging. It was omitted
918 - Use memoization to optimize PATH evaluation across all dependencies per
921 RELEASE 2.5.0 - Mon, 09 Apr 2016 11:27:42 -0700
924 - Removed a lot of compatibility methods and workarounds
925 for Python versions < 2.7, in order to prepare the work
926 towards a combined 2.7/3.x version. (PR #284)
927 Also fixed the default arguments for the print_tree and
928 render_tree methods. (PR #284, too)
930 From William Blevins:
931 - Added support for cross-language dependency scanning;
932 SCons now respects scanner keys for implicit dependencies.
933 - Notes for SCons users with heterogeneous systems.
934 - May find new (previously missed) dependencies.
935 - May cause rebuild after upgrade due to dependency changes.
936 - May find new dependency errors (EG. cycles).
937 - Discovered in some of the SCons QT tests.
938 - Resolved missing cross-language dependencies for
939 SWIG bindings (fixes #2264).
940 - Corrected typo in User Guide for Scanner keyword. (PR #2959)
941 - Install builder interacts with scanner found in SCANNERS differently.
942 - Previous: Install builder recursively scanned implicit dependencies
943 for scanners from SCANNER, but not for built-in (default) scanners.
944 - Current: Install builder will not scan for implicit dependencies via
945 either scanner source. This optimizes some Install builder behavior
946 and brings orthogonality to Install builder scanning behavior.
949 - Add better messaging when two environments have
950 different actions for the same target (Bug #2024)
951 - Fix issue only with MSVC and Always build where targets
952 marked AlwaysBuild wouldn't make it into CHANGED_SOURCES
953 and thus yield an empty compile command line. (Bug #2622)
954 - Fix posix platform escaping logic to properly handle paths
955 with parens in them "()". (Bug #2225)
958 - Intel Compiler 2016 (Linux/Mac) update for tool directories.
961 - Fix for issue #2494: Added string support for Chmod function.
964 - change cache to use 2 character subdirectories, rather than one character,
965 so as not to give huge directories for large caches, a situation which
966 causes issues for NFS.
967 For existing caches, you will need to run the scons-configure-cache.py
968 script to update them to the new format. You will get a warning every time
969 you build until you co this.
970 - Fix a bunch of unit tests on windows
972 RELEASE 2.4.1 - Mon, 07 Nov 2015 10:37:21 -0700
974 From Arfrever Frehtes Taifersar Arahesis:
975 - Fix for Bug # 2791 - Setup.py fails unnecessarily under Jython.
978 - Fixed license of SVG titlepage files in the context of Debian
979 packaging, such that they allow for commercial use too (#2985).
981 From William Blevins:
982 - InstallVersionedLib now available in the DefaultEnvironment context.
983 - Improves orthogonality of use cases between different Install functions.
986 - Added new configure check, CheckProg, to check for
987 existence of a program.
989 From Andrew Featherstone:
990 - Fix for issue #2840 - Fix for two environments specifying same target with different
991 actions not throwing hard error. Instead SCons was incorrectly issuing a warning
995 - Add support `Microsoft Visual C++ Compiler for Python 2.7'
996 Compiler can be obtained at: https://www.microsoft.com/en-us/download/details.aspx?id=44266
998 From Florian Miedniak:
999 - Fixed tigris issue #3011: Glob() excludes didn't work when used with VariantDir(duplicate=0)
1001 From William Roberts:
1002 - Fix bug 2831 and allow Help() text to be appended to AddOption() help.
1005 - Reimplemented versioning for shared libraries, with the following effects
1006 - Fixed tigris issues #3001, #3006.
1007 - Fixed several other issues not reported to tigris, including:
1008 issues with versioned libraries in subdirectories with tricky names,
1009 issues with versioned libraries and variant directories,
1010 issue with soname not being injected to library when using D linkers,
1011 - Switched to direct symlinks instead of daisy-chained ones -- soname and
1012 development symlinks point directly to the versioned shared library now),
1014 https://www.debian.org/doc/debian-policy/ch-sharedlibs.html
1015 https://fedoraproject.org/wiki/Packaging:Guidelines#Devel_Packages
1016 https://bitbucket.org/scons/scons/pull-requests/247/new-versioned-libraries-gnulink-cyglink/diff#comment-10063929
1017 - New construction variables to allow override default behavior: SONAME,
1018 SHLIBVERSIONFLAGS, _SHLIBVERSIONFLAGS, SHLIBNOVERSIONSYMLINKS,
1019 LDMODULEVERSION, LDMODULEVERSIONFLAGS, _LDMODULEVERSIONFLAGS,
1020 LDMODULENOVERSIONSYMLINKS.
1021 - Changed logic used to configure the versioning machinery from
1022 platform-centric to linker-oriented.
1023 - The SHLIBVERSION/LDMODULEVERSION variables are no longer validated by
1024 SCons (more freedom to users).
1025 - InstallVersionedLib() doesn't use SHLIBVERSION anymore.
1026 - Enchanced docs for the library versioning stuff.
1027 - New tests for versioned libraries.
1028 - Library versioning is currently implemented for the following linker
1029 tools: 'cyglink', 'gnulink', 'sunlink'.
1030 - Fix to swig tool - pick-up 'swig', 'swig3.0' and 'swig2.0' (in order).
1031 - Fix to swig tool - respect env['SWIG'] provided by user.
1035 RELEASE 2.4.0 - Mon, 21 Sep 2015 08:56:00 -0700
1038 - Switched several core classes to use "slots", to
1039 reduce the overall memory consumption in large
1040 projects (fixes #2180, #2178, #2198)
1041 - Memoizer counting uses decorators now, instead of
1042 the old metaclasses approach.
1044 From Andrew Featherstone
1045 - Fixed typo in SWIGPATH description
1047 RELEASE 2.3.6 - Mon, 31 Jul 2015 14:35:03 -0700
1050 - Added support for Visual Studio 2015
1052 RELEASE 2.3.5 - Mon, 17 Jun 2015 21:07:32 -0700
1054 From Stephen Pollard:
1055 - Documentation fixes for libraries.xml and
1056 builders-writing.xml (#2989 and #2990)
1058 From William Deegan:
1059 - Extended docs for InstallVersionedLib/SharedLibrary,
1060 and added SKIP_WIN_PACKAGES argument to build script
1061 bootstrap.py (PR #230, #3002).
1063 From William Blevins:
1064 - Fixed symlink support (PR #227, #2395).
1065 - Updated debug-count test case (PR #229).
1067 From Alexey Klimkin:
1068 - Fixed incomplete LIBS flattening and substitution in
1069 Program scanner(PR #205, #2954).
1072 - Added new method rentry_exists_on_disk to Node.FS (PR #193).
1075 - Fixed several D tests under the different OS.
1076 - Add support for f08 file extensions for Fortran 2008 code.
1078 From Anatoly Techtonik:
1079 - Show --config choices if no argument is specified (PR #202).
1080 - Fixed build crash when XML toolchain isn't installed, and
1081 activated compression for ZIP archives.
1083 From Alexandre Feblot:
1084 - Fix for VersionedSharedLibrary under 'sunos' platform.
1085 - Fixed dll link with precompiled headers on MSVC 2012
1086 - Added an 'exclude' parameter to Glob()
1088 From Laurent Marchelli:
1089 - Support for multiple cmdargs (one per variant) in VS project files.
1090 - Various improvements for TempFileMunge class.
1091 - Added an implementation for Visual Studio users files (PR #209).
1094 - Added support for the 'PlatformToolset' tag in VS project files (#2978).
1097 - Added support for '-isystem' to ParseFlags.
1099 RELEASE 2.3.4 - Mon, 27 Sep 2014 12:50:35 -0400
1101 From Bernhard Walle and Dirk Baechle:
1102 - Fixed the interactive mode, in connection with
1103 Configure contexts (#2971).
1105 From Anatoly Techtonik:
1106 - Fix EnsureSConsVersion warning when running packaged version
1109 - Fix D tools for building shared libraries
1111 RELEASE 2.3.3 - Sun, 24 Aug 2014 21:08:33 -0400
1114 - Fixed false line length calculation in the TempFileMunge class (#2970).
1116 From Gary Oberbrunner:
1117 - Improve SWIG detection
1120 - Fix regression on Windows in D language update
1122 From Neal Becker and Stefan Zimmermann:
1123 - Python 3 port and compatibility
1125 From Anatoly Techtonik:
1126 - Do not fail on EnsureSConsVersion when running from checkout
1128 From Kendrick Boyd and Rob Managan:
1129 - Fixed the newglossary action to work with VariantDir (LaTeX).
1131 From Manuel Francisco Naranjo:
1132 - Added a default for the BUILDERS environment variable,
1133 to prevent not defined exception on a Clone().
1135 From Andrew Featherstone:
1136 - Added description of CheckTypeSize method (#1991).
1137 - Fixed handling of CPPDEFINE var in Append()
1138 for several list-dict combinations (#2900).
1140 From William Blevins:
1141 - Added test for Java derived-source dependency tree generation.
1142 - Added Copy Action symlink soft-copy support (#2395).
1143 - Various contributions to the documentation (UserGuide).
1148 - Update XML doc editor configuration
1149 - Fix: Allow varlist to be specified as list of strings for Actions (#2754)
1151 From veon on bitbucket:
1152 - Fixed handling of nested ifs in CPP scanner PreProcessor class.
1155 - Support for Visual Studio 2013 (12.0)
1157 From Michael Haubenwallner:
1158 - Respect user's CC/CXX values; don't always overwrite in generate()
1159 - Delegate linker Tool.exists() to CC/CXX Tool.exists().
1162 - Updated the TeX builder to support use of the -synctex=1
1163 option and the files it creates.
1164 - Updated the TeX builder to correctly clean auxiliary files when
1165 the biblatex package is used.
1167 From Gary Oberbrunner:
1168 - get default RPM architecture more robustly when building RPMs
1171 - Fixed NoClean() for multi-target builders (#2353).
1174 - Fix SConf tests that write output
1177 - Revamp of the D language support. Tools for DMD, GDC and LDC provided
1178 and integrated with the C and C++ linking. NOTE: This is only tested
1179 with D v2. Support for D v1 is now deprecated.
1181 From Anatoly Techtonik:
1182 - Several improvements for running scons.py from source:
1183 * engine files form source directory take priority over all other
1185 * message about scons.py running from source is removed to fix tests
1186 that were failing because of this extra line in the output
1187 * error message when SCons import fails now lists lookup paths
1188 - Remove support for QMTest harness from runtest.py
1189 - Remove RPM and m4 from default tools on Windows
1190 - BitKeeper, CVS, Perforce, RCS, SCCS are deprecated from default
1191 tools and will be removed in future SCons versions to speed up
1192 SCons initialization (it will still be possible to use these tools
1195 From Sye van der Veen:
1196 - Support for Visual Studio 12.0Exp, and fixes for earlier MSVS
1202 From Andrew Featherstone:
1203 - Added support for EPUB output format to the DocBook tool.
1206 - Stop leaking file handles to subprocesses by switching to using subprocess
1208 - Allow multiple options to be specified with --debug=a,b,c
1209 - Add support for a readonly cache (--cache-readonly)
1210 - Always print stats if requested
1211 - Generally try harder to print out a message on build errors
1212 - Adds a switch to warn on missing targets
1213 - Add Pseudo command to mark targets which should not exist after
1217 - Check for 8.3 filenames on cygwin as well as win32 to make variant_dir work properly.
1219 From Alexandre Feblot:
1220 - Make sure SharedLibrary depends on all dependent libs (by depending on SHLINKCOM)
1222 From Stefan Sperling:
1223 - Fixed the setup of linker flags for a versioned SharedLibrary
1224 under OpenBSD (#2916).
1226 From Antonio Cavallo:
1227 - Improve error if Visual Studio bat file not found.
1229 From Manuel Francisco Naranjo:
1230 - Allow Subst.Literal string objects to be compared with each other,
1231 so they work better in AddUnique() and Remove().
1233 From David Rothenberger:
1234 - Added cyglink linker that uses Cygwin naming conventions for
1235 shared libraries and automatically generates import libraries.
1238 - Update bootstrap.py so it can be used from any dir, to run
1239 SCons from a source (non-installed) dir.
1240 - Count statistics of instances are now collected only when
1241 the --debug=count command-line option is used (#2922).
1242 - Added release_target_info() to File nodes, which helps to
1243 reduce memory consumption in clean builds and update runs
1245 - Fixed the handling of long options in the command-line
1247 - Fixed misspelled variable in intelc.py (#2928).
1249 From Gary Oberbrunner:
1250 - Test harness: fail_test() can now print a message to help debugging.
1252 From Anatoly Techtonik:
1253 - Require rpmbuild when building SCons package.
1254 - Print full stack on certain errors, for debugging.
1255 - Improve documentation for Textfile builder.
1257 From William Deegan:
1258 - VS2012 & VS2010 Resolve initialization issues by adding path to reg.exe
1259 in shell used to run batch files.
1260 - MSVC Support fixed defaulting TARGET_ARCH to HOST_ARCH. It should be
1261 None if not explicitly set.
1262 - MSVC Fixed issue where if more than one Architectures compilers are
1263 detected, it would take the last one found, and not the first.
1266 - Added optional ZIPROOT to Zip tool.
1269 - Replaced old SGML-based documentation toolchain with a more modern
1270 approach, that also requires less external dependencies (programs and
1271 Python packages). Added a customized Docbook XSD for strict validation of
1272 all input XML files.
1274 From Luca Falavigna:
1275 - Fixed spelling errors in MAN pages (#2897).
1277 From Michael McDougall:
1278 - Fixed description of ignore_case for EnumVariable in the
1281 RELEASE 2.3.0 - Mon, 02 Mar 2013 13:22:29 -0400
1283 From Anatoly Techtonik:
1284 - Added ability to run scripts/scons.py directly from source checkout
1285 - Hide deprecated --debug={dtree,stree,tree} from --help output
1286 - Error messages from option parser now include hints about valid choices
1287 - Cleaned up some Python 1.5 and pre-2.3 code, so don't expect SCons
1288 to run on anything less than Python 2.4 anymore
1289 - Several fixes for runtest.py:
1290 * exit with an error if no tests were found
1291 * removed --noqmtest option - this behavior is by default
1292 * replaced `-o FILE --xml` combination with `--xml FILE`
1293 * changed `-o, --output FILE` option to capture stdout/stderr output
1295 - Remove os_spawnv_fix.diff patch required to enable parallel builds
1296 support prior to Python 2.2
1299 - Fix WiX Tool to use .wixobj rather than .wxiobj for compiler output
1300 - Support building with WiX releases after 2.0
1302 From Alexey Klimkin:
1303 - Fix nested LIBPATH expansion by flattening sequences in subst_path.
1305 From eyan on Bitbucket:
1306 - Print target name with command execution time with --debug=time
1308 From Thomas Berg and Evgeny Podjachev:
1309 - Fix subprocess spawning on Windows. Work around a Windows
1310 bug that can crash python occasionally when using -jN. (#2449)
1313 - Updated test framework to support dir and file fixtures and
1314 added ability to test external (out-of-tree) tools (#2862).
1315 See doc in QMTest/test-framework.rst.
1316 - Fixed several errors in the test suite (Java paths, MSVS version
1317 detection, Tool import), additionally
1318 * provided MinGW command-line support for the CXX, AS and
1320 * refactored the detection of the gcc version and the according
1321 Fortran startup library,
1322 * provided a new module rpmutils.py, wrapping the RPM naming rules
1323 for target files and further hardware-dependent info (compatibility,
1324 compiler flags, ...),
1325 * added new test methods must_exist_one_of() and
1326 must_not_exist_any_of() and
1327 * removed Aegis support from runtest.py. (#2872)
1329 From Gary Oberbrunner:
1330 - Add -jN support to runtest.py to run tests in parallel
1331 - Add MSVC10 and MSVC11 support to get_output low-level bat script runner.
1332 - Fix MSVS solution generation for VS11, and fixed tests.
1335 - Updated the TeX builder to support the \newglossary command
1336 in LaTeX's glossaries package and the files it creates.
1337 - Improve support for new versions of biblatex in the TeX builder
1338 so biber is called automatically if biblatex requires it.
1339 - Add SHLIBVERSION as an option that tells SharedLibrary to build
1340 a versioned shared library and create the required symlinks.
1341 Add builder InstallVersionedLib to create the required symlinks
1342 installing a versioned shared library.
1344 RELEASE 2.2.0 - Mon, 05 Aug 2012 15:37:48 +0000
1346 From dubcanada on Bitbucket:
1347 - Fix 32-bit Visual Express C++ on 64-bit Windows (generate 32-bit code)
1350 - Added gettext toolset
1351 - Fixed FindSourceFiles to find final sources (leaf nodes).
1354 - Allow Node objects in Java path (#2825)
1357 - Make Windows not redefine builtin file as un-inheritable (#2857)
1358 - Fix WINDOWS_INSERT_DEF on MinGW (Windows) (#2856)
1360 From smallbub on Bitbucket:
1361 - Fix LINKCOMSTR, SHLINKCOMSTR, and LDMODULECOMSTR on Windows (#2833).
1364 - Make -s (silent mode) be silent about entering subdirs (#2976).
1365 - Fix cloning of builders when cloning environment (#2821).
1367 From Gary Oberbrunner:
1368 - Show valid Visual Studio architectures in error message
1369 when user passes invalid arch.
1371 From Alexey Petruchik:
1372 - Support for Microsoft Visual Studio 11 (both using it
1373 and generating MSVS11 solution files).
1375 From Alexey Klimkin:
1376 - Fixed the Taskmaster, curing spurious build failures in
1377 multi-threaded runs (#2720).
1380 - Improved documentation of command-line variables (#2809).
1381 - Fixed scons-doc.py to properly convert main XML files (#2812).
1384 - Updated the TeX builder to support LaTeX's multibib package.
1385 - Updated the TeX builder to support LaTeX's biblatex package.
1386 - Added support for using biber instead of bibtex by setting
1387 env['BIBTEX'] = 'biber'
1390 - Test for FORTRANPPFILESUFFIXES (#2129).
1393 RELEASE 2.1.0 - Mon, 09 Sep 2011 20:54:57 -0700
1396 - Fix Windows resource compiler scanner to accept DOS line endings.
1399 - Update MSVS documents to remove note indicating that only one
1400 project is currently supported per solution file.
1402 From Grzegorz Bizoń:
1403 - Fix long compile lines in batch mode by using TEMPFILE
1404 - Fix MSVC_BATCH=False (was treating it as true)
1406 From Justin Gullingsrud:
1407 - support -std=c++0x and related CXXFLAGS in pkgconfig (ParseFlags)
1409 From Vincent Beffara:
1410 - Support -dylib_file in pkgconfig (ParseFlags)
1412 From Gary Oberbrunner and Sohail Somani:
1413 - new construction variable WINDOWS_EMBED_MANIFEST to automatically
1414 embed manifests in Windows EXEs and DLLs.
1416 From Gary Oberbrunner:
1417 - Fix Visual Studio project generation when CPPPATH contains Dir nodes
1418 - Ensure Visual Studio project is regenerated when CPPPATH or CPPDEFINES change
1419 - Fix unicode error when using non-ASCII filenames with Copy or Install
1420 - Put RPATH in LINKCOM rather than LINKFLAGS so resetting
1421 LINKFLAGS doesn't kill RPATH
1422 - Fix precompiled headers on Windows when variant dir name has spaces.
1423 - Adding None to an Action no longer fails (just returns original action)
1424 - New --debug=prepare option to show each target as it's being
1425 prepared, whether or not anything needs to be done for it.
1426 - New debug option --debug=duplicate to print a line for each
1427 unlink/relink (or copy) of a variant file from its source file.
1428 - Improve error message for EnumVariables to show legal values.
1429 - Fix Intel compiler to sort versions >9 correctly (esp. on Linux)
1430 - Fix Install() when the source and target are directories and the
1431 target directory exists.
1433 From David Garcia Garzon:
1434 - Fix Delete to be able to delete broken symlinks and dir
1437 From Imran Fanaswala and Robert Lehr:
1438 - Handle .output file generated by bison/yacc properly. Cleaning it
1441 From Antoine Dechaume:
1442 - Handle SWIG file where there is whitespace after the module name
1443 properly. Previously the generated files would include
1447 - Handle Environment in case __semi_deepcopy is None
1451 - Much improved support for Windows UNC paths (\\SERVERNAME).
1453 From Jean-Baptiste Lab:
1455 - Fix problems with appending CPPDEFINES that contain
1456 dictionaries, and related issues with Parse/MergeFlags and
1461 - Fix for an issue with implicit-cache with multiple targets
1462 when dependencies are removed on disk.
1464 From Evgeny Podjachev and Alexey Petruchick:
1466 - Support generation of Microsoft Visual Studio 2008 (9.0)
1467 and 2010 (10.0) project and solution files.
1471 - Fix a problem when FS Entries which are actually Dirs have builders.
1473 From Luca Falavigna:
1475 - Support Fortran 03
1477 From Gary Oberbrunner:
1479 - Print the path to the SCons package in scons --version
1481 From Jean-Fran�ois Colson:
1483 - Improve Microsoft Visual Studio Solution generation, and fix
1484 various errors in the generated solutions especially when using
1485 MSVS_SCC_PROVIDER, and when generating multiple projects. The
1486 construction variable MSVS_SCC_PROJECT_BASE_PATH, which never
1487 worked properly, is removed. Users can use the new variable
1488 MSVS_SCC_CONNECTION_ROOT instead if desired.
1490 From Anatoly Techtonik:
1492 - Use subprocess in bootstrap.py instead of os.execve to avoid
1493 losing output control on Windows (http://bugs.python.org/issue9148)
1495 - Revert patch for adding SCons to App Paths, because standard cmd
1496 shell doesn't search there. This is confusing, because `scons` can
1497 be executed from explorer, but fail to start from console.
1499 - Fix broken installation with easy_install on Windows (issue #2051)
1500 SCons traditionally installed in a way that allowed to run multiple
1501 versions side by side. This custom logic was incompatible with
1502 easy_install way of doing things.
1504 - Use epydoc module for generating API docs in HTML if command line
1505 utility is not found in PATH. Actual for Windows.
1507 From Alexander Goomenyuk:
1509 - Add .sx to assembly source scanner list so .sx files
1510 get their header file dependencies detected.
1514 - Set module metadata when loading site_scons/site_init.py
1515 so it is treated as a proper module; __doc__, __file__ and
1516 __name__ now refer to the site_init.py file.
1520 - Users Guide updates explaining that Tools can be packages as
1521 well as python modules.
1523 From Gary Oberbrunner:
1525 - New systemwide and per-user site_scons dirs.
1529 - XML fixes in User's Guide.
1530 - Fixed the detection of 'jar' and 'rmic' during
1531 the initialization of the respective Tools (#2730).
1532 - Improved docs for custom Decider functions and
1533 custom Scanner objects (#2711, #2713).
1534 - Corrected SWIG module names for generated *.i files (#2707).
1538 - Fixed a case-sensitivity problem with Fortran modules.
1542 - Added Users Guide example for auto-generated source code
1546 - Fix explicit dependencies (Depends()) on Nodes that don't have
1549 - Fix use of the global Alias() function with command actions.
1553 - Fix the ability to append to default $*FLAGS values (which are
1554 implemented as CLVar instances) in a copied construction environment
1555 without affecting the original construction environment's value.
1559 - Updated the TeX command strings to include a /D on Windows in
1560 case the new directory is on a different drive letter.
1562 - Fixed the LaTeX scanner so dependencies are found in commands that
1563 are broken across lines with a comment or have embedded spaces.
1565 - The TeX builders should now work with tex files that are generated
1566 by another program. Thanks to Hans-Martin von Gaudecker for
1567 isolating the cause of this bug.
1569 - Added support for INDEXSTYLE environment variable so makeindex can
1572 - Added support for the bibunits package so we call bibtex on all
1575 - Add support of finding path information on OSX for TeX applications
1576 MacPorts and Fink paths need to be added by the user
1580 - Add support for DMD version 2 (the phobos2 library).
1582 From William Deegan:
1584 - Add initial support for VS/VC 2010 (express and non-express versions)
1585 - Remove warning for not finding MS VC/VS install.
1586 "scons: warning: No version of Visual Studio compiler found
1587 - C/C++ compilers most likely not set correctly"
1588 - Add support for Linux 3.0
1591 RELEASE 2.0.1 - Mon, 15 Aug 2010 15:46:32 -0700
1595 - Fix XML in documentation.
1599 - Fixed a case-sensitivity problem with Fortran modules.
1603 - Added Users Guide example for auto-generated source code
1607 - Fix explicit dependencies (Depends()) on Nodes that don't have
1612 - Fix the ability to append to default $*FLAGS values (which are
1613 implemented as CLVar instances) in a copied construction environment
1614 without affecting the original construction environment's value.
1618 - Updated the TeX command strings to include a /D on Windows in
1619 case the new directory is on a different drive letter.
1621 - Fixed the LaTeX scanner so dependencies are found in commands that
1622 are broken across lines with a comment or have embedded spaces.
1625 RELEASE 2.0.0.final.0 - Mon, 14 Jun 2010 22:01:37 -0700
1629 - Fix XML in documentation.
1633 - Provide forward compatibility for the 'profile' module.
1635 - Provide forward compatibility for the 'pickle' module.
1637 - Provide forward compatibility for the 'io' module.
1639 - Provide forward compatibility for the 'queue' module.
1641 - Provide forward compatibility for the 'collections' module.
1643 - Provide forward compatibility for the 'builtins' module.
1645 - Provide forward compatibility for 'sys.intern()'.
1647 - Convert to os.walk() from of os.path.walk().
1649 - Remove compatibility logic no longer needed.
1651 - Add a '-3' option to runtest to print 3.x incompatibility warnings.
1653 - Convert old-style classes into new-style classes.
1655 - Fix "Ignoring corrupt sconsign entry" warnings when building
1656 in a tree with a pre-2.0 .sconsign file.
1658 - Fix propagation from environment of VS*COMNTOOLS to resolve issues
1659 initializing MSVC/MSVS/SDK issues.
1661 - Handle detecting Visual C++ on Python versions with upper-case
1662 platform architectures like 'AMD64'.
1664 From W. Trevor King:
1666 - Revisions to README.
1670 - Apply numerous Python fixers to update code to more modern idioms.
1671 Find where fixers should be applied to code in test strings and
1672 apply the fixers there, too.
1674 - Write a fixer to convert string functions to string methods.
1676 - Modify the 'dict' fixer to be less conservative.
1678 - Modify the 'apply' fixer to handle more cases.
1680 - Create a modified 'types' fixer that converts types to 2.x
1681 equivalents rather than 3.x equivalents.
1683 - Write a 'division' fixer to highlight uses of the old-style
1684 division operator. Correct usage where needed.
1686 - Add forward compatibility for the new 'memoryview' function
1687 (which replaces the 'buffer' function).
1689 - Add forward compatibility for the 'winreg' module.
1691 - Remove no-longer-needed 'platform' module.
1693 - Run tests with the '-3' option to Python 2.6 and clear up
1694 various reported incompatibilities.
1696 - Comb out code paths specialized to Pythons older than 2.4.
1698 - Update deprecation warnings; most now become mandatory.
1700 - Start deprecation cycle for BuildDir() and build_dir.
1702 - Start deprecation cycle for SourceCode() and related factories
1704 - Fixed a problem with is_Dict() not identifying some objects derived
1709 - Document the AllowSubstExceptions() function in the User's Guide.
1711 From William Deegan:
1713 - Migrate MSVC/MSVS/SDK improvements from 1.3 branch.
1716 RELEASE 1.3.0 - Tue, 23 Mar 2010 21:44:19 -0400
1720 - Update man page and documentation.
1722 From William Deegan (plus minor patch from Gary Oberbrunner):
1724 - Support Visual Studio 8.0 Express
1726 RELEASE 1.2.0.d20100306 - Sat, 06 Mar 2010 16:18:33 -0800
1728 From Luca Falavigna:
1730 - Fix typos in the man page.
1732 From Gottfried Ganssauge:
1734 - Support execution when SCons is installed via easy_install.
1738 - Make the messages for Configure checks of compilers consistent.
1740 - Issue an error message if a BUILDERS entry is not a Builder
1741 object or a callable wrapper.
1745 - Update tex builder to handle the case where a \input{foo}
1746 command tries to work with a directory named foo instead of the
1747 file foo.tex. The builder now ignores a directory and continues
1748 searching to find the correct file. Thanks to Lennart Sauerbeck
1749 for the test case and initial patch
1751 Also allow the \include of files in subdirectories when variantDir
1752 is used with duplicate=0. Previously latex would crash since
1753 the directory in which the .aux file is written was not created.
1754 Thanks to Stefan Hepp for finding this and part of the solution.
1757 - Patches to fix some issues using MS SDK V7.0
1759 From William Deegan:
1760 - Lots of testing and minor patches to handle mixed MS VC and SDK
1761 installations, as well as having only the SDK installed.
1764 RELEASE 1.2.0.d20100117 - Sun, 17 Jan 2010 14:26:59 -0800
1767 - Fixed temp filename race condition on Windows with long cmd lines.
1769 From David Cournapeau:
1770 - Fixed tryRun when sconf directory is in a variant dir.
1771 - Do not add -fPIC for ifort tool on non-posix platforms (darwin and
1773 - Fix bug 2294 (spurious CheckCC failures).
1774 - Fix SCons bootstrap process on windows 64 (wrong wininst name)
1776 From William Deegan:
1777 - Final merge from vs_revamp branch to main
1779 - Added definition and usage of HOST_OS, HOST_ARCH, TARGET_OS,
1780 TARGET_ARCH, currently only defined/used by Visual Studio
1781 Compilers. This will be rolled out to other platforms/tools
1784 - Add check for python >= 3.0.0 and exit gracefully.
1785 For 1.3 python >= 1.5.2 and < 3.0.0 are supported
1787 - Fix bug 1944 - Handle non-existent .i file in swig emitter, previously
1788 it would crash with an IOError exception. Now it will try to make an
1789 educated guess on the module name based on the filename.
1791 From Lukas Erlinghagen:
1793 - Have AddOption() remove variables from the list of
1794 seen-but-unknown variables (which are reported later).
1796 - An option name and aliases can now be specified as a tuple.
1798 From Hartmut Goebel:
1804 - use "is/is not" in comparisons with None instead of "==" or "!=".
1808 - Avoid adding -gphobos to a command line multiple times
1809 when initializing use of the DMD compiler.
1813 - Sugguested HOST/TARGET OS/ARCH separation.
1817 - Fix the -n option when used with VariantDir(duplicate=1)
1818 and the variant directory doesn't already exist.
1820 - Fix scanning of Unicode files for both UTF-16 endian flavors.
1822 - Fix a TypeError on #include of file names with Unicode characters.
1824 - Fix an exception if a null command-line argument is passed in.
1826 - Evaluate Requires() prerequisites before a Node's direct children
1827 (sources and dependencies).
1831 - Remove redundant __metaclass__ initializations in Environment.py.
1833 - Correct the documentation of text returned by sconf.Result().
1835 - Document that filenames with '.' as the first character are
1836 ignored by Glob() by default (matching UNIX glob semantics).
1838 - Fix SWIG testing infrastructure to work on Mac OS X.
1840 - Restructure a test that occasionally hung so that the test would
1841 detect when it was stuck and fail instead.
1843 - Substfile builder.
1845 From Gary Oberbrunner:
1847 - When reporting a target that SCons doesn't know how to make,
1848 specify whether it's a File, Dir, etc.
1852 - Fix use of $SWIGOUTDIR when generating Python wrappers.
1854 - Add $SWIGDIRECTORSUFFIX and $SWIGVERSION construction variables.
1858 - Add -recorder flag to Latex commands and updated internals to
1859 use the output to find files TeX creates. This allows the MiKTeX
1860 installations to find the created files
1862 - Notify user of Latex errors that would get buried in the
1865 - Remove LATEXSUFFIXES from environments that don't initialize Tex.
1867 - Add support for the glossaries package for glossaries and acronyms
1869 - Fix problem that pdftex, latex, and pdflatex tools by themselves did
1870 not create the actions for bibtex, makeindex,... by creating them
1871 and other environment settings in one routine called by all four
1874 - Fix problem with filenames of sideeffects when the user changes
1875 the name of the output file from the latex default
1877 - Add scanning of files included in Latex by means of \lstinputlisting{}
1878 Patch from Stefan Hepp.
1880 - Change command line for epstopdf to use --outfile= instead of -o
1881 since this works on all platforms.
1882 Patch from Stefan Hepp.
1884 - Change scanner to properly search for included file from the
1885 directory of the main file instead of the file it is included from.
1886 Also update the emitter to add the .aux file associated with
1887 \include{filename} commands. This makes sure the required directories
1888 if any are created for variantdir cases.
1889 Half of the patch from Stefan Hepp.
1891 RELEASE 1.2.0.d20090223 - Mon, 23 Feb 2009 08:41:06 -0800
1893 From Stanislav Baranov:
1895 - Make suffix-matching for scanners case-insensitive on Windows.
1897 From David Cournapeau:
1899 - Change the way SCons finds versions of Visual C/C++ and Visual
1900 Studio to find and use the Microsoft v*vars.bat files.
1902 From Robert P. J. Day:
1904 - User's Guide updates.
1908 - Fix generation of Visual Studio 8 project files on x64 platforms.
1912 - Set IncludeSearchPath and PreprocessorDefinitions in generated
1913 Visual Studio 8 project files, to help IntelliSense work.
1917 - Fix deletion of broken symlinks by the --clean option.
1921 - Fix the error message when use of a non-existent drive on Windows
1924 - Add sources for files whose targets don't exist in $CHANGED_SOURCES.
1926 - Detect implicit dependencies on commands even when the command is
1929 - Fix interaction of $CHANGED_SOURCES with the --config=force option.
1931 - Fix finding #include files when the string contains escaped
1932 backslashes like "C:\\some\\include.h".
1934 - Pass $CCFLAGS to Visual C/C++ precompiled header compilation.
1936 - Remove unnecessary nested $( $) around $_LIBDIRFLAGS on link lines
1937 for the Microsoft linker, the OS/2 ilink linker and the Phar Lap
1940 - Spell the Windows environment variables consistently "SystemDrive"
1941 and "SystemRoot" instead of "SYSTEMDRIVE" and "SYSTEMROOT".
1945 RELEASE 1.2.0.d20090113 - Tue, 13 Jan 2009 02:50:30 -0800
1947 From Stanislav Baranov, Ted Johnson and Steven Knight:
1949 - Add support for batch compilation of Visual Studio C/C++ source
1950 files, controlled by a new $MSVC_BATCH construction variable.
1954 - Print the message, "scons: Build interrupted." on error output,
1955 not standard output.
1957 - Add a --warn=future-deprecated option for advance warnings about
1958 deprecated features that still have warnings hidden by default.
1960 - Fix use of $SOURCE and $SOURCES attributes when there are no
1961 sources specified in the Builder call.
1963 - Add support for new $CHANGED_SOURCES, $CHANGED_TARGETS,
1964 $UNCHANGED_SOURCES and $UNCHANGED_TARGETS variables.
1966 - Add general support for batch builds through new batch_key= and
1967 targets= keywords to Action object creation.
1971 - Make linker tools differentiate properly between SharedLibrary
1974 - Document TestCommon.shobj_prefix variable.
1976 - Support $SWIGOUTDIR values with spaces.
1980 - Don't automatically try to build .pdf graphics files for
1981 .eps files in \includegraphics{} calls in TeX/LaTeX files
1982 when building with the PDF builder (and thus using pdflatex).
1984 From Gary Oberbrunner:
1986 - Allow AppendENVPath() and PrependENVPath() to interpret '#'
1987 for paths relative to the top-level SConstruct directory.
1989 - Use the Borland ilink -e option to specify the output file name.
1991 - Document that the msvc Tool module uses $PCH, $PCHSTOP and $PDB.
1993 - Allow WINDOWS_INSERT_DEF=0 to disable --output-def when linking
1998 - Fix typos in the User's Guide.
2002 - Support implicit dependency scanning of files encoded in utf-8
2005 From Roberto de Vecchi:
2007 - Remove $CCFLAGS from the the default definitions of $CXXFLAGS for
2008 Visual C/C++ and MIPSpro C++ on SGI so, they match other tools
2009 and avoid flag duplication on C++ command lines.
2013 - Handle quoted module names in SWIG source files.
2015 - Emit *_wrap.h when SWIG generates header file for directors
2017 From Matthew Wesley:
2019 - Copy file attributes so we identify, and can link a shared library
2020 from, shared object files in a Repository.
2024 RELEASE 1.2.0 - Sat, 20 Dec 2008 22:47:29 -0800
2028 - Don't fail if can't import a _subprocess module on Windows.
2030 - Add warnings for use of the deprecated Options object.
2034 RELEASE 1.1.0.d20081207 - Sun, 07 Dec 2008 19:17:23 -0800
2038 - Improve the robustness of GetBuildFailures() by refactoring
2039 SCons exception handling (especially BuildError exceptions).
2041 - Have the --taskmastertrace= option print information about
2042 individual Task methods, not just the Taskmaster control flow.
2044 - Eliminate some spurious dependency cycles by being more aggressive
2045 about pruning pending children from the Taskmaster walk.
2047 - Suppress mistaken reports of a dependency cycle when a child
2048 left on the pending list is a single Node in EXECUTED state.
2050 From David Cournapeau:
2052 - Fix $FORTRANMODDIRPREFIX for the ifort (Intel Fortran) tool.
2054 From Brad Fitzpatrick:
2056 - Don't pre-generate an exception message (which will likely be
2057 ignored anyway) when an EntryProxy re-raises an AttributeError.
2061 - Clean up coding style and white space in Node/FS.py.
2063 - Fix a typo in the documentation for $_CPPDEFFLAGS.
2065 - Issue 2401: Fix usage of comparisons with None.
2067 From Ludwig H�hne:
2069 - Handle Java inner classes declared within a method.
2073 - Fix label placement by the "scons-time.py func" subcommand
2074 when a profile value was close to (or equal to) 0.0.
2076 - Fix env.Append() and env.Prepend()'s ability to add a string to
2077 list-like variables like $CCFLAGS under Python 2.6.
2079 - Other Python2.6 portability: don't use "as" (a Python 2.6 keyword).
2080 Don't use the deprecated Exception.message attribute.
2082 - Support using the -f option to search for a different top-level
2083 file name when walking up with the -D, -U or -u options.
2085 - Fix use of VariantDir when the -n option is used and doesn't,
2086 therefore, actually create the variant directory.
2088 - Fix a stack trace from the --debug=includes option when passed a
2089 static or shared library as an argument.
2091 - Speed up the internal find_file() function (used for searching
2092 CPPPATH, LIBPATH, etc.).
2094 - Add support for using the Python "in" keyword on construction
2095 environments (for example, if "CPPPATH" in env: ...).
2097 - Fix use of Glob() when a repository or source directory contains
2098 an in-memory Node without a corresponding on-disk file or directory.
2100 - Add a warning about future reservation of $CHANGED_SOURCES,
2101 $CHANGED_TARGETS, $UNCHANGED_SOURCES and $UNCHANGED_TARGETS.
2103 - Enable by default the existing warnings about setting the resource
2104 $SOURCE, $SOURCES, $TARGET and $TARGETS variable.
2108 - Scan for TeX files in the paths specified in the $TEXINPUTS
2109 construction variable and the $TEXINPUTS environment variable.
2111 - Configure the PDF() and PostScript() Builders as single_source so
2112 they know each source file generates a separate target file.
2114 - Add $EPSTOPDF, $EPSTOPDFFLAGS and $EPSTOPDFCOM
2116 - Add .tex as a valid extension for the PDF() builder.
2118 - Add regular expressions to find \input, \include and
2121 - Support generating a .pdf file from a .eps source.
2123 - Recursive scan included input TeX files.
2125 - Handle requiring searched-for TeX input graphics files to have
2126 extensions (to avoid trying to build a .eps from itself, e.g.).
2130 - Make the Action() function handle positional parameters consistently.
2132 - Clarify use of Configure.CheckType().
2134 - Make the File.{Dir,Entry,File}() methods create their entries
2135 relative to the calling File's directory, not the SConscript
2138 - Use the Python os.devnull variable to discard error output when
2139 looking for the $CC or $CXX version.
2141 - Mention LoadableModule() in the SharedLibrary() documentation.
2143 From Gary Oberbrunner:
2145 - Update the User's Guide to clarify use of the site_scons/
2146 directory and the site_init.py module.
2148 - Make env.AppendUnique() and env.PrependUnique remove duplicates
2149 within a passed-in list being added, too.
2151 From Randall Spangler:
2153 - Fix Glob() so an on-disk file or directory beginning with '#'
2154 doesn't throw an exception.
2158 RELEASE 1.1.0 - Thu, 09 Oct 2008 08:33:47 -0700
2162 - Use the specified environment when checking for the GCC compiler
2165 From Ian P. Cardenas:
2167 - Fix Glob() polluting LIBPATH by returning copy of list
2169 From David Cournapeau:
2171 - Add CheckCC, CheckCXX, CheckSHCC and CheckSHCXX tests to
2172 configuration contexts.
2174 - Have the --profile= argument use the much faster cProfile module
2175 (if it's available in the running Python version).
2177 - Reorder MSVC compilation arguments so the /Fo is first.
2181 - Add scanning Windows resource (.rc) files for implicit dependencies.
2185 - When scanning for a #include file, don't use a directory that
2186 has the same name as the file.
2188 From Ralf W. Grosse-Kunstleve
2190 - Suppress error output when checking for the GCC compiler version.
2194 - Fix VariantDir duplication of #included files in subdirectories.
2196 From Ludwig H�hne:
2198 - Reduce memory usage when a directory is used as a dependency of
2199 another Node (such as an Alias) by returning a concatenation
2200 of the children's signatures + names, not the children's contents,
2201 as the directory contents.
2203 - Raise AttributeError, not KeyError, when a Builder can't be found.
2205 - Invalidate cached Node information (such as the contenst returned
2206 by the get_contents() method) when calling actions with Execute().
2208 - Avoid object reference cycles from frame objects.
2210 - Reduce memory usage from Null Executor objects.
2212 - Compute MD5 checksums of large files without reading the entire
2213 file contents into memory. Add a new --md5-chunksize option to
2214 control the size of each chunk read into memory.
2218 - Fix the ability of the add_src_builder() method to add a new
2219 source builder to any other builder.
2221 - Avoid an infinite loop on non-Windows systems trying to find the
2222 SCons library directory if the Python library directory does not
2223 begin with the string "python".
2225 - Search for the SCons library directory in "scons-local" (with
2226 no version number) after "scons-local-{VERSION}".
2230 - Fix the user's ability to interrupt the TeX build chain.
2232 - Fix the TeX builder's allowing the user to specify the target name,
2233 instead of always using its default output name based on the source.
2235 - Iterate building TeX output files until all warning are gone
2236 and the auxiliary files stop changing, or until we reach the
2237 (configurable) maximum number of retries.
2239 - Add TeX scanner support for: glossaries, nomenclatures, lists of
2240 figures, lists of tables, hyperref and beamer.
2242 - Use the $BIBINPUTS, $BSTINPUTS, $TEXINPUTS and $TEXPICTS construction
2243 variables as search paths for the relevant types of input file.
2245 - Fix building TeX with VariantDir(duplicate=0) in effect.
2247 - Fix the LaTeX scanner to search for graphics on the TEXINPUTS path.
2249 - Have the PDFLaTeX scanner search for .gif files as well.
2253 - Fix typos and format bugs in the man page.
2255 - Add a first draft of a wrapper module for Python's subprocess
2258 - Refactor use of the SCons.compat module so other modules don't
2259 have to import it individually.
2261 - Add .sx as a suffix for assembly language files that use the
2264 From Gary Oberbrunner:
2266 - Make Glob() sort the returned list of Files or Nodes
2267 to prevent spurious rebuilds.
2269 - Add a delete_existing keyword argument to the AppendENVPath()
2270 and PrependENVPath() Environment methods.
2272 - Add ability to use "$SOURCE" when specifying a target to a builder
2276 - Add a test case to verify that SConsignFile() files can be
2277 created in previously non-existent subdirectories.
2281 - Make the subdirectory in which the SConsignFile() file will
2282 live, if the subdirectory doesn't already exist.
2286 - Add a test to verify duplication of files in VariantDir subdirectories.
2290 RELEASE 1.0.1 - Sat, 06 Sep 2008 07:29:34 -0700
2294 - Add a FindFile() section to the User's Guide.
2296 - Fix the FindFile() documentation in the man page.
2298 - Fix formatting errors in the Package() description in the man page.
2300 - Escape parentheses that appear within variable names when spawning
2301 command lines using os.system().
2309 - Clear the Node state when turning a generic Entry into a Dir.
2311 From Ludwig H�hne:
2313 - Fix sporadic output-order failures in test/GetBuildFailures/parallel.py.
2315 - Document the ParseDepends() function in the User's Guide.
2319 - Create a separate description and long_description for RPM packages.
2323 - Document the GetLaunchDir() function in the User's Guide.
2325 - Have the env.Execute() method print an error message if the
2326 executed command fails.
2328 - Add a script for creating a standard SCons development system on
2329 Ubuntu Hardy. Rewrite subsidiary scripts for install Python and
2330 SCons versions in Python (from shell).
2334 - Handle yacc/bison on newer Mac OS X versions creating file.hpp,
2337 - In RPCGEN tests, ignore stderr messages from older versions of
2338 rpcgen on some versions of Mac OS X.
2340 - Fix typos in man page descriptions of Tag() and Package(), and in
2341 the scons-time man page.
2343 - Fix documentation of SConf.CheckLibWithHeader and other SConf methods.
2345 - Update documentation of SConscript(variant_dir) usage.
2347 - Fix SWIG tests for (some versions of) Mac OS X.
2351 - Print the warning about -j on Windows being potentially unreliable if
2352 the pywin32 extensions are unavailable or lack file handle operations.
2356 - Fix the env.WhereIs() method to expand construction variables.
2358 From Rogier Schouten:
2360 - Enable building of shared libraries with the Bordand ilink32 linker.
2364 RELEASE 1.0.0 - Sat, 09 Aug 2008 12:19:44 -0700
2366 From Luca Falavigna:
2368 - Fix SCons man page indentation under Debian's man page macros.
2372 - Clarify the man page description of the SConscript(src_dir) argument.
2374 - User's Guide updates:
2376 - Document the BUILD_TARGETS, COMMAND_LINE_TARGETS and
2377 DEFAULT_TARGETS variables.
2379 - Document the AddOption(), GetOption() and SetOption() functions.
2381 - Document the Requires() function; convert to the Variables
2382 object, its UnknownOptions() method, and its associated
2383 BoolVariable(), EnumVariable(), ListVariable(), PackageVariable()
2384 and PathVariable() functions.
2386 - Document the Progress() function.
2388 - Reorganize the chapter and sections describing the different
2389 types of environments and how they interact. Document the
2390 SetDefault() method. Document the PrependENVPath() and
2391 AppendENVPath() functions.
2393 - Reorganize the command-line arguments chapter. Document the
2396 - Collect some miscellaneous sections into a chapter about
2397 configuring build output.
2401 - Document suggested use of the Visual C/C++ /FC option to fix
2402 the ability to double-click on file names in compilation error
2405 - Document the need to use Clean() for any SideEffect() files that
2406 must be explicitly removed when their targets are removed.
2408 - Explicitly document use of Node lists as input to Dependency().
2412 - Document MergeFlags(), ParseConfig(), ParseFlags() and SideEffect()
2413 in the User's Guide.
2415 From Gary Oberbrunner:
2417 - Document use of the GetBuildFailures() function in the User's Guide.
2421 - Add man page text clarifying the behavior of AddPreAction() and
2422 AddPostAction() when called with multiple targets.
2424 From Alexey Zezukin:
2426 - Fix incorrectly swapped man page descriptions of the --warn= options
2427 for duplicate-environment and missing-sconscript.
2431 RELEASE 0.98.5 - Sat, 07 Jun 2008 08:20:35 -0700
2435 - Fix the Intel C++ compiler ABI specification for EMT64 processors.
2437 From David Cournapeau:
2439 - Issue a (suppressable) warning, not an error, when trying to link
2440 C++ and Fortran object files into the same executable.
2444 - Update the scons.bat file so that it returns the real exit status
2445 from SCons, even though it uses setlocal + endlocal.
2447 - Fix the --interactive post-build messages so it doesn't get stuck
2448 mistakenly reporting failures after any individual build fails.
2450 - Fix calling File() as a File object method in some circumstances.
2452 - Fix setup.py installation on Mac OS X so SCons gets installed
2453 under /usr/lcoal by default, not in the Mac OS X Python framework.
2457 RELEASE 0.98.4 - Sat, 17 May 2008 22:14:46 -0700
2461 - Fix calculation of signatures for Python function actions with
2462 closures in Python versions before 2.5.
2464 From David Cournapeau:
2466 - Fix the initialization of $SHF77FLAGS so it includes $F77FLAGS.
2470 - Fix a syntax error in the Intel C compiler support on Windows.
2474 - Change how we represent Python Value Nodes when printing and when
2475 stored in .sconsign files (to avoid blowing out memory by storing
2476 huge strings in .sconsign files after multiple runs using Configure
2477 contexts cause the Value strings to be re-escaped each time).
2479 - Fix a regression in not executing configuration checks after failure
2480 of any configuration check that used the same compiler or other tool.
2482 - Handle multiple destinations in Visual Studio 8 settings for the
2483 analogues to the INCLUDE, LIBRARY and PATH variables.
2487 - Update man page text for VariantDir().
2491 RELEASE 0.98.3 - Tue, 29 Apr 2008 22:40:12 -0700
2495 - Fix use of $CXXFLAGS when building C++ shared object files.
2499 - Fix a regression when a Builder's source_scanner doesn't select
2500 a more specific scanner for the suffix of a specified source file.
2502 - Fix the Options object backwards compatibility so people can still
2503 "import SCons.Options.{Bool,Enum,List,Package,Path}Option" submodules.
2505 - Fix searching for implicit dependencies when an Entry Node shows up
2506 in the search path list.
2510 - Fix expansion of $FORTRANMODDIR in the default Fortran command line(s)
2511 when it's set to something like ${TARGET.dir}.
2515 RELEASE 0.98.2 - Sun, 20 Apr 2008 23:38:56 -0700
2519 - Fix a bug in Fortran suffix computation that would cause SCons to
2520 run out of memory on Windows systems.
2522 - Fix being able to specify --interactive mode command lines with
2523 \ (backslash) path name separators on Windows.
2525 From Gary Oberbrunner:
2527 - Document Glob() in the User's Guide.
2531 RELEASE 0.98.1 - Fri, 18 Apr 2008 19:11:58 -0700
2535 - Speed up the SCons.Util.to_string*() functions.
2537 - Optimize various Node intialization and calculations.
2539 - Optimize Executor scanning code.
2541 - Optimize Taskmaster execution, including dependency-cycle checking.
2543 - Fix the --debug=stree option so it prints its tree once, not twice.
2547 - Fix the ability to use LoadableModule() under MinGW.
2549 From David Cournapeau:
2551 - Various missing Fortran-related construction variables have been added.
2553 - SCons now uses the program specified in the $FORTRAN construction
2554 variable to link Fortran object files.
2556 - Fortran compilers on Linux (Intel, g77 and gfortran) now add the -fPIC
2557 option by default when compilling shared objects.
2559 - New 'sunf77', 'sunf90' and 'sunf95' Tool modules have been added to
2560 support Sun Fortran compilers. On Solaris, the Sun Fortran compilers
2561 are used in preference to other compilers by default.
2563 - Fortran support now uses gfortran in preference to g77.
2565 - Fortran file suffixes are now configurable through the
2566 $F77FILESUFFIXES, $F90FILESUFFIXES, $F95FILESUFFIXES and
2567 $FORTRANFILESUFFIXES variables.
2571 - Make the -d, -e, -w and --no-print-directory options "Ignored for
2572 compatibility." (We're not going to implement them.)
2574 - Fix a serious inefficiency in how SCons checks for whether any source
2575 files are missing when a Builder call creates many targets from many
2578 - In Java projects, make the target .class files depend only on the
2579 specific source .java files where the individual classes are defined.
2581 - Don't store duplicate source file entries in the .sconsign file so
2582 we don't endlessly rebuild the target(s) for no reason.
2584 - Add a Variables object as the first step towards deprecating the
2585 Options object name. Similarly, add BoolVariable(), EnumVariable(),
2586 ListVariable(), PackageVariable() and PathVariable() functions
2587 as first steps towards replacing BoolOption(), EnumOption(),
2588 ListOption(), PackageOption() and PathOption().
2590 - Change the options= keyword argument to the Environment() function
2591 to variables=, to avoid confusion with SCons command-line options.
2592 Continue supporting the options= keyword for backwards compatibility.
2594 - When $SWIGFLAGS contains the -python flag, expect the generated .py
2595 file to be in the same (sub)directory as the target.
2597 - When compiling C++ files, allow $CCFLAGS settings to show up on the
2598 command line even when $CXXFLAGS has been redefined.
2600 - Fix --interactive with -u/-U/-D when a VariantDir() is used.
2602 From Anatoly Techtonik:
2604 - Have the scons.bat file add the script execution directory to its
2605 local %PATH% on Windows, so the Python executable can be found.
2609 - Fix passing variable names as a list to the Return() function.
2611 From Matthew Wesley:
2613 - Add support for the GDC 'D' language compiler.
2617 RELEASE 0.98 - Sun, 30 Mar 2008 23:33:05 -0700
2621 - Fix the --keep-going flag so it builds all possible targets even when
2622 a later top-level target depends on a child that failed its build.
2624 - Fix being able to use $PDB and $WINDWOWS_INSERT_MANIFEST together.
2626 - Don't crash if un-installing the Intel C compiler leaves left-over,
2627 dangling entries in the Windows registry.
2629 - Improve support for non-standard library prefixes and suffixes by
2630 stripping all prefixes/suffixes from file name string as appropriate.
2632 - Reduce the default stack size for -j worker threads to 256 Kbytes.
2633 Provide user control over this value by adding --stack-size and
2634 --warn=stack-size options, and a SetOption('stack_size') function.
2636 - Fix a crash on Linux systems when trying to use the Intel C compiler
2637 and no /opt/intel_cc_* directories are found.
2639 - Improve using Python functions as actions by incorporating into
2640 a FunctionAction's signature:
2641 - literal values referenced by the byte code.
2642 - values of default arguments
2643 - code of nested functions
2644 - values of variables captured by closures
2645 - names of referenced global variables and functions
2647 - Fix the closing message when --clean and --keep-going are both
2648 used and no errors occur.
2650 - Add support for the Intel C compiler on Mac OS X.
2652 - Speed up reading SConscript files by about 20% (for some
2653 configurations) by: 1) optimizing the SCons.Util.is_*() and
2654 SCons.Util.flatten() functions; 2) avoiding unnecessary os.stat()
2655 calls by using a File's .suffix attribute directly instead of
2658 From Jérôme Berger:
2660 - Have the D language scanner search for .di files as well as .d files.
2662 - Add a find_include_names() method to the Scanner.Classic class to
2663 abstract out how included names can be generated by subclasses.
2665 - Allow the D language scanner to detect multiple modules imported by
2668 From Konstantin Bozhikov:
2670 - Support expansion of construction variables that contain or refer
2671 to lists of other variables or Nodes within expansions like $CPPPATH.
2673 - Change variable substitution (the env.subst() method) so that an
2674 input sequence (list or tuple) is preserved as a list in the output.
2676 From David Cournapeau:
2678 - Add a CheckDeclaration() call to configure contexts.
2680 - Improve the CheckTypeSize() code.
2682 - Add a Define() call to configure contexts, to add arbitrary #define
2683 lines to a generated configure header file.
2685 - Add a "gfortran" Tool module for the GNU F95/F2003 compiler.
2687 - Avoid use of -rpath with the Mac OS X linker.
2689 - Add comment lines to the generated config.h file to describe what
2690 the various #define/#undef lines are doing.
2694 - Support the ability to subclass the new-style "str" class as input
2697 - Improve the performance of our type-checking by using isinstance()
2698 with new-style classes.
2700 - Fix #include (and other $*PATH variables searches) of files with
2701 absolute path names. Don't die if they don't exist (due to being
2702 #ifdef'ed out or the like).
2704 - Fix --interactive mode when Default(None) is used.
2706 - Fix --debug=memoizer to work around a bug in base Python 2.2 metaclass
2707 initialization (by just not allowing Memoization in Python versions
2710 - Have the "scons-time time" subcommand handle empty log files, and
2711 log files that contain no results specified by the --which option.
2713 - Fix the max Y of vertical bars drawn by "scons-time --fmt=gnuplot".
2715 - On Mac OS X, account for the fact that the header file generated
2716 from a C++ file will be named (e.g.) file.cpp.h, not file.hpp.
2718 - Fix floating-point numbers confusing the Java parser about
2719 generated .class file names in some configurations.
2721 - Document (nearly) all the values you can now fetch with GetOption().
2723 - Fix use of file names containing strings of multiple spaces when
2724 using ActionFactory instances like the Copy() or Move() function.
2726 - Fix a 0.97 regression when using a variable expansion (like
2727 $OBJSUFFIX) in a source file name to a builder with attached source
2728 builders that match suffix (like Program()+Object()).
2730 - Have the Java parser recognize generics (surrounded by angle brackets)
2731 so they don't interfere with identifying anonymous inner classes.
2733 - Avoid an infinite loop when trying to use saved copies of the
2734 env.Install() or env.InstallAs() after replacing the method
2737 - Improve the performance of setting construction variables.
2739 - When cloning a construction environment, avoid over-writing an
2740 attribute for an added method if the user explicitly replaced it.
2742 - Add a warning about deprecated support for Python 1.5, 2.0 and 2.1.
2744 - Fix being able to SetOption('warn', ...) in SConscript files.
2746 - Add a warning about env.Copy() being deprecated.
2748 - Add warnings about the --debug={dtree,stree,tree} options
2751 - Add VariantDir() as the first step towards deprecating BuildDir().
2752 Add the keyword argument "variant_dir" as the replacement for
2755 - Add warnings about the {Target,Source}Signatures() methods and
2756 functions being deprecated.
2760 - Enhance TeX and LaTeX support to work with BuildDir(duplicate=0).
2762 - Re-run LaTeX when it issues a package warning that it must be re-run.
2764 From Leanid Nazdrynau:
2766 - Have the Copy() action factory preserve file modes and times
2767 when copying individual files.
2771 - If $JARCHDIR isn't set explicitly, use the .java_classdir attribute
2772 that was set when the Java() Builder built the .class files.
2776 - Document the Dir(), File() and Entry() methods of Dir and File Nodes.
2778 - Add the parse_flags option when creating Environments
2780 From Gary Oberbrunner:
2782 - Make File(), Dir() and Entry() return a list of Nodes when passed
2783 a list of names, instead of trying to make a string from the name
2784 list and making a Node from that string.
2786 - Fix the ability to build an Alias in --interactive mode.
2788 - Fix the ability to hash the contents of actions for nested Python
2789 functions on Python versions where the inability to pickle them
2790 returns a TypeError (instead of the documented PicklingError).
2794 - Fix use of the Intel C compiler when the top compiler directory,
2795 but not the compiler version, is specified.
2797 - Handle Intel C compiler network license files (port@system).
2801 - Fix how Python Value Nodes are printed in --debug=explain output.
2805 - Add a --interactive option that starts a session for building (or
2806 cleaning) targets without re-reading the SConscript files every time.
2808 - Fix use of readline command-line editing in --interactive mode.
2810 - Have the --interactive mode "build" command with no arguments
2811 build the specified Default() targets.
2813 - Fix the Chmod(), Delete(), Mkdir() and Touch() Action factories to
2814 take a list (of Nodes or strings) as arguments.
2816 From Vaclav Smilauer:
2818 - Fix saving and restoring an Options value of 'all' on Python
2819 versions where all() is a builtin function.
2821 From Daniel Svensson:
2823 - Code correction in SCons.Util.is_List().
2827 - Support the SWIG %module statement with following modifiers in
2828 parenthese (e.g., '%module(directors="1")').
2832 RELEASE 0.97.0d20071212 - Wed, 12 Dec 2007 09:29:32 -0600
2836 - Fix occasional spurious rebuilds and inefficiency when using
2837 --implicit-cache and Builders that produce multiple targets.
2839 - Allow SCons to not have to know about the builders of generated
2840 files when BuildDir(duplicate=0) is used, potentially allowing some
2841 SConscript files to be ignored for smaller builds.
2843 From David Cournapeau:
2845 - Add a CheckTypeSize() call to configure contexts.
2849 - Make the "contents" of Alias Nodes a concatenation of the children's
2850 content signatures (MD5 checksums), not a concatenation of the
2851 children's contents, to avoid using large amounts of memory during
2852 signature calculation.
2856 - Fix a lot of typos in the man page and User's Guide.
2858 From Geoffrey Irving:
2860 - Speed up conversion of paths in .sconsign files to File or Dir Nodes.
2864 - Add an Options.UnknownOptions() method that returns any settings
2865 (from the command line, or whatever dictionary was passed in)
2866 that aren't known to the Options object.
2868 - Add a Glob() function.
2870 - When removing targets with the -c option, use the absolute path (to
2871 avoid problems interpreting BuildDir() when the top-level directory
2872 is the source directory).
2874 - Fix problems with Install() and InstallAs() when called through a
2875 clone (of a clone, ...) of a cloned construction environment.
2877 - When executing a file containing Options() settings, add the file's
2878 directory to sys.path (so modules can be imported from there) and
2879 explicity set __name__ to the name of the file so the statement's
2880 in the file can deduce the location if they need to.
2882 - Fix an O(n^2) performance problem when adding sources to a target
2883 through calls to a multi Builder (including Aliases).
2885 - Redefine the $WINDOWSPROGMANIFESTSUFFIX and
2886 $WINDOWSSHLIBMANIFESTSUFFIX variables so they pick up changes to
2887 the underlying $SHLIBSUFFIX and $PROGSUFFIX variables.
2889 - Add a GetBuildFailures() function that can be called from functions
2890 registered with the Python atexit module to print summary information
2891 about any failures encountered while building.
2893 - Return a NodeList object, not a Python list, when a single_source
2894 Builder like Object() is called with more than one file.
2896 - When searching for implicit dependency files in the directories
2897 in a $*PATH list, don't create Dir Nodes for directories that
2898 don't actually exist on-disk.
2900 - Add a Requires() function to allow the specification of order-only
2901 prerequisites, which will be updated before specified "downstream"
2902 targets but which don't actually cause the target to be rebuilt.
2904 - Restore the FS.{Dir,File,Entry}.rel_path() method.
2906 - Make the default behavior of {Source,Target}Signatures('timestamp')
2907 be equivalent to 'timestamp-match', not 'timestamp-newer'.
2909 - Fix use of CacheDir with Decider('timestamp-newer') by updating
2910 the modification time when copying files from the cache.
2912 - Fix random issues with parallel (-j) builds on Windows when Python
2913 holds open file handles (especially for SCons temporary files,
2914 or targets built by Python function actions) across process creation.
2916 From Maxim Kartashev:
2918 - Fix test scripts when run on Solaris.
2920 From Gary Oberbrunner:
2922 - Fix Glob() when a pattern is in an explicitly-named subdirectory.
2924 From Philipp Scholl:
2926 - Fix setting up targets if multiple Package builders are specified
2931 RELEASE 0.97.0d20070918 - Tue, 18 Sep 2007 10:51:27 -0500
2935 - Fix the wix Tool module to handle null entries in $PATH variables.
2937 - Move the documentation of Install() and InstallAs() from the list
2938 of functions to the list of Builders (now that they're implemented
2941 - Allow env.CacheDir() to be set per construction environment. The
2942 global CacheDir() function now sets an overridable global default.
2944 - Add an env.Decider() method and a Node.Decider() method that allow
2945 flexible specification of an arbitrary function to decide if a given
2946 dependency has changed since the last time a target was built.
2948 - Don't execute Configure actions (while reading SConscript files)
2949 when cleaning (-c) or getting help (-h or -H).
2951 - Add to each target an implicit dependency on the external command(s)
2952 used to build the target, as found by searching env['ENV']['PATH']
2953 for the first argument on each executed command line.
2955 - Add support for a $IMPLICIT_COMMAND_DEPENDENCIES construction
2956 variabe that can be used to disable the automatic implicit
2957 dependency on executed commands.
2959 - Add an "ensure_suffix" keyword to Builder() definitions that, when
2960 true, will add the configured suffix to the targets even if it looks
2961 like they already have a different suffix.
2963 - Add a Progress() function that allows for calling a function or string
2964 (or list of strings) to display progress while walking the DAG.
2966 - Allow ParseConfig(), MergeFlags() and ParseFlags() to handle output
2967 from a *config command with quoted path names that contain spaces.
2969 - Make the Return() function stop processing the SConscript file and
2970 return immediately. Add a "stop=" keyword argument that can be set
2971 to False to preserve the old behavior.
2973 - Fix use of exitstatfunc on an Action.
2975 - Introduce all man page function examples with "Example:" or "Examples:".
2977 - When a file gets added to a directory, make sure the directory gets
2978 re-scanned for the new implicit dependency.
2980 - Fix handling a file that's specified multiple times in a target
2981 list so that it doesn't cause dependent Nodes to "disappear" from
2982 the dependency graph walk.
2986 - Avoid race conditions with same-named files and directory creation
2987 when pushing copies of files to CacheDir().
2991 - Handle $ in Java class names.
2993 From Gary Oberbrunner:
2995 - Add support for the Intel C compiler on Windows64.
2997 - On SGI IRIX, have $SHCXX use $CXX by default (like other platforms).
3001 - When Cloning a construction environment, set any variables before
3002 applying tools (so the tool module can access the configured settings)
3003 and re-set them after (so they end up matching what the user set).
3005 From Matthias Troffaes:
3007 - Make sure extra auxiliary files generated by some LaTeX packages
3008 and not ending in .aux also get deleted by scons -c.
3012 - Add a $JAVABOOTCLASSPATH variable for directories to be passed to the
3013 javac -bootclasspath option.
3015 From Christoph Wiedemann:
3017 - Add implicit dependencies on the commands used to build a target.
3022 RELEASE 0.97.0d20070809 - Fri, 10 Aug 2007 10:51:27 -0500
3024 From Lars Albertsson:
3026 - Don't error if a #include line happens to match a directory
3027 somewhere on a path (like $CPPPATH, $FORTRANPATH, etc.).
3029 From Mark Bertoglio:
3031 - Fix listing multiple projects in Visual Studio 7.[01] solution files,
3032 including generating individual project GUIDs instead of re-using
3037 - Add /opt/SUNWspro/bin to the default execution PATH on Solaris.
3041 - Only expect the Microsoft IDL compiler to emit *_p.c and *_data.c
3042 files if the /proxy and /dlldata switches are used (respectively).
3046 - Have --debug=explain report if a target is being rebuilt because
3047 AlwaysBuild() is specified (instead of "unknown reasons").
3049 - Support {Get,Set}Option('help') to make it easier for SConscript
3050 files to tell if a help option (-h, --help, etc.) has been specified.
3052 - Support {Get,Set}Option('random') so random-dependency interaction
3053 with CacheDir() is controllable from SConscript files.
3055 - Add a new AddOption() function to support user-defined command-
3056 line flags (like --prefix=, --force, etc.).
3058 - Replace modified Optik version with new optparse compatibility module
3059 for command line processing in Scripts/SConsOptions.py
3061 - Push and retrieve built symlinks to/from a CacheDir() as actual
3062 symlinks, not by copying the file contents.
3064 - Fix how the Action module handles stringifying the shared library
3065 generator in the Tool/mingw.py module.
3067 - When generating a config.h file, print "#define HAVE_{FEATURE} 1"
3068 instad of just "#define HAVE_{FEATURE}", for more compatibility
3069 with Autoconf-style projects.
3071 - Fix expansion of $TARGET, $TARGETS, $SOURCE and $SOURCES keywords in
3072 Visual C/C++ PDB file names.
3074 - Fix locating Visual C/C++ PDB files in build directories.
3076 - Support an env.AddMethod() method and an AddMethod() global function
3077 for adding a new method, respectively, to a construction environment
3078 or an arbitrary object (such as a class).
3080 - Fix the --debug=time option when the -j option is specified and all
3081 files are up to date.
3083 - Add a $SWIGOUTDIR variable to allow setting the swig -outdir option,
3084 and use it to identify files created by the swig -java option.
3086 - Add a $SWIGPATH variable that specifies the path to be searched
3087 for included SWIG files, Also add related $SWIGINCPREFIX and
3088 $SWIGINCSUFFIX variables that specify the prefix and suffix to
3089 be be added to each $SWIGPATH directory when expanded on the SWIG
3092 - More efficient copying of construction environments (mostly borrowed
3093 from copy.deepcopy() in the standard Python library).
3095 - When printing --tree=prune output, don't print [brackets] around
3096 source files, only do so for built targets with children.
3098 - Fix interpretation of Builder source arguments when the Builder has
3099 a src_suffix *and* a source_builder and the argument has no suffix.
3101 - Fix use of expansions like ${TARGET.dir} or ${SOURCE.dir} in the
3102 following construction variables: $FORTRANMODDIR, $JARCHDIR,
3103 $JARFLAGS, $LEXFLAGS, $SWIGFLAGS, $SWIGOUTDIR and $YACCFLAGS.
3105 - Fix dependencies on Java files generated by SWIG so they can be
3106 detected and built in one pass.
3108 - Fix SWIG when used with a BuildDir().
3110 From Leanid Nazdrynau:
3112 - When applying Tool modules after a construction environment has
3113 already been created, don't overwrite existing $CFILESUFFIX and
3114 $CXXFILESUFFIX value.
3116 - Support passing the Java() builder a list of explicit .java files
3117 (not only a list of directories to be scanned for .java files).
3119 - Support passing .java files to the Jar() and JavaH() builders, which
3120 then use the builder underlying the Java() builder to turn them into
3121 .class files. (That is, the Jar()-Java() chain of builders become
3122 multi-step, like the Program()-Object()-CFile() builders.)
3124 - Support passing SWIG .i files to the Java builders (Java(),
3125 Jar(), JavaH()), to cause intermediate .java files to be created
3128 - Add $JAVACLASSPATH and $JAVASOURCEPATH variables, that get added to
3129 the javac "-classpath" and "-sourcepath" options. (Note that SCons
3130 does *not* currently search these paths for implicit dependencies.)
3132 - Commonize initialization of Java-related builders.
3136 - Find Java anonymous classes when the next token after the name is
3137 an open parenthesis.
3139 From Gary Oberbrunner:
3141 - Fix a code example in the man page.
3145 - Add support for the file names that Java 1.5 (and 1.6) generates for
3146 nested anonymous inner classes, which are different from Java 1.4.
3150 - Allow worker threads to terminate gracefully when all jobs are
3155 - Add LaTeX scanner support for finding dependencies specified with
3156 the \usepackage{} directive.
3160 RELEASE 0.97 - Thu, 17 May 2007 08:59:41 -0500
3164 - Fix a bug that would make parallel builds stop in their tracks if
3165 Nodes that depended on lists that contained some Nodes built together
3166 caused the reference count to drop below 0 if the Nodes were visited
3167 and commands finished in the wrong order.
3169 - Make sure the DirEntryScanner doesn't choke if it's handed something
3170 that's not a directory (Node.FS.Dir) Node.
3174 RELEASE 0.96.96 - Thu, 12 Apr 2007 12:36:25 -0500
3176 NOTE: This is (Yet) a(nother) pre-release of 0.97 for testing purposes.
3180 - Man page fix: remove cut-and-paste sentence in NoCache() description.
3182 From Dmitry Grigorenko and Gary Oberbrunner:
3184 - Use the Intel C++ compiler, not $CC, to link C++ source.
3188 - Fix the man page example of propagating a user's external environment.
3192 - Back out (most of) the Windows registry installer patch, which
3193 seems to not work on some versions of Windows.
3195 - Don't treat Java ".class" attributes as defining an inner class.
3197 - Fix detecting an erroneous Java anonymous class when the first
3198 non-skipped token after a "new" keyword is a closing brace.
3200 - Fix a regression when a CPPDEFINES list contains a tuple, the second
3201 item of which (the option value) is a construction variable expansion
3202 (e.g. $VALUE) and the value of the variable isn't a string.
3204 - Improve the error message if an IOError (like trying to read a
3205 directory as a file) occurs while deciding if a node is up-to-date.
3207 - Fix "maximum recursion" / "unhashable type" errors in $CPPPATH
3208 PathList expansion if a subsidiary expansion yields a stringable,
3211 - Generate API documentation from the docstrings (using epydoc).
3213 - Fix use of --debug=presub with Actions for out-of-the-box Builders.
3215 - Fix handling nested lists within $CPPPATH, $LIBPATH, etc.
3217 - Fix a "builders_used" AttributeError that real-world Qt initialization
3218 triggered in the refactored suffix handling for Builders.
3220 - Make the reported --debug=time timings meaningful when used with -j.
3221 Better documentation of what the times mean.
3223 - User Guide updates: --random, AlwaysBuild(), --tree=,
3224 --debug=findlibs, --debug=presub, --debug=stacktrace,
3227 - Document (in both man page and User's Guide) that --implicit-cache
3228 ignores changes in $CPPPATH, $LIBPATH, etc.
3230 From Jean-Baptiste Lab:
3232 - Remove hard-coded dependency on Python 2.2 from Debian packaging files.
3236 - Handle spaces in the build target name in Visual Studio project files.
3240 - Re-run LaTeX after BibTeX has been re-run in response to a changed
3243 From Joel B. Mohler:
3245 - Make additional TeX auxiliary files (.toc, .idx and .bbl files)
3246 Precious so their removal doesn't affect whether the necessary
3247 sections are included in output PDF or PostScript files.
3249 From Gary Oberbrunner:
3251 - Fix the ability to import modules in the site_scons directory from
3256 - Make sure parallel (-j) builds all targets even if they show up
3257 multiple times in the child list (as a source and a dependency).
3259 From Matthias Troffaes:
3261 - Don't re-run TeX if the triggering strings (\makeindex, \bibliography
3262 \tableofcontents) are commented out.
3266 - Fix use of custom include and lib paths with Visual Studio 8.
3268 - Select the default .NET Framework SDK Dir based on the version of
3269 Visual Studio being used.
3273 RELEASE 0.96.95 - Mon, 12 Feb 2007 20:25:16 -0600
3275 From Anatoly Techtonik:
3277 - Add the scons.org URL and a package description to the setup.py
3280 - Have the Windows installer add a registry entry for scons.bat in the
3281 "App Paths" key, so scons.bat can be executed without adding the
3282 directory to the %PATH%. (Python itself works this way.)
3286 - Fix looking for default paths in Visual Studio 8.0 (and later).
3288 - Add -lm to the list of default D libraries for linking.
3292 - Provide a more complete write-your-own-Scanner example in the man page.
3294 From Ralf W. Grosse-Kunstleve:
3296 - Contributed upstream Python change to our copied subprocess.py module
3297 for more efficient standard input processing.
3301 - Fix the Node.FS.Base.rel_path() method when the two nodes are on
3302 different drive letters. (This caused an infinite loop when
3303 trying to write .sconsign files.)
3305 - Fully support Scanners that use a dictionary to map file suffixes
3308 - Support delayed evaluation of the $SPAWN variable to allow selection
3309 of a function via ${} string expansions.
3311 - Add --srcdir as a synonym for -Y/--repository.
3313 - Document limitations of #include "file.h" with Repository().
3315 - Fix use of a toolpath under the source directory of a BuildDir().
3317 - Fix env.Install() with a file name portion that begins with '#'.
3319 - Fix ParseConfig()'s handling of multiple options in a string that's
3320 replaced a *FLAGS construction variable.
3322 - Have the C++ tools initialize common C compilation variables ($CCFLAGS,
3323 $SHCCFLAGS and $_CCCOMCOM) even if the 'cc' Tool isn't loaded.
3325 From Leanid Nazdrynau:
3327 - Fix detection of Java anonymous classes if a newline precedes the
3330 From Gary Oberbrunner:
3332 - Document use of ${} to execute arbitrary Python code.
3335 1) automatically adding a site_scons subdirectory (in the top-level
3336 SConstruct directory) to sys.path (PYTHONPATH);
3337 2) automatically importing site_scons/site_init.py;
3338 3) automatically adding site_scons/site_tools to the toolpath.
3342 - Change ParseConfig() to preserve white space in arguments passed in
3347 - Fix adding explicitly-named Java inner class files (and any
3348 other file names that may contain a '$') to Jar files.
3352 - Add a NoCache() function to mark targets as unsuitable for propagating
3353 to (or retrieving from) a CacheDir().
3357 - If the swig -noproxy option is used, it won't generate a .py file,
3358 so don't emit it as a target that we expect to be built.
3362 RELEASE 0.96.94 - Sun, 07 Jan 2007 18:36:20 -0600
3364 NOTE: This is a pre-release of 0.97 for testing purposes.
3368 - Allow arbitrary white space after a SWIG %module declaration.
3372 - When compiling resources under MinGW, make sure there's a space
3373 between the --include-dir option and its argument.
3377 - Alleviate long command line issues on Windows by executing command
3378 lines directly via os.spawnv() if the command line doesn't need
3379 shell interpretation (has no pipes, redirection, etc.).
3381 From Walter Franzini:
3383 - Exclude additional Debian packaging files from the copyright check.
3387 - Handle the conflict between the impending Python 2.6 'as' keyword
3388 and our Tool/as.py module name.
3392 - Speed up the Node.FS.Dir.rel_path() method used to generate path names
3393 that get put into the .sconsign* file(s).
3395 - Optimize Node.FS.Base.get_suffix() by computing the suffix once, up
3396 front, when we set the Node's name. (Duh...)
3398 - Reduce the Memoizer's responsibilities to simply counting hits and
3399 misses when the --debug=memoizer option is used, not to actually
3400 handling the key calculation and memoization itself. This speeds
3401 up some configurations significantly, and should cause no functional
3404 - Add a new scons-time script with subcommands for generating
3405 consistent timing output from SCons configurations, extracting
3406 various information from those timings, and displaying them in
3409 - Reduce some unnecessary stat() calls from on-disk entry type checks.
3411 - Fix SideEffect() when used with -j, which was badly broken in 0.96.93.
3413 - Propagate TypeError exceptions when evaluating construction variable
3414 expansions up the stack, so users can see what's going on.
3416 - When disambiguating a Node.FS.Entry into a Dir or File, don't look
3417 in the on-disk source directory until we've confirmed there's no
3418 on-disk entry locally and there *is* one in the srcdir. This avoids
3419 creating a phantom Node that can interfere with dependencies on
3422 - Add an AllowSubstExceptions() function that gives the SConscript
3423 files control over what exceptions cause a string to expand to ''
3424 vs. terminating processing with an error.
3426 - Allow the f90.py and f95.py Tool modules to compile earlier source
3427 source files of earlier Fortran version.
3429 - Fix storing signatures of files retrieved from CacheDir() so they're
3430 correctly identified as up-to-date next invocation.
3432 - Make sure lists of computed source suffixes cached by Builder objects
3433 don't persist across changes to the list of source Builders (so the
3434 addition of suffixes like .ui by the qt.py Tool module take effect).
3436 - Enhance the bootstrap.py script to allow it to be used to execute
3437 SCons more easily from a checked-out source tree.
3441 - Fix post-Memoizer value caching misspellings in Node.FS._doLookup().
3443 From Rob Managan, Dmitry Mikhin and Joel B. Mohler:
3445 - Handle TeX/LaTeX files in subdirectories by changing directory
3446 before invoking TeX/LaTeX.
3448 - Scan LaTeX files for \bibliography lines.
3450 - Support multiple file names in a "\bibliography{file1,file2}" string.
3452 - Handle TeX warnings about undefined citations.
3454 - Support re-running LaTeX if necessary due to a Table of Contents.
3458 - Return LaTeX if "Rerun to get citations correct" shows up on the next
3459 line after the "Warning:" string.
3461 From Gary Oberbrunner:
3463 - Add #include lines to fix portability issues in two tests.
3465 - Eliminate some unnecessary os.path.normpath() calls.
3467 - Add a $CFLAGS variable for C-specific options, leaving $CCFLAGS
3468 for options common to C and C++.
3472 - Have the error message print the missing file that Qt can't find.
3476 - Fix env.MergeFlags() appending to construction variable value of None.
3480 - Fix the "sconsign" script when the .sconsign.dblite file is explicitly
3481 specified on the command line (and not intuited from the old way of
3482 calling it with just ".sconsign").
3484 From Jose Pablo Ezequiel "Pupeno" Fernandez Silva:
3486 - Give the 'lex' tool knowledge of the additional target files produced
3487 by the flex "--header-file=" and "--tables-file=" options.
3489 - Give the 'yacc' tool knowledge of the additional target files produced
3490 by the bison "-g", "--defines=" and "--graph=" options.
3492 - Generate intermediate files with Objective C file suffixes (.m) when
3493 the lex and yacc source files have appropriate suffixes (.lm and .ym).
3497 - Have the mslink.py Tool only look for a 'link' executable on Windows
3500 From Vaclav Smilauer:
3502 - Add support for a "srcdir" keyword argument when calling a Builder,
3503 which will add a srcdir prefix to all non-relative string sources.
3505 From Jonathan Ultis:
3507 - Allow Options converters to take the construction environment as
3508 an optional argument.
3512 RELEASE 0.96.93 - Mon, 06 Nov 2006 00:44:11 -0600
3514 NOTE: This is a pre-release of 0.97 for testing purposes.
3518 - Allow Python Value Nodes to be Builder targets.
3522 - Only filter Visual Studio common filename prefixes on complete
3527 - Fix the build of the SCons documentation on systems that don't
3528 have "python" in the $PATH.
3532 - Enhance ParseConfig() to recognize options that begin with '+'.
3534 From John Calcote, Elliot Murphy:
3536 - Document ways to override the CCPDBFLAGS variable to use the
3537 Microsoft linker's /Zi option instead of the default /Z7.
3539 From Christopher Drexler:
3541 - Make SCons aware bibtex must be called if any \include files
3542 cause creation of a bibliography.
3544 - Make SCons aware that "\bilbiography" in TeX source files means
3545 that related .bbl and .blg bibliography files will be created.
3546 (NOTE: This still needs to search for the string in \include files.)
3550 - Fix inconsistent handling of Action strfunction arguments.
3552 - Preserve white space in display Action strfunction strings.
3554 From James Y. Knight and Gerard Patel:
3556 - Support creation of shared object files from assembly language.
3560 - Speed up the Taskmaster significantly by avoiding unnecessary
3561 re-scans of Nodes to find out if there's work to be done, having it
3562 track the currently-executed top-level target directly and not
3563 through its presence on the target list, and eliminating some other
3564 minor list(s), method(s) and manipulation.
3566 - Fix the expansion of $TARGET and $SOURCE in the expansion of
3567 $INSTALLSTR displayed for non-environment calls to InstallAs().
3569 - Fix the ability to have an Alias() call refer to a directory
3570 name that's not identified as a directory until later.
3572 - Enhance runtest.py with an option to use QMTest as the harness.
3573 This will become the default behavior as we add more functionality
3576 - Let linking on mingw use the default function that chooses $CC (gcc)
3577 or $CXX (g++) depending on whether there are any C++ source files.
3579 - Work around a bug in early versions of the Python 2.4 profile module
3580 that caused the --profile= option to fail.
3582 - Only call Options validators and converters once when initializing a
3583 construction environment.
3585 - Fix the ability of env.Append() and env.Prepend(), in all known Python
3586 versions, to handle different input value types when the construction
3587 variable being updated is a dictionary.
3589 - Add a --cache-debug option for information about what files it's
3590 looking for in a CacheDir().
3592 - Document the difference in construction variable expansion between
3593 {Action,Builder}() and env.{Action,Builder}().
3595 - Change the name of env.Copy() to env.Clone(), keeping the old name
3596 around for backwards compatibility (with the intention of eventually
3597 phasing it out to avoid confusion with the Copy() Action factory).
3601 - Support cleaning and scanning SWIG-generated files.
3605 - Allow selection of Visual Studio version by setting $MSVS_VERSION
3606 after construction environment initialization.
3608 From Jean-Baptiste Lab:
3610 - Try using zipimport if we can't import Tool or Platform modules
3611 using the normal "imp" module. This allows SCons to be packaged
3612 using py2exe's all-in-one-zip-file approach.
3616 - Do not re-scan files if the scanner returns no implicit dependencies.
3618 From Sanjoy Mahajan:
3620 - Change use of $SOURCES to $SOURCE in all TeX-related Tool modules.
3622 From Joel B. Mohler:
3624 - Make SCons aware that "\makeindex" in TeX source files means that
3625 related .ilg, .ind and .idx index files will be created.
3626 (NOTE: This still needs to search for the string in \include files.)
3628 - Prevent scanning the TeX .aux file for additional files from
3629 trying to remove it twice when the -c option is used.
3631 From Leanid Nazdrynau:
3633 - Give the MSVC RES (resource) Builder a src_builder list and a .rc
3634 src_suffix so other builders can generate .rc files.
3636 From Matthew A. Nicholson:
3638 - Enhance Install() and InstallAs() to handle directory trees as sources.
3642 - Don't use the -fPIC flag when using gcc on Windows (e.g. MinGW).
3646 - Add an env.ParseFlags() method that provides separate logic for
3647 parsing GNU tool chain flags into a dictionary.
3649 - Add an env.MergeFlags() method to apply an arbitrary dictionary
3650 of flags to a construction environment's variables.
3652 From Gary Oberbrunner:
3654 - Fix parsing tripartite Intel C compiler version numbers on Linux.
3656 - Extend the ParseConfig() function to recognize -arch and
3659 - Have the error message list the known suffixes when a Builder call
3660 can't build a source file with an unknown suffix.
3662 From Karol Pietrzak:
3664 - Avoid recursive calls to main() in the program snippet used by the
3665 SConf subsystem to test linking against libraries. This changes the
3666 default behavior of CheckLib() and CheckLibWithHeader() to print
3667 "Checking for C library foo..." instead of "Checking for main()
3668 in C library foo...".
3672 - Throw an exception if a command called by ParseConfig() or
3673 ParseFlags() returns an error.
3675 From Stefan Seefeld:
3677 - Initial infrastructure for running SCons tests under QMTest.
3681 - Fix tests that fail due to gcc warnings.
3683 From Dobes Vandermeer:
3685 - In stack traces, print the full paths of SConscript files.
3689 - Fix detection of Visual C++ Express Edition.
3691 From Dobes Vandermeer:
3693 - Let the src_dir option to the SConscript() function affect all the
3694 the source file paths, instead of treating all source files paths
3695 as relative to the SConscript directory itself.
3697 From Nicolas Vigier:
3699 - Fix finding Fortran modules in build directories.
3701 - Fix use of BuildDir() when the source file in the source directory
3702 is a symlink with a relative path.
3706 - Fix the Memoizer when the SCons Python modules are executed from
3707 .pyo files at different locations from where they were compiled.
3711 - Fix missing os.path.join() when constructing the $FRAMEWORKSDKDIR/bin.
3715 RELEASE 0.96.92 - Mon, 10 Apr 2006 21:08:22 -0400
3717 NOTE: This was a pre-release of 0.97 for testing purposes.
3721 - Fix the intelc.py Tool module to not throw an exception if the
3722 only installed version is something other than ia32.
3724 - Set $CCVERSION when using gcc.
3728 - Support generating project and solution files for Microsoft
3729 Visual Studio version 8.
3731 - Support generating more than one project file for a Microsoft
3732 Visual Studio solution file.
3734 - Add support for a support "runfile" parameter to Microsoft
3735 Visual Studio project file creation.
3737 - Put the project GUID, not the solution GUID, in the right spot
3738 in the solution file.
3740 From Erling Andersen:
3742 - Fix interpretation of Node.FS objects wrapped in Proxy instances,
3743 allowing expansion of things like ${File(TARGET)} in command lines.
3745 From Stanislav Baranov:
3747 - Add a separate MSVSSolution() Builder, with support for the
3748 following new construction variables: $MSVSBUILDCOM, $MSVSCLEANCOM,
3749 $MSVSENCODING, $MSVSREBUILDCOM, $MSVSSCONS, $MSVSSCONSCOM,
3750 $MSVSSCONSFLAGS, $MSVSSCONSCRIPT and $MSVSSOLUTIONCOM.
3752 From Ralph W. Grosse-Kunstleve and Patrick Mezard:
3754 - Remove unneceesary (and incorrect) SCons.Util strings on some function
3755 calls in SCons.Util.
3759 - Fix C/C++ compiler selection on AIX to not always use the external $CC
3760 environment variable.
3762 From August Hörandl:
3764 - Add a scanner for \include and \import files, with support for
3765 searching a directory list in $TEXINPUTS (imported from the external
3768 - Support $MAKEINDEX, $MAKEINDEXCOM, $MAKEINDEXCOMSTR and
3769 $MAKEINDEXFLAGS for generating indices from .idx files.
3771 From Steven Johnson:
3773 - Add a NoClean() Environment method and function to override removal
3774 of targets during a -c clean, including documentation and tests.
3778 - Check for whether files exist on disk by listing the directory
3779 contents, not calling os.path.exists() file by file. This is
3780 somewhat more efficient in general, and may be significantly
3781 more efficient on Windows.
3783 - Minor speedups in the internal is_Dict(), is_List() and is_String()
3786 - Fix a signature refactoring bug that caused Qt header files to
3787 get re-generated every time.
3789 - Don't fail when writing signatures if the .sconsign.dblite file is
3790 owned by a different user (e.g. root) from a previous run.
3792 - When deleting variables from stacked OverrideEnvironments, don't
3793 throw a KeyError if we were able to delte the variable from any
3794 Environment in the stack.
3796 - Get rid of the last indentation tabs in the SCons source files and
3797 add -tt to the Python invocations in the packaging build and the
3798 tests so they don't creep back in.
3800 - In Visual Studio project files, put quotes around the -C directory
3801 so everything works even if the path has spaces in it.
3803 - The Intel Fortran compiler uses -object:$TARGET, not "-o $TARGET",
3804 when building object files on Windows. Have the the ifort Tool
3805 modify the default command lines appropriately.
3807 - Document the --debug=explain option in the man page. (How did we
3810 - Add a $LATEXRETRIES variable to allow configuration of the number of
3811 times LaTex can be re-called to try to resolve undefined references.
3813 - Change the order of the arguments to Configure.Checklib() to match
3816 - Handle signature calculation properly when the Python function used
3817 for a FunctionAction is an object method.
3819 - On Windows, assume that absolute path names without a drive letter
3820 refer to the drive on which the SConstruct file lives.
3822 - Add /usr/ccs/bin to the end of the the default external execution
3825 - Add $PKGCHK and $PKGINFO variables for use on Solaris when searching
3826 for the SunPRO C++ compiler. Make the default value for $PKGCHK
3827 be /usr/sbin/pgkchk (since /usr/sbin isn't usually on the external
3830 - Fix a man page example of overriding variables when calling
3831 SharedLibrary() to also set the $LIBSUFFIXES variable.
3833 - Add a --taskmastertrace=FILE option to give some insight on how
3834 the taskmaster decides what Node to build next.
3836 - Changed the names of the old $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
3837 $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX construction variables to
3838 new $WINDOWSDEFPREFIX, $WINDOWSDEFSUFFIX, $WINDOWSDLLPREFIX and
3839 $WINDOWSIMPLIBPREFIX construction variables. The old names are now
3840 deprecated, but preserved for backwards compatibility.
3842 - Fix (?) a runtest.py hang on Windows when the --xml option is used.
3844 - Change the message when an error occurs trying to interact with the
3845 file system to report the target(s) in square brackets (as before) and
3846 the actual file or directory that encountered the error afterwards.
3850 - Add x64 support for Microsoft Visual Studio 8.
3852 From Baptiste Lepilleur:
3854 - Support the --debug=memory option on Windows when the Python version
3855 has the win32process and win32api modules.
3857 - Add support for Visual Studio 2005 Pro.
3859 - Fix portability issues in various tests: test/Case.py,
3860 Test/Java/{JAR,JARCHDIR,JARFLAGS,JAVAC,JAVACFLAGS,JAVAH,RMIC}.py,
3861 test/MSVS/vs-{6.0,7.0,7.1,8.0}-exec.py,
3862 test/Repository/{Java,JavaH,RMIC}.py,
3863 test/QT/{generated-ui,installed,up-to-date,warnings}.py,
3866 - Ignore pkgchk errors on Solaris when searching for the C++ compiler.
3868 - Speed up the SCons/EnvironmentTests.py unit tests.
3870 - Add a --verbose= option to runtest.py to print executed commands
3871 and their output at various levels.
3873 From Christian Maaser:
3875 - Add support for Visual Studio Express Editions.
3877 - Add support for Visual Studio 8 *.manifest files, includng
3878 new $WINDOWS_INSERT_MANIFEST, $WINDOWSPROGMANIFESTSUFFIX,
3879 $WINDOWSPROGMANIFESTPREFIX, $WINDOWSPROGMANIFESTSUFFIX,
3880 $WINDOWSSHLIBMANIFESTPREFIX and $WINDOWSSHLIBMANIFESTSUFFIX
3881 construction variables.
3885 - Fix detection of additional Java inner classes following use of a
3886 "new" keyword inside an inner class.
3888 From Sanjoy Mahajan:
3890 - Correct TeX-related command lines to just $SOURCE, not $SOURCES
3892 From Patrick Mezard:
3894 - Execute build commands for a command-line target if any of the
3895 files built along with the target is out of date or non-existent,
3896 not just if the command-line target itself is out of date.
3898 - Fix the -n option when used with -c to print all of the targets
3899 that will be removed for a multi-target Builder call.
3901 - If there's no file in the source directory, make sure there isn't
3902 one in the build directory, too, to avoid dangling files left
3903 over from previous runs when a source file is removed.
3905 - Allow AppendUnique() and PrependUnique() to append strings (and
3906 other atomic objects) to lists.
3908 From Joel B. Mohler:
3910 - Extend latex.py, pdflatex.py, pdftex.py and tex.py so that building
3911 from both TeX and LaTeX files uses the same logic to call $BIBTEX
3912 when it's necessary, to call $MAKEINDEX when it's necessary, and to
3913 call $TEX or $LATEX multiple times to handle undefined references.
3915 - Add an emitter to the various TeX builders so that the generated
3916 .aux and .log files also get deleted by the -c option.
3918 From Leanid Nazdrynau:
3920 - Fix the Qt UIC scanner to work with generated .ui files (by using
3921 the FindFile() function instead of checking by-hand for the file).
3923 From Jan Nieuwenhuizen:
3925 - Fix a problem with interpreting quoted argument lists on command lines.
3929 - Add /sw/bin to the default execution PATH on Mac OS X.
3933 - When building a .jar file and there is a $JARCHDIR, put the -C
3934 in front of each .class file on the command line.
3936 - Recognize the Java 1.5 enum keyword.
3938 From Asfand Yar Qazi:
3940 - Add /opt/bin to the default execution PATH on all POSIX platforms
3941 (between /usr/local/bin and /bin).
3945 - Fix the use of Configure() contexts from nested subsidiary
3948 From Christoph Schulz:
3950 - Add support for $CONFIGUREDIR and $CONFIGURELOG variables to control
3951 the directory and logs for configuration tests.
3953 - Add support for a $INSTALLSTR variable.
3955 - Add support for $RANLIBCOM and $RANLIBCOMSTR variables (which fixes
3956 a bug when setting $ARCOMSTR).
3960 - Add use of $CPPDEFINES to $RCCOM (resource file compilation) on MinGW.
3962 From Erick Tryzelaar:
3964 - Fix the error message when trying to report that a given option is
3965 not gettable/settable from an SConscript file.
3967 From Dobes Vandermeer:
3969 - Add support for SCC and other settings in Microsoft Visual
3970 Studio project and solution files: $MSVS_PROJECT_BASE_PATH,
3971 $MSVS_PROJECT_GUID, $MSVS_SCC_AUX_PATH, $MSVS_SCC_LOCAL_PATH,
3972 $MSVS_SCC_PROJECT_NAME, $MSVS_SCC_PROVIDER,
3974 - Add support for using a $SCONS_HOME variable (imported from the
3975 external environment, or settable internally) to put a shortened
3976 SCons execution line in the Visual Studio project file.
3978 From David J. Van Maren:
3980 - Only filter common prefixes from source files names in Visual Studio
3981 project files if the prefix is a complete (sub)directory name.
3985 - If $MSVSVERSIONS is already set, don't overwrite it with
3986 information from the registry.
3990 RELEASE 0.96.91 - Thu, 08 Sep 2005 07:18:23 -0400
3992 NOTE: This was a pre-release of 0.97 for testing purposes.
3996 - Have the environment store the toolpath and re-use it to find Tools
3997 modules during later Copy() or Tool() calls (unless overridden).
3999 - Normalize the directory path names in SConsignFile() database
4000 files so the same signature file can interoperate on Windows and
4001 non-Windows systems.
4003 - Make --debug=stacktrace print a stacktrace when a UserError is thrown.
4005 - Remove an old, erroneous cut-and-paste comment in Scanner/Dir.py.
4007 From Stanislav Baranov:
4009 - Make it possible to support with custom Alias (sub-)classes.
4011 - Allow Builders to take empty source lists when called.
4013 - Allow access to both TARGET and SOURCE in $*PATH expansions.
4015 - Allow SConscript files to modify BUILD_TARGETS.
4017 From Timothee Besset:
4019 - Add support for Objective C/C++ .m and .mm file suffixes (for
4024 - Fix the PharLap linkloc.py module to use target+source arguments
4025 when calling env.subst().
4027 From Bjorn Eriksson:
4029 - Fix an incorrect Command() keyword argument in the man page.
4031 - Add a $TEMPFILEPREFIX variable to control the prefix or flag used
4032 to pass a long-command-line-execution tempfile to a command.
4036 - Enhanced the SCons setup.py script to install man pages on
4039 - Add support for an Options.FormatOptionHelpText() method that can
4040 be overridden to customize the format of Options help text.
4042 - Add a global name for the Entry class (which had already been
4045 - Fix re-scanning of generated source files for implicit dependencies
4046 when the -j option is used.
4048 - Fix a dependency problem that caused $LIBS scans to not be added
4049 to all of the targets in a multiple-target builder call, which
4050 could cause out-of-order builds when the -j option is used.
4052 - Store the paths of source files and dependencies in the .sconsign*
4053 file(s) relative to the target's directory, not relative to the
4054 top-level SConstruct directory. This starts to make it possible to
4055 subdivide the dependency tree arbitrarily by putting an SConstruct
4056 file in every directory and using content signatures.
4058 - Add support for $YACCHFILESUFFIX and $YACCHXXFILESUFFIX variables
4059 that accomodate parser generators that write header files to a
4060 different suffix than the hard-coded .hpp when the -d option is used.
4062 - The default behavior is now to store signature information in a
4063 single .sconsign.dblite file in the top-level SConstruct directory.
4064 The old behavior of a separate .sconsign file in each directory can
4065 be specified by calling SConsignFile(None).
4067 - Remove line number byte codes within the signature calculation
4068 of Python function actions, so that changing the location of an
4069 otherwise unmodified Python function doesn't cause rebuilds.
4071 - Fix AddPreAction() and AddPostAction() when an action has more than
4072 one target file: attach the actions to the Executor, not the Node.
4074 - Allow the source directory of a BuildDir / build_dir to be outside
4075 of the top-level SConstruct directory tree.
4077 - Add a --debug=nomemoizer option that disables the Memoizer for clearer
4078 looks at the counts and profiles of the underlying function calls,
4079 not the Memoizer wrappers.
4081 - Print various --debug= stats even if we exit early (e.g. using -h).
4083 - Really only use the cached content signature value if the file
4084 is older than --max-drift, not just if --max-drift is set.
4086 - Remove support for conversion from old (pre 0.96) .sconsign formats.
4088 - Add support for a --diskcheck option to enable or disable various
4089 on-disk checks: that File and Dir nodes match on-disk entries;
4090 whether an RCS file exists for a missing source file; whether an
4091 SCCS file exists for a missing source file.
4093 - Add a --raw argument to the sconsign script, so it can print a
4094 raw representation of each entry's NodeInfo dictionary.
4096 - Add the 'f90' and 'f95' tools to the list of Fortran compilers
4097 searched for by default.
4099 - Add the +Z option by default when compiling shared objects on
4104 - Handle Visual Studio project and solution files in Unicode.
4106 From Sanjoy Mahajan:
4108 - Fix a bad use of Copy() in an example in the man page, and a
4109 bad regular expression example in the man page and User's Guide.
4113 - Have the Visual Studio project file(s) echo "Starting SCons" before
4114 executing SCons, mainly to work around a quote-stripping bug in
4115 (some versions of?) the Windows cmd command executor.
4117 From Georg Mischler:
4119 - Remove the space after the -o option when invoking the Borland
4120 BCC compiler; some versions apparently require that the file name
4121 argument be concatenated with the option.
4123 From Leanid Nazdrynau:
4125 - Fix the Java parser's handling of backslashes in strings.
4129 - Add construction variables to support frameworks on Mac OS X:
4130 $FRAMEWORKS, $FRAMEWORKPREFIX, $FRAMEWORKPATH, $FRAMEWORKPATHPREFIX.
4132 - Re-order link lines so the -o option always comes right after the
4135 From Gary Oberbrunner:
4137 - Add support for Intel C++ beta 9.0 (both 32 and 64 bit versions).
4139 - Document the new $FRAMEWORK* variables for Mac OS X.
4141 From Karol Pietrzak:
4143 - Add $RPATH (-R) support to the Sun linker Tool (sunlink).
4145 - Add a description of env.subst() to the man page.
4149 - Look in the right directory, not always the local directory, for a
4150 same-named file or directory conflict on disk.
4152 - On Windows, preserve the external environment's %SYSTEMDRIVE%
4157 - Have the Fortran module emitter look for Fortan modules to be created
4158 relative to $FORTRANMODDIR, not the top-level directory.
4160 - When saving Options to a file, run default values through the
4161 converter before comparing them with the set values. This correctly
4162 suppresses Boolean Option values from getting written to the saved
4163 file when they're one of the many synonyms for a default True or
4166 - Fix the Fortran Scanner's ability to handle a module being used
4167 in the same file in which it is defined.
4171 - Add the -KPIC option by default when compiling shared objects on
4174 - Change the default suffix for Solaris objects to .o, to conform to
4175 Sun WorkShop's expectations. Change the profix to so_ so they can
4176 still be differentiated from static objects in the same directory.
4180 - When calling the resource compiler on MinGW, add --include-dir and
4181 the source directory so it finds the source file.
4183 - Update EnsureSConsVersion() to support revision numbers.
4187 - Fix a misplaced line in the man page.
4191 RELEASE 0.96.90 - Tue, 15 Feb 2005 21:21:12 +0000
4193 NOTE: This was a pre-release of 0.97 for testing purposes.
4197 - Fix Java parsing to avoid erroneously identifying a new array
4198 of class instances as an anonymous inner class.
4200 - Fix a typo in the man page description of PathIsDirCreate.
4204 - Allow Help() to be called multiple times, appending to the help
4207 - Allow Tools found on a toolpath to import Python modules from
4208 their local directory.
4210 From Steve Christensen:
4212 - Handle exceptions from Python functions as build actions.
4214 - Add a set of canned PathOption validators: PathExists (the default),
4215 PathIsFile, PathIsDir and PathIsDirCreate.
4219 - Add support for .lex and .yacc file suffixes for Lex and Yacc files.
4223 - Huge performance improvement: wrap the tuples representing an
4224 include path in an object, so that the time it takes to hash the
4225 path doesn't grow porportionally to the length of the path.
4227 From Gottfried Ganssauge:
4229 - Fix SCons on SuSE/AMD-64 Linux by having the wrapper script also
4230 check for the build engine in the parent directory of the Python
4231 library directory (/usr/lib64 instead of /usr/lib).
4233 From Stephen Kennedy:
4235 - Speed up writing the .sconsign file at the end of a run by only
4236 calling sync() once at the end, not after every entry.
4240 - When compiling with Microsoft Visual Studio, don't include the ATL and
4241 MFC directories in the default INCLUDE and LIB environment variables.
4243 - Remove the following deprecated features: the ParseConfig()
4244 global function (deprecated in 0.93); the misspelled "validater"
4245 keyword to the Options.Add() method (deprecated in 0.91); the
4246 SetBuildSignatureType(), SetContentSignatureType(), SetJobs() and
4247 GetJobs() global functions (deprecated in 0.14).
4249 - Fix problems with corrupting the .sconsign.dblite file when
4250 interrupting builds by writing to a temporary file and renaming,
4251 not writing the file directly.
4253 - Fix a 0.96 regression where when running with -k, targets built from
4254 walking dependencies later on the command line would not realize
4255 that a dependency had failed an earlier build attempt, and would
4256 try to rebuild the dependent targets.
4258 - Change the final messages when using -k and errors occur from
4259 "{building,cleaning} terminated because of errors" to "done
4260 {building,cleaning} targets (errors occurred during {build,clean})."
4262 - Allow Configure.CheckFunc() to take an optional header argument
4263 (already supported by Conftest.py) to specify text at the top of
4264 the compiled test file.
4266 - Fix the --debug=explain output when a Python function action changed
4267 so it prints a meaningful string, not the binary representation of
4268 the function contents.
4270 - Allow a ListOption's default value(s) to be a Python list of specified
4271 values, not just a string containing a comma-separated list of names.
4273 - Add a ParseDepends() function that will parse up a list of explicit
4274 dependencies from a "make depend" style file.
4276 - Support the ability to change directory when executing an Action
4277 through "chdir" keyword arguments to Action and Builder creation
4280 - Fix handling of Action ojects (and other callables that don't match
4281 our calling arguments) in construction variable expansions.
4283 - On Win32, install scons.bat in the Python directory when installing
4284 from setup.py. (The bdist_wininst installer was already doing this.)
4286 - Fix env.SConscript() when called with a list of SConscipt files.
4287 (The SConscript() global function already worked properly.)
4289 - Add a missing newline to the end of the --debug=explain "unknown
4292 - Enhance ParseConfig() to work properly for spaces in between the -I,
4293 -L and -l options and their arguments.
4295 - Packaging build fix: Rebuild the files that are use to report the
4296 --version of SCons whenever the development version number changes.
4298 - Fix the ability to specify a target_factory of Dir() to a Builder,
4299 which the default create-a-directory Builder was interfering with.
4301 - Mark a directory as built if it's created as part of the preparation
4302 for another target, to avoid trying to build it again when it comes
4303 up in the target list.
4305 - Allow a function with the right calling signature to be put directly
4306 in an Environment's BUILDERS dictionary, making for easier creation
4307 and use of wrappers (pseudo-Builders) that call other Builders.
4309 - On Python 2.x, wrap lists of Nodes returned by Builders in a UserList
4310 object that adds a method that makes str() object return a string
4311 with all of the Nodes expanded to their path names. (Builders under
4312 Python 1.5.2 still return lists to avoid TypeErrors when trying
4313 to extend() list, so Python 1.5.2 doesn't get pretty-printing of Node
4314 lists, but everything should still function.)
4316 - Allow Aliases to have actions that will be executed whenever
4317 any of the expanded Alias targets are out of date.
4319 - Fix expansion of env.Command() overrides within target and
4322 - Support easier customization of what's displayed by various default
4323 actions by adding lots of new construction variables: $ARCOMSTR,
4324 $ASCOMSTR, $ASPPCOMSTR, $BIBTEXCOMSTR, $BITKEEPERCOMSTR, $CCCOMSTR,
4325 $CVSCOMSTR, $CXXCOMSTR, $DCOMSTR, $DVIPDFCOMSTR, $F77COMSTR,
4326 $F90COMSTR, $F95COMSTR, $FORTRANCOMSTR, $GSCOMSTR, $JARCOMSTR,
4327 $JAVACCOMSTR, $JAVAHCOMSTR, $LATEXCOMSTR, $LEXCOMSTR, $LINKCOMSTR,
4328 $M4COMSTR, $MIDLCOMSTR, $P4COMSTR, $PCHCOMSTR, $PDFLATEXCOMSTR,
4329 $PDFTEXCOMSTR, $PSCOMSTR, $QT_MOCFROMCXXCOMSTR, $QT_MOCFROMHCOMSTR,
4330 $QT_UICCOMSTR, $RCCOMSTR, $REGSVRCOMSTR, $RCS_COCOMSTR, $RMICCOMSTR,
4331 $SCCSCOMSTR, $SHCCCOMSTR, $SHCXXCOMSTR, $SHF77COMSTR, $SHF90COMSTR,
4332 $SHF95COMSTR, $SHFORTRANCOMSTR, $SHLINKCOMSTR, $SWIGCOMSTR,
4333 $TARCOMSTR, $TEXCOMSTR, $YACCCOMSTR and $ZIPCOMSTR.
4335 - Add an optional "map" keyword argument to ListOption() that takes a
4336 dictionary to map user-specified values to legal values from the list
4337 (like EnumOption() already doee).
4339 - Add specific exceptions to try:-except: blocks without any listed,
4340 so that they won't catch and mask keyboard interrupts.
4342 - Make --debug={tree,dtree,stree} print something even when there's
4345 - Fix how Scanners sort the found dependencies so that it doesn't
4346 matter whether the dependency file is in a Repository or not.
4347 This may cause recompilations upon upgrade to this version.
4349 - Make AlwaysBuild() work with Alias and Python value Nodes (making
4350 it much simpler to support aliases like "clean" that just invoke
4351 an arbitrary action).
4353 - Have env.ParseConfig() use AppendUnique() by default to suppress
4354 duplicate entries from multiple calls. Add a "unique" keyword
4355 argument to allow the old behavior to be specified.
4357 - Allow the library modules imported by an SConscript file to get at
4358 all of the normally-available global functions and variables by saying
4359 "from SCons.Script import *".
4361 - Add a --debug=memoizer option to print Memoizer hit/mass statistics.
4363 - Allow more than one --debug= option to be set at a time.
4365 - Change --debug=count to report object counts before and after
4366 reading SConscript files and before and after building targets.
4368 - Change --debug=memory output to line up the numbers and to better
4369 match (more or less) the headers on the --debug=count columns.
4371 - Speed things up when there are lists of targets and/or sources by
4372 getting rid of some N^2 walks of the lists involved.
4374 - Cache evaluation of LazyActions so we don't create a new object
4375 for each invocation.
4377 - When scanning, don't create Nodes for include files that don't
4378 actually exist on disk.
4380 - Make supported global variables CScanner, DScanner, ProgramScanner and
4381 SourceFileScanner. Make SourceFileScanner.add_scanner() a supported
4382 part of the public interface. Keep the old SCons.Defaults.*Scan names
4383 around for a while longer since some people were already using them.
4385 - By default, don't scan directories for on-disk files. Add a
4386 DirScanner global scanner that can be used in Builders or Command()
4387 calls that want source directory trees scanned for on-disk changes.
4388 Have the Tar() and Zip() Builders use the new DirScanner to preserve
4389 the behavior of rebuilding a .tar or .zip file if any file or
4390 directory under a source tree changes. Add Command() support for
4391 a source_scanner keyword argument to Command() that can be set to
4392 DirScanner to get this behavior.
4394 - Documentation changes: Explain that $CXXFLAGS contains $CCFLAGS
4395 by default. Fix a bad target_factory example in the man page.
4396 Add appendices to the User's Guide to cover the available Tools,
4397 Builders and construction variables. Comment out the build of
4398 the old Python 10 paper, which doesn't build on all systems and
4399 is old enough at this point that it probably isn't worth the
4400 effort to make it do so.
4404 - Avoid "maximum recursion limit" errors when removing $(-$) pairs
4405 from long command lines.
4407 From Clive Levinson:
4409 - Make ParseConfig() recognize and add -mno-cygwin to $LINKFLAGS and
4410 $CCFLAGS, and -mwindows to $LINKFLAGS.
4412 From Michael McCracken:
4414 - Add a new "applelink" tool to handle the things like Frameworks and
4415 bundles that Apple has added to gcc for linking.
4417 - Use more appropriate default search lists of linkers, compilers and
4418 and other tools for the 'darwin' platform.
4420 - Add a LoadableModule Builder that builds a bundle on Mac OS X (Darwin)
4421 and a shared library on other systems.
4423 - Improve SWIG tests for use on Mac OS X (Darwin).
4427 - Enhance the tests to guarantee persistence of ListOption
4428 values in saved options files.
4430 - Supply the help text when -h is used with the -u, -U or -D options.
4432 From Christian Neeb:
4434 - Fix the Java parser's handling of string definitions to avoid ignoring
4437 From Han-Wen Nienhuys:
4439 - Optimize variable expansion by: using the re.sub() method (when
4440 possible); not using "eval" for variables for which we can fetch the
4441 value directory; avoiding slowing substitution logic when there's no
4444 From Gary Oberbrunner:
4446 - Add an Environment.Dump() method to print the contents of a
4447 construction environment.
4449 - Allow $LIBS (and similar variables) to contain explicit File Nodes.
4451 - Change ParseConfig to add the found library names directly to the
4452 $LIBS variable, instead of returning them.
4454 - Add ParseConfig() support for the -framework GNU linker option.
4456 - Add a PRINT_CMD_LINE_FUNC construction variable to allow people
4457 to filter (or log) command-line output.
4459 - Print an internal Python stack trace in response to an otherwise
4460 unexplained error when --debug=stacktrace is specified.
4462 - Add a --debug=findlibs option to print what's happening when
4463 the scanner is searching for libraries.
4465 - Allow Tool specifications to be passed a dictionary of keyword
4468 - Support an Options default value of None, in which case the variable
4469 will not be added to the construction environment unless it's set
4470 explicitly by the user or from an Options file.
4472 - Avoid copying __builtin__ values into a construction environment's
4473 dictionary when evaluating construction variables.
4475 - Add a new cross-platform intelc.py Tool that can detect and
4476 configure the Intel C++ v8 compiler on both Windows, where it's
4477 named icl, and Linux, where it's named icc. It also checks that
4478 the directory specified in the Windows registry exists, and sets a
4479 new $INTEL_C_COMPILER_VERSION construction variable to identify the
4480 version being used. (Niall Douglas contributed an early prototype
4481 of parts of this module.)
4483 - Fix the private Conftest._Have() function so it doesn't change
4484 non-alphanumeric characters to underscores.
4486 - Supply a better error message when a construction variable expansion
4487 has an unknown attribute.
4489 - Documentation changes: Update the man page to describe use of
4490 filenames or Nodes in $LIBS.
4494 - Have the linkloc tool use $MSVS_VERSION to select the Microsoft
4495 Visual Studio version to use.
4499 - Fix the Builder name returned from ListBuilders and other instances
4500 of subclasses of the BuilderBase class.
4502 - Add Builders and construction variables to support rpcgen:
4503 RPCGenClient(), RPCGenHeader(), RPCGenService(), RPCGenXDR(),
4504 $RPCGEN, $RPCGENFLAGS, $RPCGENCLIENTFLAGS, $RPCGENHEADERFLAGS,
4505 $RPCGENSERVICEFLAGS, $RPCGENXDRFLAGS.
4507 - Update the man page to document that prefix and suffix Builder
4508 keyword arguments can be strings, callables or dictionaries.
4510 - Provide more info in the error message when a user tries to build
4511 a target multiple ways.
4513 - Fix Delete() when a file doesn't exist and must_exist=1. (We were
4514 unintentionally dependent on a bug in versions of the Python shutil.py
4515 module prior to Python 2.3, which would generate an exception for
4516 a nonexistent file even when ignore_errors was set.)
4518 - Only replace a Node's builder with a non-null source builder.
4520 - Fix a stack trace when a suffix selection dictionary is passed
4521 an empty source file list.
4523 - Allow optional names to be attached to Builders, for default
4524 Builders that don't get attached to construction environments.
4526 - Fix problems with Parallel Task Exception handling.
4528 - Build targets in an associated BuildDir even if there are targets
4529 or subdirectories locally in the source directory.
4531 - If a FunctionAction has a callable class as its underlying Python
4532 function, use its strfunction() method (if any) to display the
4535 - Fix handling when BuildDir() exists but is unwriteable. Add
4536 "Stop." to those error messages for consistency.
4538 - Catch incidents of bad builder creation (without an action) and
4539 supply meaningful error messages.
4541 - Fix handling of src_suffix values that aren't extensions (don't
4544 - Don't retrieve files from a CacheDir, but report what would happen,
4545 when the -n option is used.
4547 - Use the source_scanner from the target Node, not the source node
4550 - Internal Scanners fixes: Make sure Scanners are only passed Nodes.
4551 Fix how a Scanner.Selector called its base class initialization.
4552 Make comparisons of Scanner objects more robust. Add a name to
4553 an internal default ObjSourceScanner.
4555 - Add a deprecated warning for use of the old "scanner" keyword argument
4556 to Builder creation.
4558 - Improve the --debug=explain message when the build action changes.
4560 - Test enhancements in SourceCode.py, option-n.py, midl.py. Better
4561 Command() and Scanner test coverage. Improved test infrastructure
4564 - Refactor the interface between Action and Executor objects to treat
4567 - The --debug=presub option will now report the pre-substitution
4568 each action seprately, instead of reporting the entire list before
4569 executing the actions one by one.
4571 - The --debug=explain option explaining a changed action will now
4572 (more correctly) show pre-substitution action strings, instead of
4573 the commands with substituted file names.
4575 - A Node (file) will now be rebuilt if its PreAction or PostAction
4578 - Python Function actions now have their calling signature (target,
4579 source, env) reported correctly when displayed.
4581 - Fix BuildDir()/build_dir handling when the build_dir is underneath
4582 the source directory and trying to use entries from the build_dir
4583 as sources for other targets in the build-dir.
4585 - Fix hard-coding of JDK path names in various Java tests.
4587 - Handle Python stack traces consistently (stop at the SConscript stack
4588 frame, by default) even if the Python source code isn't available.
4590 - Improve the performance of the --debug={tree,dtree} options.
4592 - Add --debug=objects logging of creation of OverrideWarner,
4593 EnvironmentCopy and EnvironmentOverride objects.
4595 - Fix command-line expansion of Python Value Nodes.
4597 - Internal cleanups: Remove an unnecessary scan argument. Associate
4598 Scanners only with Builders, not nodes. Apply overrides once when
4599 a Builder is called, not in multiple places. Cache results from the
4600 Node.FS.get_suffix() and Node.get_build_env() methods. Use the Python
4601 md5 modules' hexdigest() method, if there is one. Have Taskmaster
4602 call get_stat() once for each Node and re-use the value instead of
4603 calling it each time it needs the value. Have Node.depends_on()
4604 re-use the list from the children() method instead of calling it
4607 - Use the correct scanner if the same source file is used for targets in
4608 two different environments with the same path but different scanners.
4610 - Collect logic for caching values in memory in a Memoizer class,
4611 which cleans up a lot of special-case code in various methods and
4612 caches additional values to speed up most configurations.
4614 - Add a PathAccept validator to the list of new canned PathOption
4619 - Documentation changes: Use $CPPDEFINES instead of $CCFLAGS in man
4624 - Allow $JARCHDIR to be expanded to other construction variables.
4626 From Christoph Wiedemann:
4628 - Add an Environment.SetDefault() method that only sets values if
4629 they aren't already set.
4631 - Have the qt.py Tool not override variables already set by the user.
4633 - Add separate $QT_BINPATH, $QT_CPPPATH and $QT_LIBPATH variables
4634 so these can be set individually, instead of being hard-wired
4637 - The %TEMP% and %TMP% external environment variables are now propagated
4638 automatically to the command execution environment on Windows systems.
4640 - A new --config= command-line option allows explicit control of
4641 of when the Configure() tests are run: --config=force forces all
4642 checks to be run, --config=cache uses all previously cached values,
4643 --config=auto (the default) runs tests only when dependency analysis
4644 determines it's necessary.
4646 - The Configure() subsystem can now write a config.h file with values
4647 like HAVE_STDIO_H, HAVE_LIBM, etc.
4649 - The Configure() subsystem now executes its checks silently when the
4650 -Q option is specified.
4652 - The Configure() subsystem now reports if a test result is being
4653 taken from cache, and prints the standard output and error output
4654 of tests even when cached.
4656 - Configure() test results are now reported as "yes" or "no" instead of
4659 - Fixed traceback printing when calling the env.Configure() method
4660 instead of the Configure() global function.
4662 - The Configure() subsystem now caches build failures in a .sconsign
4663 file in the subdirectory, not a .cache file. This may cause
4664 tests to be re-executed the first time after you install 0.97.
4666 - Additional significant internal cleanups in the Configure() subsystem
4669 - Have the Qt Builder make uic-generated files dependent on the .ui.h
4670 file, if one exists.
4672 - Add a test to make sure that SCons source code does not contain
4673 try:-except: blocks that catch all errors, which potentially catch
4674 and mask keyboard interrupts.
4676 - Fix us of TargetSignatures('content') with the SConf subsystem.
4678 From Russell Yanofsky:
4680 - Add support for the Metrowerks Codewarrior compiler and linker
4685 RELEASE 0.96.1 - Mon, 23 Aug 2004 12:55:50 +0000
4687 From Craig Bachelor:
4689 - Handle white space in the executable Python path name within in MSVS
4690 project files by quoting the path.
4692 - Correct the format of a GUID string in a solution (.dsw) file so
4693 MSVS can correctly "build enable" a project.
4697 - Add a must_exist flag to Delete() to let the user control whether
4698 it's an error if the specified entry doesn't exist. The default
4699 behavior is now to silently do nothing if it doesn't exist.
4701 - Package up the new Platform/darwin.py, mistakenly left out of 0.96.
4703 - Make the scons.bat REM statements into @REM so they aren't printed.
4705 - Make the SCons packaging SConscript files platform independent.
4709 - Fix scanning of pre-compiled header (.pch) files for #includes,
4714 RELEASE 0.96 - Wed, 18 Aug 2004 13:36:40 +0000
4718 - Make the CacheDir() directory if it doesn't already exist.
4720 - Allow construction variable substitutions in $LIBS specifications.
4722 - Allow the emitter argument to a Builder() to be or expand to a list
4723 of emitter functions, which will be called in sequence.
4725 - Suppress null values in construction variables like $LIBS that use
4726 the internal _concat() function.
4728 - Remove .dll files from the construction variables searched for
4729 libraries that can be fed to Win32 compilers.
4731 From Chad Austin and Christoph Wiedemann:
4733 - Add support for a $RPATH variable to supply a list of directories
4734 to search for shared libraries when linking a program. Used by
4735 the GNU and IRIX linkers (gnulink and sgilink).
4739 - Restore the ability to do construction variable substitutions in all
4740 kinds of *PATH variables, even when the substitution returns a Node
4745 - Allow the Java() Builder to take more than one source directory.
4747 From Ralf W. Grosse-Kunstleve:
4749 - Have SConsignFile() use, by default, a custom "dblite.py" that we can
4750 control and guarantee to work on all Python versions (or nearly so).
4752 From Jonathan Gurley:
4754 - Add support for the newer "ifort" versions of the Intel Fortran
4759 - Make the new *FLAGS variable type work with copied Environments.
4761 From Chris Hoeppler:
4763 - Initialize the name of a Scanner.Classic scanner correctly.
4767 - Add support for the .dylib shared library suffix and the -dynamiclib
4768 linker option on Mac OS X.
4772 - Add an Execute() method for executing actions directly.
4774 - Support passing environment override keyword arguments to Command().
4776 - Fix use of $MSVS_IGNORE_IDE_PATHS, which was broken when we added
4777 support for $MSVS_USE_MFC_DIRS last release.
4779 - Make env.Append() and env.Prepend() act like the underlying Python
4780 behavior when the variable being appended to is a UserList object.
4782 - Fix a regression that prevented the Command() global function in
4783 0.95 from working with command-line strings as actions.
4785 - Fix checking out a file from a source code management system when
4786 the env.SourceCode() method was called with an individual file name
4787 or node, not a directory name or node.
4789 - Enhance the Task.make_ready() method to create a list of the
4790 out-of-date Nodes for the task for use by the wrapping interface.
4792 - Allow Scanners to pull the list of suffixes from the construction
4793 environment when the "skeys" keyword argument is a string containing
4794 a construction variable to be expanded.
4796 - Support new $CPPSUFFIXES, $DSUFFIXES $FORTRANSUFFIXES, and
4797 $IDLSUFFIXES. construction variables that contain the default list
4798 of suffixes to be scanned by a given type of scanner, allowing these
4799 suffix lists to be easily added to or overridden.
4801 - Speed up Node creation when calling a Builder by comparing whether two
4802 Environments are the same object, not if their underlying dictionaries
4805 - Add a --debug=explain option that reports the reason(s) why SCons
4806 thinks it must rebuild something.
4808 - Add support for functions that return platform-independent Actions
4809 to Chmod(), Copy(), Delete(), Mkdir(), Move() and Touch() files
4810 and/or directories. Like any other Actions, the returned Action
4811 object may be executed directly using the Execute() global function
4812 or env.Execute() environment method, or may be used as a Builder
4813 action or in an env.Command() action list.
4815 - Add support for the strfunction argument to all types of Actions:
4816 CommandAction, ListAction, and CommandGeneratorAction.
4818 - Speed up turning file system Nodes into strings by caching the
4819 values after we're finished reading the SConscript files.
4821 - Have ParseConfig() recognize and supporting adding the -Wa, -Wl,
4822 and -Wp, flags to ASFLAGS, LINKFLAGS and CPPFLAGS, respectively.
4824 - Change the .sconsign format and the checks for whether a Node is
4825 up-to-date to make dependency checks more efficient and correct.
4827 - Add wrapper Actions to SCons.Defaults for $ASCOM, $ASPPCOM, $LINKCOM,
4828 $SHLINKCOM, $ARCOM, $LEXCOM and $YACCCOM. This makes it possible
4829 to replace the default print behavior with a custom strfunction()
4832 - When a Node has been built, don't walk the whole tree back to delete
4833 the parents's implicit dependencies, let returning up the normal
4834 Taskmaster descent take care of it for us.
4836 - Add documented support for separate target_scanner and source_scanner
4837 arguments to Builder creation, which allows different scanners to
4838 be applied to source files
4840 - Don't re-install or (re-generate) .h files when a subsidiary #included
4841 .h file changes. This eliminates incorrect circular dependencies
4842 with .h files generated from other source files.
4844 - Slim down the internal Sig.Calculator class by eliminating methods
4845 whose functionality is now covered by Node methods.
4847 - Document use of the target_factory and source_factory keyword
4848 arguments when creating Builder objects. Enhance Dir Nodes so that
4849 they can be created with user-specified Builder objects.
4851 - Don't blow up with stack trace when the external $PATH environment
4854 - Make Builder calls return lists all the time, even if there's only
4855 one target. This keeps things consistent and easier to program to
4858 - Add a Flatten() function to make it easier to deal with the Builders
4859 all returning lists of targets, not individual targets.
4861 - Performance optimizations in Node.FS.__doLookup().
4863 - Man page fixes: formatting typos, misspellings, bad example.
4865 - User's Guide fixes: Fix the signatures of the various example
4866 *Options() calls. Triple-quote properly a multi-line Split example.
4868 - User's Guide additions: Chapter describing File and Directory
4869 Nodes. Section describing declarative nature of SCons functions in
4870 SConscript files. Better organization and clarification of points
4871 raised by Robert P. J. Day. Chapter describing SConf (Autoconf-like)
4872 functionality. Chapter describing how to install Python and
4873 SCons. Chapter describing Java builds.
4877 - Add a .win32 attribute to force file names to expand with
4878 Windows backslash path separators.
4880 - Fix escaping file names on command lines when the expansion is
4881 concatenated with another string.
4883 - Add support for Fortran 90 and Fortran 95. This adds $FORTRAN*
4884 variables that specify a default compiler, command-line, flags,
4885 etc. for all Fortran versions, plus separate $F90* and $F95*
4886 variables for when different compilers/flags/etc. must be specified
4887 for different Fortran versions.
4889 - Have individual tools that create libraries override the default
4890 $LIBPREFIX and $LIBSUFFIX values set by the platform. This makes
4891 it easier to use Microsoft Visual Studio tools on a CygWin platform.
4893 From Gary Oberbrunner:
4895 - Add a --debug=presub option to print actions prior to substitution.
4897 - Add a warning upon use of the override keywords "targets" and
4898 "sources" when calling Builders. These are usually mistakes which
4899 are otherwise silently (and confusingly) turned into construction
4902 - Try to find the ICL license file path name in the external environment
4903 and the registry before resorting to the hard-coded path name.
4905 - Add support for fetching command-line keyword=value arguments in
4906 order from an ARGLIST list.
4908 - Avoid stack traces when trying to read dangling symlinks.
4910 - Treat file "extensions" that only contain digits as part of the
4911 file basename. This supports version numbers as part of shared
4912 library names, for example.
4914 - Avoid problems when there are null entries (None or '') in tool
4917 - Add an example and explanation of how to use "tools = ['default', ..."
4918 when creating a construction environment.
4920 - Add a section describing File and Directory Nodes and some of their
4921 attributes and methods.
4923 - Have ParseConfig() add a returned -pthread flag to both $CCFLAGS
4926 - Fix some test portability issues on Mac OS X (darwin).
4930 - Fix a bug introduced in building shared libraries under MinGW.
4934 - Handling SCons exceptions according to Pythonic standards.
4936 - Fix test/chained-build.py on systems that execute within one second.
4938 - Fix tests on systems where 'ar' warns about archive creation.
4942 - Fix use of the --implicit-cache option with timestamp signatures.
4944 - If Visual Studio is installed, assume the C/C++ compiler, the linker
4945 and the MIDL compiler that comes with it are available, too.
4947 - Better error messages when evaluating a construction variable
4948 expansion yields a Python syntax error.
4950 - Change the generation of PDB files when using Visual Studio from
4951 compile time to link time.
4955 - Allow SConf.CheckLib() to search a list of libraries, like the
4956 Autoconf AC_SEARCH_LIBS macro.
4958 - Allow the env.WhereIs() method to take a "reject" argument to
4959 let it weed out specific path names.
4961 From Christoph Wiedemann:
4963 - Add new Moc() and Uic() Builders for more explicit control over
4964 Qt builds, plus new construction variables to control them:
4965 $QT_AUTOSCAN, $QT_DEBUG, $QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX,
4966 $QT_MOCHPREFIX, $QT_MOCHSUFFIX, $QT_UICDECLPREFIX, $QT_UICDECLSUFFIX,
4967 $QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX and $QT_UISUFFIX.
4969 - Add a new single_source keyword argument for Builders that enforces
4970 a single source file on calls to the Builder.
4974 RELEASE 0.95 - Mon, 08 Mar 2004 06:43:20 -0600
4978 - Replace print statements with calls to sys.stdout.write() so output
4979 lines stay together when -j is used.
4981 - Add portability fixes for a number of tests.
4983 - Accomodate the fact that Cygwin's os.path.normcase() lies about
4984 the underlying system being case-sensitive.
4986 - Fix an incorrect _concat() call in the $RCINCFLAGS definition for
4989 - Fix a problem with the msvc tool with Python versions prior to 2.3.
4991 - Add support for a "toolpath" Tool() and Environment keyword that
4992 allows Tool modules to be found in specified local directories.
4994 - Work around Cygwin Python's silly fiction that it's using a
4995 case-sensitive file system.
4997 - More robust handling of data in VCComponents.dat.
4999 - If the "env" command is available, spawn commands with the more
5000 general "env -" instead of "env -i".
5002 From Kerim Borchaev:
5004 - Fix a typo in a msvc.py's registry lookup: "VCComponents.dat", not
5007 From Chris Burghart:
5009 - Fix the ability to save/restore a PackageOption to a file.
5011 From Steve Christensen:
5013 - Update the MSVS .NET and MSVC 6.0/7.0 path detection.
5015 From David M. Cooke:
5017 - Make the Fortran scanner case-insensitive for the INCLUDE string.
5021 - If no version of MSVC is detected but the tool is specified,
5022 use the MSVC 6.0 paths by default.
5024 - Ignore any "6.1" version of MSVC found in the registry; this is a
5025 phony version number (created by later service packs?) and would
5026 throw off the logic if the user had any non-default paths configure.
5028 - Correctly detect if the user has independently configured the MSVC
5029 "include," "lib" or "path" in the registry and use the appropriate
5030 values. Previously, SCons would only use the values if all three
5031 were set in the registry.
5033 - Make sure side-effect nodes are prepare()d before building their
5034 corresponding target.
5036 - Preserve the ability to call BuildDir() multiple times with the
5037 same target and source directory arguments.
5041 - Add support for the Digital Mars "D" programming language.
5043 From Scott Lystig Fritchie:
5045 - Fix the ability to use a custom _concat() function in the
5046 construction environment when calling _stripixes().
5048 - Make the message about ignoring a missing SConscript file into a
5049 suppressable Warning, not a hard-coded sys.stderr.write().
5051 - If a builder can be called multiple times for a target (because
5052 the sources and overrides are identical, or it's a builder with the
5053 "multi" flag set), allow the builder to be called through multiple
5054 environments so long as the builders have the same signature for
5055 the environments in questions (that is, they're the same action).
5059 - When multiple targets are built by a single action, retrieve all
5060 of them from cache, not just the first target, and exec the build
5061 command if any of the targets isn't present in the cache.
5063 From Zephaniah Hull:
5065 - Fix command-line ARGUMENTS with multiple = in them.
5069 - Fix EnsureSConsVersion() so it checks against the SCons version,
5070 not the Python version, on Pythons with sys.version_info.
5072 - Don't swallow the AttributeError when someone uses an expansion like
5073 $TARGET.bak, so we can supply a more informative error message.
5075 - Fix an odd double-quote escape sequence in the man page.
5077 - Fix looking up a naked drive letter as a directory (Dir('C:')).
5079 - Support using File nodes in the LIBS construction variable.
5081 - Allow the LIBS construction variable to be a single string or File
5082 node, not a list, when only one library is needed.
5084 - Fix typos in the man page: JAVACHDIR => JARCHDIR; add "for_signature"
5085 to the __call__() example in the "Variable Substitution" section.
5087 - Correct error message spellings of "non-existant" to "non-existent."
5089 - When scanning for libraries to link with, don't append $LIBPREFIXES
5090 or $LIBSUFFIXES values to the $LIBS values if they're already present.
5092 - Add a ZIPCOMPRESSION construction variable to control whether the
5093 internal Python action for the Zip Builder compresses the file or
5094 not. The default value is zipfile.ZIP_DEFLATED, which generates
5097 - Refactor construction variable expansion to support recursive
5098 expansion of variables (e.g. CCFLAGS = "$CCFLAGS -g") without going
5099 into an infinite loop. Support this in all construction variable
5100 overrides, as well as when copying Environments.
5102 - Fix calling Configure() from more than one subsidiary SConscript file.
5104 - Fix the env.Action() method so it returns the correct type of
5105 Action for its argument(s).
5107 - Fix specifying .class files as input to JavaH with the .class suffix
5108 when they weren't generated using the Java Builder.
5110 - Make the check for whether all of the objects going into a
5111 SharedLibrary() are shared work even if the object was built in a
5114 - Supply meaningful error messages, not stack traces, if we try to add
5115 a non-Node as a source, dependency, or ignored dependency of a Node.
5117 - Generate MSVS Project files that re-invoke SCons properly regardless
5118 of whether the file was built via scons.bat or scons.py.
5119 (Thanks to Niall Douglas for contributing code and testing.)
5121 - Fix TestCmd.py, runtest.py and specific tests to accomodate being
5122 run from directories whose paths include white space.
5124 - Provide a more useful error message if a construction variable
5125 expansion contains a syntax error during evaluation.
5127 - Fix transparent checkout of implicit dependency files from SCCS
5130 - Added new --debug=count, --debug=memory and --debug=objects options.
5131 --debug=count and --debug=objects only print anything when run
5132 under Python 2.1 or later.
5134 - Deprecate the "overrides" keyword argument to Builder() creation
5135 in favor of using keyword argument values directly (like we do
5136 for builder execution and the like).
5138 - Always use the Builder overrides in substitutions, not just if
5139 there isn't a target-specific environment.
5141 - Add new "rsrcpath" and "rsrcdir" and attributes to $TARGET/$SOURCE,
5142 so Builder command lines can find things in Repository source
5143 directories when using BuildDir.
5145 - Fix the M4 Builder so that it chdirs to the Repository directory
5146 when the input file is in the source directory of a BuildDir.
5148 - Save memory at build time by allowing Nodes to delete their build
5149 environments after they've been built.
5151 - Add AppendUnique() and PrependUnique() Environment methods, which
5152 add values to construction variables like Append() and Prepend()
5153 do, but suppress any duplicate elements in the list.
5155 - Allow the 'qt' tool to still be used successfully from a copied
5156 Environment. The include and library directories previously ended up
5157 having the same string re-appended to the end, yielding an incorrect
5160 - Supply a more descriptive error message when the source for a target
5163 - Initialize all *FLAGS variables with objects do the right thing with
5164 appending flags as strings or lists.
5166 - Make things like ${TARGET.dir} work in *PATH construction variables.
5168 - Allow a $MSVS_USE_MFC_DIRS construction variable to control whether
5169 ATL and MFC directories are included in the default INCLUDE and
5172 - Document the dbm_module argument to the SConsignFile() function.
5176 - Add support for the bcc32, ilink32 and tlib Borland tools.
5180 - Supply an error message if the user tries to configure a BuildDir
5181 for a directory that already has one.
5183 - Remove documentation of the still-unimplemented -e option.
5185 - Add -H help text listing the legal --debug values.
5187 - Don't choke if a construction variable is a non-string value.
5189 - Build Type Libraries in the target directory, not the source
5192 - Add an appendix to the User's Guide showing how to accomplish
5193 various common tasks in Python.
5197 - Add support for Microsoft Visual Studio 2003 (version 7.1).
5199 - Evaluate $MSVSPROJECTSUFFIX and $MSVSSOLUTIONSUFFIX when the Builder
5200 is invoked, not when the tool is initialized.
5202 From Christoph Wiedemann:
5204 - When compiling Qt, make sure the moc_*.cc files are compiled using
5205 the flags from the environment used to specify the target, not
5206 the environment that first has the Qt Builders attached.
5210 RELEASE 0.94 - Fri, 07 Nov 2003 05:29:48 -0600
5212 From Hartmut Goebel:
5214 - Add several new types of canned functions to help create options:
5215 BoolOption(), EnumOption(), ListOption(), PackageOption(),
5220 - Fix use of CPPDEFINES with C++ source files.
5222 - Fix env.Append() when the operand is an object with a __cmp__()
5223 method (like a Scanner instance).
5225 - Fix subclassing the Environment and Scanner classes.
5227 - Add BUILD_TARGETS, COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.
5231 - SGI fixes: Fix C++ compilation, add a separate Tool/sgic++.py module.
5233 From Gary Oberbrunner:
5235 - Fix how the man page un-indents after examples in some browsers.
5239 - Fix the C and C++ tool specifications for AIX.
5243 RELEASE 0.93 - Thu, 23 Oct 2003 07:26:55 -0500
5247 - On POSIX, execute commands with the more modern os.spawnvpe()
5248 function, if it's available.
5250 - Scan .S, .spp and .SPP files for C preprocessor dependencies.
5252 - Refactor the Job.Parallel() class to use a thread pool without a
5253 condition variable. This improves parallel build performance and
5254 handles keyboard interrupts properly when -j is used.
5258 - Add support for a JARCHDIR variable to control changing to a
5259 directory using the jar -C option.
5261 - Add support for detecting Java manifest files when using jar,
5262 and specifying them using the jar m flag.
5264 - Fix some Python 2.2 specific things in various tool modules.
5266 - Support directories as build sources, so that a rebuild of a target
5267 can be triggered if anything underneath the directory changes.
5269 - Have the scons.bat and scons.py files look for the SCons modules
5270 in site-packages as well.
5272 From Christian Engel:
5274 - Support more flexible inclusion of separate C and C++ compilers.
5276 - Use package management tools on AIX and Solaris to find where
5277 the comilers are installed, and what version they are.
5279 - Add support for CCVERSION and CXXVERSION variables for a number
5280 of C and C++ compilers.
5284 - Add test cases for the new capabilities to run bibtex and to rerun
5287 From Ralf W. Grosse-Kunstleve:
5289 - Accomodate anydbm modules that don't have a sync() method.
5291 - Allow SConsignFile() to take an argument specifying the DBM
5294 From Stephen Kennedy:
5296 - Add support for a configurable global .sconsign.dbm file which
5297 can be used to avoid cluttering each directory with an individual
5302 - Fix (re-)scanning of dependencies in generated or installed
5307 - The -Q option suppressed too many messages; fix it so that it only
5308 suppresses the Reading/Building messages.
5310 - Support #include when there's no space before the opening quote
5313 - Accomodate alphanumeric version strings in EnsurePythonVersion().
5315 - Support arbitrary expansion of construction variables within
5316 file and directory arguments to Builder calls and Environment methods.
5318 - Add Environment-method versions of the following global functions:
5319 Action(), AddPostAction(), AddPreAction(), Alias(), Builder(),
5320 BuildDir(), CacheDir(), Clean(), Configure(), Default(),
5321 EnsurePythonVersion(), EnsureSConsVersion(), Environment(),
5322 Exit(), Export(), FindFile(), GetBuildPath(), GetOption(), Help(),
5323 Import(), Literal(), Local(), Platform(), Repository(), Scanner(),
5324 SConscriptChdir(), SConsignFile(), SetOption(), SourceSignatures(),
5325 Split(), TargetSignatures(), Tool(), Value().
5327 - Add the following global functions that correspond to the same-named
5328 Environment methods: AlwaysBuild(), Command(), Depends(), Ignore(),
5329 Install(), InstallAs(), Precious(), SideEffect() and SourceCode().
5331 - Add the following global functions that correspond to the default
5332 Builder methods supported by SCons: CFile(), CXXFile(), DVI(), Jar(),
5333 Java(), JavaH(), Library(), M4(), MSVSProject(), Object(), PCH(),
5334 PDF(), PostScript(), Program(), RES(), RMIC(), SharedLibrary(),
5335 SharedObject(), StaticLibrary(), StaticObject(), Tar(), TypeLibrary()
5338 - Rearrange the man page to show construction environment methods and
5339 global functions in the same list, and to explain the difference.
5341 - Alphabetize the explanations of the builder methods in the man page.
5343 - Rename the Environment.Environment class to Enviroment.Base.
5344 Allow the wrapping interface to extend an Environment by using its own
5345 subclass of Environment.Base and setting a new Environment.Environment
5346 variable as the calling entry point.
5348 - Deprecate the ParseConfig() global function in favor of a same-named
5349 construction environment method.
5351 - Allow the Environment.WhereIs() method to take explicit path and
5352 pathext arguments (like the underlying SCons.Util.WhereIs() function).
5354 - Remove the long-obsolete {Get,Set}CommandHandler() functions.
5356 - Enhance env.Append() to suppress null values when appropriate.
5358 - Fix ParseConfig() so it works regardless of initial construction
5361 Extend CheckHeader(), CheckCHeader(), CheckCXXHeader() and
5362 CheckLibWithHeader() to accept a list of header files that will be
5363 #included in the test. The last one in the list is assumed to be
5364 the one being checked for. (Prototype code contributed by Gerard
5365 Patel and Niall Douglas).
5367 - Supply a warning when -j is used and threading isn't built in to
5368 the current version of Python.
5370 - First release of the User's Guide (finally, and despite a lot
5371 of things still missing from it...).
5375 - Generalize the action for .tex files so that it will decide whether
5376 a file is TeX or LaTeX, check the .aux output to decide if it should
5377 run bibtex, and check the .log output to re-run LaTeX if needed.
5379 From Bram Moolenaar:
5381 - Split the non-SCons-specific functionality from SConf.py to a new,
5382 re-usable Conftest.py module.
5384 From Gary Oberbrunner:
5386 - Allow a directory to be the target or source or dependency of a
5387 Depends(), Ignore(), Precious() or SideEffect() call.
5391 - Use the %{_mandir} macro when building our RPM package.
5393 From Marko Rauhamaa:
5395 - Have the closing message say "...terminated because of errors" if
5400 - On Win32 systems, only use "rm" to delete files if Cygwin is being
5401 used. ("rm" doesn't understand Win32-format path names.)
5403 From Christoph Wiedemann:
5405 - Fix test/SWIG.py to find the Python include directory in all cases.
5407 - Fix a bug in detection of Qt installed on the local system.
5409 - Support returning Python 2.3 BooleanType values from Configure checks.
5411 - Provide an error message if someone mistakenly tries to call a
5412 Configure check from within a Builder function.
5414 - Support calling a Builder when a Configure context is still open.
5416 - Handle interrupts better by eliminating all try:-except: blocks
5417 which caught any and all exceptions, including KeyboardInterrupt.
5419 - Add a --duplicate= option to control how files are duplicated.
5423 RELEASE 0.92 - Wed, 20 Aug 2003 03:45:28 -0500
5425 From Charles Crain and Gary Oberbrunner:
5427 - Fix Tool import problems with the Intel and PharLap linkers.
5431 - Refactor the DictCmdGenerator class to be a Selector subclass.
5433 - Allow the DefaultEnvironment() function to take arguments and pass
5434 them to instantiation of the default construction environment.
5436 - Update the Debian package so it uses Python 2.2 and more closely
5437 resembles the currently official Debian packaging info.
5441 - When the yacc -d flag is used, take the .h file base name from the
5442 target .c file, not the source (matching what yacc does).
5446 RELEASE 0.91 - Thu, 14 Aug 2003 13:00:44 -0500
5450 - Support specifying a list of tools when calling Environment.Copy().
5452 - Give a Value Nodes a timestamp of the system time when they're
5453 created, so they'll work when using timestamp-based signatures.
5455 - Add a DefaultEnvironment() function that only creates a default
5456 environment on-demand (for fetching source files, e.g.).
5458 - Portability fix for test/M4.py.
5462 - Tighten up the scons -H help output.
5464 - When the input yacc file ends in .yy and the -d flag is specified,
5465 recognize that a .hpp file (not a .h file) will be created.
5467 - Make builder prefixes work correctly when deducing a target
5468 from a source file name in another directory.
5470 - Documentation fixes: typo in the man page; explain up-front about
5471 not propagating the external environment.
5473 - Use "cvs co -d" instead of "cvs co -p >" when checking out something
5474 from CVS with a specified module name. This avoids zero-length
5475 files when there is a checkout error.
5477 - Add an "sconsign" script to print the contents of .sconsign files.
5479 - Speed up maintaining the various lists of Node children by using
5480 dictionaries to avoid "x in list" searches.
5482 - Cache the computed list of Node children minus those being Ignored
5483 so it's only calculated once.
5485 - Fix use of the --cache-show option when building a Program()
5486 (or using any other arbitrary action) by making sure all Action
5487 instances have strfunction() methods.
5489 - Allow the source of Command() to be a directory.
5491 - Better error handling of things like raw TypeErrors in SConscripts.
5493 - When installing using "setup.py install --prefix=", suppress the
5494 distutils warning message about adding the (incorrect) library
5495 directory to your search path.
5497 - Correct the spelling of the "validater" option to "validator."
5498 Add a DeprecatedWarning when the old spelling is used.
5500 - Allow a Builder's emitter to be a dictionary that maps source file
5501 suffixes to emitter functions, using the suffix of the first file
5502 in the source list to pick the right one.
5504 - Refactor the creation of the Program, *Object and *Library Builders
5505 so that they're moved out of SCons.Defaults and created on demand.
5507 - Don't split SConscript file names on white space.
5509 - Document the SConscript function's "dirs" and "name" keywords.
5511 - Remove the internal (and superfluous) SCons.Util.argmunge() function.
5513 - Add /TP to the default CXXFLAGS for msvc, so it can compile all
5514 of the suffixes we use as C++ files.
5516 - Allow the "prefix" and "suffix" attributes of a Builder to be
5517 callable objects that return generated strings, or dictionaries
5518 that map a source file suffix to the right prefix/suffix.
5520 - Support a MAXLINELINELENGTH construction variable on Win32 systems
5521 to control when a temporary file is used for long command lines.
5523 - Make how we build .rpm packages not depend on the installation
5524 locations from the distutils being used.
5526 - When deducing a target Node, create it directly from the first
5527 source Node, not by trying to create the right string to pass to
5530 - Add support for SWIG.
5532 From Bram Moolenaar:
5534 - Test portability fixes for FreeBSD.
5536 From Gary Oberbrunner:
5538 - Report the target being built in error messages when building
5539 multiple sources from different extensions, or when the target file
5540 extension can't be deduced, or when we don't have an action for a
5543 - Provide helpful error messages when the arguments to env.Install()
5546 - Fix the value returned by the Node.prevsiginfo() method to conform
5547 to a previous change when checking whether a node is current.
5549 - Supply a stack trace if the Taskmaster catches an exception.
5551 - When using a temporary file for a long link line on Win32 systems,
5552 (also) print the command line that is being executed through the
5555 - Initialize the LIB environment variable when using the Intel
5558 - Documentation fixes: better explain the AlwaysBuild() function.
5560 From Laurent Pelecq:
5562 - When the -debug=pdb option is specified, use pdb.Pdb().runcall() to
5563 call pdb directly, don't call Python recursively.
5567 - Add support for a platform-independent CPPDEFINES variable.
5569 From Christoph Wiedemann:
5571 - Have the g++ Tool actually use g++ in preference to c++.
5573 - Have the gcc Tool actually use gcc in preference to cc.
5575 - Add a gnutools.py test of the GNU tool chain.
5577 - Be smarter about linking: use $CC by default and $CXX only if we're
5578 linking with any C++ objects.
5580 - Avoid SCons hanging when a piped command has a lot of output to read.
5582 - Add QT support for preprocessing .ui files into .c files.
5586 RELEASE 0.90 - Wed, 25 Jun 2003 14:24:52 -0500
5590 - Fix the _concat() documentation, and add a test for it.
5592 - Portability fixes for non-GNU versions of lex and yacc.
5596 - Fix handling of library prefixes when the subdirectory matches
5599 From Timothee Bessett:
5601 - Add an M4 Builder.
5605 - Use '.lnk' as the suffix on the temporary file for linking long
5606 command lines (necessary for the Phar Lap linkloc linker).
5608 - Save non-string Options values as their actual type.
5610 - Save Options string values that contain a single quote correctly.
5612 - Save any Options values that are changed from the default
5613 Environment values, not just ones changed on the command line or in
5616 - Make closing the Options file descriptor exception-safe.
5620 - SCons now enforces (with an error) that construction variables
5621 must have the same form as valid Python identifiers.
5623 - Fix man page bugs: remove duplicate AddPostAction() description;
5624 document no_import_lib; mention that CPPFLAGS does not contain
5625 $_CPPINCFLAGS; mention that F77FLAGS does not contain $_F77INCFLAGS;
5626 mention that LINKFLAGS and SHLINKFLAGS contains neither $_LIBFLAGS
5629 - Eliminate a dependency on the distutils.fancy_getopt module by
5630 copying and pasting its wrap_text() function directly.
5632 - Make the Script.Options() subclass match the underlying base class
5635 - When reporting a target is up to date, quote the target like make
5636 (backquote-quote) instead of with double quotes.
5638 - Fix handling of ../* targets when using -U, -D or -u.
5642 - Don't update the .sconsign files when run with -n.
5644 From Gary Oberbrunner:
5646 - Add support for the Intel C Compiler (icl.exe).
5654 - Fix use of SConf in paths with white space in them.
5656 - Add CheckFunc and CheckType functionality to SConf.
5658 - Fix use of SConf with Builders that return a list of nodes.
5660 From David Snopek and Christoph Wiedemann
5662 - Fix use of the SConf subsystem with SConscriptChdir().
5666 - Check for the existence of MS Visual Studio on disk before using it,
5667 to avoid getting fooled by leftover junk in the registry.
5669 - Add support for MSVC++ .NET.
5671 - Add support for MS Visual Studio project files (DSP, DSW,
5672 SLN and VCPROJ files).
5674 From Christoph Wiedemann
5676 - SConf now works correctly when the -n and -q options are used.
5680 RELEASE 0.14 - Wed, 21 May 2003 05:16:32 -0500
5684 - Use .dll (not .so) for shared libraries on Cygwin; use -fPIC
5685 when compiling them.
5687 - Use 'rm' to remove files under Cygwin.
5689 - Add a PLATFORM variable to construction environments.
5691 - Remove the "platform" argument from tool specifications.
5693 - Propogate PYTHONPATH when running the regression tests so distutils
5694 can be found in non-standard locations.
5696 - Using MSVC long command-line linking when running Cygwin.
5698 - Portability fixes for a lot of tests.
5700 - Add a Value Node class for dependencies on in-core Python values.
5702 From Allen Bierbaum:
5704 - Pass an Environment to the Options validator method, and
5705 add an Options.Save() method.
5707 From Steve Christensen:
5709 - Add an optional sort function argument to the GenerateHelpText()
5712 - Evaluate the "varlist" variables when computing the signature of a
5717 - Parse the source .java files for class names (including inner class
5718 names) to figure out the target .class files that will be created.
5720 - Make Java support work with Repositories and SConscriptChdir(0).
5722 - Pass Nodes, not strings, to Builder emitter functions.
5724 - Refactor command-line interpolation and signature calculation
5725 so we can use real Node attributes.
5729 - Add Java support (javac, javah, jar and rmic).
5731 - Propagate the external SYSTEMROOT environment variable into ENV on
5732 Win32 systems, so external commands that use sockets will work.
5734 - Add a .posix attribute to PathList expansions.
5736 - Check out CVS source files using POSIX path names (forward slashes
5737 as separators) even on Win32.
5739 - Add Node.clear() and Node.FS.Entry.clear() methods to wipe out a
5740 Node's state, allowing it to be re-evaluated by continuous
5741 integration build interfaces.
5743 - Change the name of the Set{Build,Content}SignatureType() functions
5744 to {Target,Source}Signatures(). Deprecate the old names but support
5745 them for backwards compatibility.
5747 - Add internal SCons.Node.FS.{Dir,File}.Entry() methods.
5749 - Interpolate the null string if an out-of-range subscript is used
5750 for a construction variable.
5752 - Fix the internal Link function so that it properly links or copies
5753 files in subsidiary BuildDir directories.
5755 - Refactor the internal representation of a single execution instance
5756 of an action to eliminate redundant signature calculations.
5758 - Eliminate redundant signature calculations for Nodes.
5760 - Optimize out calling hasattr() before accessing attributes.
5762 - Say "Cleaning targets" (not "Building...") when the -c option is
5767 - Quote the "Entering directory" message like Make.
5769 From Stefan Reichor:
5771 - Add support for using Ghostscript to convert Postscript to PDF files.
5775 - Add a standalone "Alias" function (separate from an Environment).
5777 - Make Export() work for local variables.
5779 - Support passing a dictionary to Export().
5781 - Support Import('*') to import everything that's been Export()ed.
5783 - Fix an undefined exitvalmap on Win32 systems.
5785 - Support new SetOption() and GetOption() functions for setting
5786 various command-line options from with an SConscript file.
5788 - Deprecate the old SetJobs() and GetJobs() functions in favor of
5789 using the new generic {Set,Get}Option() functions.
5791 - Fix a number of tests that searched for a Fortran compiler using the
5792 external PATH instead of what SCons would use.
5794 - Fix the interaction of SideEffect() and BuildDir() so that (for
5795 example) PDB files get put correctly in a BuildDir().
5799 - Contribute the "Autoscons" code for Autoconf-like checking for
5800 the existence of libraries, header files and the like.
5802 - Have the Tool() function add the tool name to the $TOOLS
5803 construction variable.
5807 - Support the C preprocessor #import statement.
5809 - Allow the SharedLibrary() Builder on Win32 systems to be able to
5810 register a newly-built dll using regsvr32.
5812 - Add a Builder for Windows type library (.tlb) files from IDL files.
5814 - Add an IDL scanner.
5816 - Refactor the Fortran, C and IDL scanners to share common logic.
5818 - Add .srcpath and .srcdir attributes to $TARGET and $SOURCE.
5820 From Christoph Wiedemann:
5822 - Integrate David Snopek's "Autoscons" code as the new SConf
5823 configuration subsystem, including caching of values between
5824 runs (using normal SCons dependency mechanisms), tests, and
5829 RELEASE 0.13 - Mon, 31 Mar 2003 20:22:00 -0600
5833 - Fix a bug when BuildDir(duplicate=0) is used and SConscript
5834 files are called from within other SConscript files.
5836 - Support (older) versions of Perforce which don't set the Windows
5841 RELEASE 0.12 - Thu, 27 Mar 2003 23:52:09 -0600
5845 - Added support for the Perforce source code management system.
5847 - Fix str(Node.FS) so that it returns a path relative to the calling
5848 SConscript file's directory, not the top-level directory.
5850 - Added support for a separate src_dir argument to SConscript()
5851 that allows explicit specification of where the source files
5852 for an SConscript file can be found.
5854 - Support more easily re-usable flavors of command generators by
5855 calling callable variables when strings are expanded.
5859 - Added an INSTALL construction variable that can be set to a function
5860 to control how the Install() and InstallAs() Builders install files.
5861 The default INSTALL function now copies, not links, files.
5863 - Remove deprecated features: the "name" argument to Builder objects,
5864 and the Environment.Update() method.
5866 - Add an Environment.SourceCode() method to support fetching files
5867 from source code systems. Add factory methods that create Builders
5868 to support BitKeeper, CVS, RCS, and SCCS. Add support for fetching
5869 files from RCS or SCCS transparently (like GNU Make).
5871 - Make the internal to_String() function more efficient.
5873 - Make the error message the same as other build errors when there's a
5874 problem unlinking a target file in preparation for it being built.
5876 - Make TARGET, TARGETS, SOURCE and SOURCES reserved variable names and
5877 warn if the user tries to set them in a construction environment.
5879 - Add support for Tar and Zip files.
5881 - Better documentation of the different ways to export variables to a
5882 subsidiary SConscript file. Fix documentation bugs in a tools
5883 example, places that still assumed SCons split strings on white
5886 - Support fetching arbitrary files from the TARGETS or SOURCES lists
5887 (e.g. ${SOURCES[2]}) when calculating the build signature of a
5890 - Don't silently swallow exceptions thrown by Scanners (or other
5891 exceptions while finding a node's dependent children).
5893 - Push files to CacheDir() before calling the superclass built()
5894 method (which may clear the build signature as part of clearing
5895 cached implicit dependencies, if the file has a source scanner).
5896 (Bug reported by Jeff Petkau.)
5898 - Raise an internal error if we attempt to push a file to CacheDir()
5899 with a build signature of None.
5901 - Add an explicit Exit() function for terminating early.
5903 - Change the documentation to correctly describe that the -f option
5904 doesn't change to the directory in which the specified file lives.
5906 - Support changing directories locally with SConscript directory
5907 path names relative to any SConstruct file specified with -f.
5908 This allows you to build in another directory by simply changing
5909 there and pointing at the SConstruct file in another directory.
5911 - Change the default SConscriptChdir() behavior to change to the
5912 SConscript directory while it's being read.
5914 - Fix an exception thrown when the -U option was used with no
5915 Default() target specified.
5917 - Fix -u so that it builds things in corresponding build directories
5918 when used in a source directory.
5922 - Add SharedObject() support to the masm tool.
5924 - Fix WhereIs() to return normalized paths.
5928 - Don't copy a built file to a CacheDir() if it's already there.
5930 - Avoid partial copies of built files in a CacheDir() by copying
5931 to a temporary file and renaming.
5935 - Fix incorrect dependency-cycle errors when an Aliased source doesn't
5940 RELEASE 0.11 - Tue, 11 Feb 2003 05:24:33 -0600
5944 - Add support for IRIX and the SGI MIPSPro tool chain.
5946 - Support using the MSVC tool chain when running Cygwin Python.
5950 - Avoid losing signal bits in the exit status from a command,
5951 helping terminate builds on interrupt (CTRL+C).
5955 - Added new AddPreAction() and AddPostAction() functions that support
5956 taking additional actions before or after building specific targets.
5958 - Add support for the PharLap ETS tool chain.
5962 - Allow Python function Actions to specify a list of construction
5963 variables that should be included in the Action's signature.
5965 - Allow libraries in the LIBS variable to explicitly include the prefix
5966 and suffix, even when using the GNU linker.
5967 (Bug reported by Neal Becker.)
5969 - Use DOS-standard CR-LF line endings in the scons.bat file.
5970 (Bug reported by Gary Ruben.)
5972 - Doc changes: Eliminate description of deprecated "name" keyword
5973 argument from Builder definition (reported by Gary Ruben).
5975 - Support using env.Append() on BUILDERS (and other dictionaries).
5976 (Bug reported by Bj=F6rn Bylander.)
5978 - Setting the BUILDERS construction variable now properly clears
5979 the previous Builder attributes from the construction Environment.
5980 (Bug reported by Bj=F6rn Bylander.)
5982 - Fix adding a prefix to a file when the target isn't specified.
5983 (Bug reported by Esa Ilari Vuokko.)
5985 - Clean up error messages from problems duplicating into read-only
5986 BuildDir directories or into read-only files.
5988 - Add a CommandAction.strfunction() method, and add an "env" argument
5989 to the FunctionAction.strfunction() method, so that all Action
5990 objects have strfunction() methods, and the functions for building
5991 and returning a string both take the same arguments.
5993 - Add support for new CacheDir() functionality to share derived files
5994 between builds, with related options --cache-disable, --cache-force,
5997 - Change the default behavior when no targets are specified to build
5998 everything in the current directory and below (like Make). This
5999 can be disabled by specifying Default(None) in an SConscript.
6001 - Revamp SCons installation to fix a case-sensitive installation
6002 on Win32 systems, and to add SCons-specific --standard-lib,
6003 --standalone-lib, and --version-lib options for easier user
6004 control of where the libraries get installed.
6006 - Fix the ability to directly import and use Platform and Tool modules
6007 that have been implicitly imported into an Environment().
6009 - Add support for allowing an embedding interface to annotate a node
6012 - Extend the SConscript() function to accept build_dir and duplicate
6013 keyword arguments that function like a BuildDir() call.
6017 - Fix the output of -c -n when directories are involved, so it
6022 - Use a different shared object suffix (.os) when using gcc so shared
6023 and static objects can exist side-by-side in the same directory.
6025 - Allow the same object files on Win32 to be linked into either
6026 shared or static libraries.
6028 - Cache implicit cache values when using --implicit-cache.
6032 RELEASE 0.10 - Thu, 16 Jan 2003 04:11:46 -0600
6034 From Derrick 'dman' Hudson:
6036 - Support Repositories on other file systems by symlinking or
6037 copying files when hard linking won't work.
6041 - Remove Python bytecode (*.pyc) files from the scons-local packages.
6043 - Have FunctionActions print a description of what they're doing
6044 (a representation of the Python call).
6046 - Fix the Install() method so that, like other actions, it prints
6047 what would have happened when the -n option is used.
6049 - Don't create duplicate source files in a BuildDir when the -n
6052 - Refactor the Scanner interface to eliminate unnecessary Scanner
6053 calls and make it easier to write efficient scanners.
6055 - Added a "recursive" flag to Scanner creation that specifies the
6056 Scanner should be invoked recursively on dependency files returned
6059 - Significant performance improvement from using a more efficient
6060 check, throughout the code, for whether a Node has a Builder.
6062 - Fix specifying only the source file to MultiStepBuilders such as
6063 the Program Builder. (Bug reported by Dean Bair.)
6065 - Fix an exception when building from a file with the same basename as
6066 the subdirectory in which it lives. (Bug reported by Gerard Patel.)
6068 - Fix automatic deduction of a target file name when there are
6069 multiple source files specified; the target is now deduced from just
6070 the first source file in the list.
6072 - Documentation fixes: better initial explanation of SConscript files;
6073 fix a misformatted "table" in the StaticObject explanation.
6075 From Steven Knight and Steve Leblanc:
6077 - Fix the -c option so it will remove symlinks.
6081 - Add a Clean() method to support removing user-specified targets
6082 when using the -c option.
6084 - Add a development script for running SCons through PyChecker.
6086 - Clean up things found by PyChecker (mostly unnecessary imports).
6088 - Add a script to use HappyDoc to create HTML class documentation.
6092 - Make the Environment.get() method return None by default.
6096 - Add SetJobs() and GetJobs() methods to allow configuration of the
6097 number of default jobs (still overridden by -j).
6099 - Convert the .sconsign file format from ASCII to a pickled Python
6102 - Error message cleanups: Made consistent the format of error
6103 messages (now all start with "scons: ***") and warning messages (now
6104 all start with "scons: warning:"). Caught more cases with the "Do
6105 not know how to build" error message.
6107 - Added support for the MinGW tool chain.
6109 - Added a --debug=includes option.
6113 RELEASE 0.09 - Thu, 5 Dec 2002 04:48:25 -0600
6117 - Add a Prepend() method to Environments, to append values to
6118 the beginning of construction variables.
6122 - Add long command-line support to the "lib" Tool (Microsoft library
6127 - Allow $$ in a string to be passed through as $.
6129 - Support file names with odd characters in them.
6131 - Add support for construction variable substition on scanner
6132 directories (in CPPPATH, F77PATH, LIBPATH, etc.).
6134 From Charles Crain and Steven Knight:
6136 - Add Repository() functionality, including the -Y option.
6140 - Fix auto-deduction of target names so that deduced targets end
6141 up in the same subdirectory as the source.
6143 - Don't remove source files specified on the command line!
6145 - Suport the Intel Fortran Compiler (ifl.exe).
6147 - Supply an error message if there are no command-line or
6148 Default() targets specified.
6150 - Fix the ASPPCOM values for the GNU assembler.
6151 (Bug reported by Brett Polivka.)
6153 - Fix an exception thrown when a Default() directory was specified
6154 when using the -U option.
6156 - Issue a warning when -c can't remove a target.
6158 - Eliminate unnecessary Scanner calls by checking for the
6159 existence of a file before scanning it. (This adds a generic
6160 hook to check an arbitrary condition before scanning.)
6162 - Add explicit messages to tell when we're "Reading SConscript files
6163 ...," "done reading SConscript files," "Building targets," and
6164 "done building targets." Add a -Q option to supress these.
6166 - Add separate $SHOBJPREFIX and $SHOBJSUFFIX construction variables
6167 (by default, the same as $OBJPREFIX and $OBJSUFFIX).
6169 - Add Make-like error messages when asked to build a source file,
6170 and before trying to build a file that doesn't have all its source
6171 files (including when an invalid drive letter is used on WIN32).
6173 - Add an scons-local-{version} package (in both .tar.gz and .zip
6174 flavors) to help people who want to ship SCons as a stand-alone
6175 build tool in their software packages.
6177 - Prevent SCons from unlinking files in certain situations when
6178 the -n option is used.
6180 - Change the name of Tool/lib.py to Tool/mslib.py.
6182 From Steven Knight and Anthony Roach:
6184 - Man page: document the fact that Builder calls return Node objects.
6188 - Refactor option processing to use our own version of Greg Ward's
6189 Optik module, modified to run under Python 1.5.2.
6191 - Add a ParseConfig() command to modify an environment based on
6192 parsing output from a *-config command.
6196 - Fix interpretation of '#/../foo' on Win32 systems.
6200 - Fixed use of command lines with spaces in their arguments,
6201 and use of Nodes with spaces in their string representation.
6203 - Make access and modification times of files in a BuildDir match
6204 the source file, even when hard linking isn't available.
6206 - Make -U be case insensitive on Win32 systems.
6208 - Issue a warning and continue when finding a corrupt .sconsign file.
6210 - Fix using an alias as a dependency of a target so that if one of the
6211 alias' dependencies gets rebuilt, the resulting target will, too.
6213 - Fix differently ordered targets causing unnecessary rebuilds
6214 on case insensitive systems.
6216 - Use os.system() to execute external commands whenever the "env"
6217 utility is available, which is much faster than fork()/exec(),
6218 and fixes the -j option on several platforms.
6220 - Fix use of -j with multiple targets.
6222 - Add an Options() object for friendlier accomodation of command-
6225 - Add support for Microsoft VC++ precompiled header (.pch) files,
6226 debugger (.pdb) files, and resource (.rc) files.
6228 - Don't compute the $_CPPINCFLAGS, $_F77INCFLAGS, $_LIBFLAGS and
6229 $_LIBDIRFLAGS variables each time a command is executed, define
6230 them so they're computed only as needed. Add a new _concat
6231 function to the Environment that allows people to define their
6232 own similar variables.
6234 - Fix dependency scans when $LIBS is overridden.
6236 - Add EnsurePythonVersion() and EnsureSConsVersion() functions.
6238 - Fix the overly-verbose stack trace on ListBuilder build errors.
6240 - Add a SetContentSignatureType() function, allowing use of file
6241 timestamps instead of MD5 signatures.
6243 - Make -U and Default('source') fail gracefully.
6245 - Allow the File() and Dir() methods to take a path-name string as
6246 the starting directory, in addition to a Dir object.
6248 - Allow the command handler to be selected via the SPAWN, SHELL
6249 and ESCAPE construction variables.
6251 - Allow construction variables to be overridden when a Builder
6256 - Dynamically check for the existence of utilities with which to
6257 initialize Environments by default.
6261 RELEASE 0.08 - Mon, 15 Jul 2002 12:08:51 -0500
6265 - Fixed a bug with relative CPPPATH dirs when using BuildDir().
6266 (Bug reported by Bob Summerwill.)
6268 - Added a warnings framework and a --warn option to enable or
6271 - Make the C scanner warn users if files referenced by #include
6272 directives cannot be found and --warn=dependency is specified.
6274 - The BUILDERS construction variable should now be a dictionary
6275 that maps builder names to actions. Existing uses of lists,
6276 and the Builder name= keyword argument, generate warnings
6277 about use of deprecated features.
6279 - Removed the "shared" keyword argument from the Object and
6282 - Added separated StaticObject, SharedObject, StaticLibrary and
6283 SharedLibrary builders. Made Object and Library synonyms for
6284 StaticObject and StaticLibrary, respectively.
6286 - Add LIBS and LIBPATH dependencies for shared libraries.
6288 - Removed support for the prefix, suffix and src_suffix arguments
6289 to Builder() to be callable functions.
6291 - Fix handling file names with multiple dots.
6293 - Allow a build directory to be outside of the SConstruct tree.
6295 - Add a FindFile() function that searches for a file node with a
6298 - Add $CPPFLAGS to the shared-object command lines for g++ and gcc.
6300 From Charles Crain and Steven Knight:
6302 - Add a "tools=" keyword argument to Environment instantiation,
6303 and a separate Tools() method, for more flexible specification
6304 of tool-specific environment changes.
6308 - Add a "platform=" keyword argument to Environment instantiation,
6309 and a separate Platform() method, for more flexible specification
6310 of platform-specific environment changes.
6312 - Updated README instructions and setup.py code to catch an
6313 installation failure from not having distutils installed.
6315 - Add descriptions to the -H help text for -D, -u and -U so
6316 people can tell them apart.
6318 - Remove the old feature of automatically splitting strings
6319 of file names on white space.
6321 - Add a dependency Scanner for native Fortran "include" statements,
6322 using a new "F77PATH" construction variable.
6324 - Fix C #include scanning to detect file names with characters like
6327 - Add more specific version / build output to the -v option.
6329 - Add support for the GNU as, Microsoft masm, and nasm assemblers.
6331 - Allow the "target" argument to a Builder call to be omitted, in
6332 which case the target(s) are deduced from the source file(s) and the
6333 Builder's specified suffix.
6335 - Add a tar archive builder.
6337 - Add preliminary support for the OS/2 Platform, including the icc
6342 - Fix --implicit-cache if the scanner returns an empty list.
6346 - Add a "multi" keyword argument to Builder creation that specifies
6347 it's okay to call the builder multiple times for a target.
6349 - Set a "multi" on Aliases so multiple calls will append to an Alias.
6351 - Fix emitter functions' use of path names when using BuildDir or
6354 - Fix --implicit-cache causing redundant rebuilds when the header
6357 - Fix --implicit-cache when a file has no implicit dependencies and
6358 its source is generated.
6360 - Make the drive letters on Windows always be the same case, so that
6361 changes in the case of drive letters don't cause a rebuild.
6363 - Fall back to importing the SCons.TimeStamp module if the SCons.MD5
6364 module can't be imported.
6366 - Fix interrupt handling to guarantee that a single interrupt will
6367 halt SCons both when using -j and not.
6369 - Fix .sconsign signature storage so that output files of one build
6370 can be safely used as input files to another build.
6372 - Added a --debug=time option to print SCons execution times.
6374 - Print an error message if a file can't be unlinked before being
6375 built, rather than just silently terminating the build.
6377 - Add a SideEffect() method that can be used to tell the build
6378 engine that a given file is created as a side effect of building
6379 a target. A file can be specified as a side effect of more than
6380 one build comand, in which case the commands will not be executed
6383 - Significant performance gains from not using our own version of
6384 the inefficient stock os.path.splitext() method, caching source
6385 suffix computation, code cleanup in MultiStepBuilder.__call__(),
6386 and replicating some logic in scons_subst().
6388 - Add --implicit-deps-changed and --implicit-deps-unchanged options.
6390 - Add a GetLaunchDir() function.
6392 - Add a SetBuildSignatureType() function.
6396 - Add an Append() method to Environments, to append values to
6397 construction variables.
6399 - Change the name of Update() to Replace(). Keep Update() as a
6400 deprecated synonym, at least for now.
6402 From Terrel Shumway:
6404 - Use a $PYTHON construction variable, initialized to sys.executable,
6405 when using Python to build parts of the SCons packages.
6407 - Use sys.prefix, not sys.exec_prefix, to find pdb.py.
6411 RELEASE 0.07 - Thu, 2 May 2002 13:37:16 -0500
6415 - Changes to build SCons packages on IRIX (and other *NIces).
6417 - Don't create a directory Node when a file already exists there,
6420 - Add 'dirs' and 'names' keyword arguments to SConscript for
6421 easier specification of subsidiary SConscript files.
6425 - Internal cleanup of environment passing to function Actions.
6427 - Builders can now take arbitrary keyword arguments to create
6428 attributes to be passed to: command generator functions,
6429 FunctionAction functions, Builder emitter functions (below),
6430 and prefix/suffix generator functions (below).
6432 - Command generator functions can now return ANYTHING that can be
6433 converted into an Action (a function, a string, a CommandGenerator
6434 instance, even an ActionBase instance).
6436 - Actions now call get_contents() with the actual target and source
6437 nodes used for the build.
6439 - A new DictCmdGenerator class replaces CompositeBuilder to support
6440 more flexible Builder behavior internally.
6442 - Builders can now take an emitter= keyword argument. An emitter
6443 is a function that takes target, source, and env argument, then
6444 return a 2-tuple of (new sources, new targets). The emitter is
6445 called when the Builder is __call__'ed, allowing a user to modify
6446 source and target lists.
6448 - The prefix, suffix and src_suffix Builder arguments now take a
6449 callable as well a string. The callable is passed the Environment
6450 and any extra Builder keyword arguments and is expected to return
6451 the appropriate prefix or suffix.
6453 - CommandActions can now be a string, a list of command + argument
6454 strings, or a list of commands (strings or lists).
6456 - Added shared library support. The Object and Library Builders now
6457 take a "shared=1" keyword argument to specify that a shared object
6458 or shared library should be built. It is an error to try to build
6459 static objects into a shared library or vice versa.
6461 - Win32 support for .def files has been added. Added the Win32-specific
6462 construction variables $WIN32DEFPREFIX, $WIN32DEFSUFFIX,
6463 $WIN32DLLPREFIX and $WIN32IMPLIBPREFIX. When building a .dll,
6464 the new construction variable $WIN32_INSERT_DEF, controls whether
6465 the appropriately-named .def file is inserted into the target
6466 list (if not already present). A .lib file is always added to
6467 a Library build if not present in the list of targets.
6469 - ListBuilder now passes all targets to the action, not just the first.
6471 - Fix so that -c now deletes generated yacc .h files.
6473 - Builder actions and emitter functions can now be initialized, through
6474 construction variables, to things other than strings.
6476 - Make top-relative '#/dir' lookups work like '#dir'.
6478 - Fix for relative CPPPATH directories in subsidiary SConscript files
6481 - Add a for_signature argument to command generators, so that
6482 generators that need to can return distinct values for the
6483 command signature and for executing the command.
6487 - Create a better scons.bat file from a py2bat.py script on the Python
6488 mailing list two years ago (modeled after pl2bat.pl).
6492 - Fix so that -c -n does *not* remove the targets!
6494 - Man page: Add a hierarchical libraries + Program example.
6496 - Support long MSVC linker command lines through a builder action
6497 that writes to a temporary file and uses the magic MSVC "link @file"
6498 argument syntax if the line is longer than 2K characters.
6500 - Fix F77 command-line options on Win32 (use /Fo instead of -o).
6502 - Use the same action to build from .c (lower case) and .C (upper
6503 case) files on case-insensitive systems like Win32.
6505 - Support building a PDF file directly from a TeX or LaTeX file
6506 using pdftex or pdflatex.
6508 - Add a -x option to runtest.py to specify the script being tested.
6509 A -X option indicates it's an executable, not a script to feed
6510 to the Python interpreter.
6512 - Add a Split() function (identical to SCons.Util.argmunge()) for use
6513 in the next release, when Builders will no longer automatically split
6514 strings on white space.
6518 - Add the SConscriptChdir() method.
6522 - Fix --debug=tree when used with directory targets.
6524 - Significant internal restructuring of Scanners and Taskmaster.
6526 - Added new --debug=dtree option.
6528 - Fixes for --profile option.
6530 - Performance improvement in construction variable substitution.
6532 - Implemented caching of content signatures, plus added --max-drift
6533 option to control caching.
6535 - Implemented caching of dependency signatures, enabled by new
6536 --implicit-cache option.
6538 - Added abspath construction variable modifier.
6540 - Added $SOURCE variable as a synonym for $SOURCES[0].
6542 - Write out .sconsign files on error or interrupt so intermediate
6543 build results are saved.
6545 - Change the -U option to -D. Make a new -U that builds just the
6546 targets from the local SConscript file.
6548 - Fixed use of sys.path so Python modules can be imported from
6549 the SConscript directory.
6551 - Fix for using Aliases with the -u, -U and -D options.
6553 - Fix so that Nodes can be passed to SConscript files.
6557 - Changes for official Debian packaging.
6561 RELEASE 0.06 - Thu, 28 Mar 2002 01:24:29 -0600
6565 - Fix command generators to expand construction variables.
6567 - Make FunctionAction arguments be Nodes, not strings.
6569 From Stephen Kennedy:
6571 - Performance: Use a dictionary, not a list, for a Node's parents.
6575 - Add .zip files to the packages we build.
6577 - Man page: document LIBS, fix a typo, document ARGUMENTS.
6579 - Added RANLIB and RANLIBFLAGS construction variables. Only use them
6580 in ARCOM if there's a "ranlib" program on the system.
6582 - Add a configurable CFILESUFFIX for the Builder of .l and .y files
6585 - Add a CXXFile Builder that turns .ll and .yy files into .cc files
6586 (configurable via a CXXFILESUFFIX construction variable).
6588 - Use the POSIX-standard lex -t flag, not the GNU-specific -o flag.
6589 (Bug reported by Russell Christensen.)
6591 - Fixed an exception when CPPPATH or LIBPATH is a null string.
6592 (Bug reported by Richard Kiss.)
6594 - Add a --profile=FILE option to make profiling SCons easier.
6596 - Modify the new DVI builder to create .dvi files from LaTeX (.ltx
6599 - Add support for Aliases (phony targets).
6601 - Add a WhereIs() method for searching for path names to executables.
6603 - Add PDF and PostScript document builders.
6605 - Add support for compiling Fortran programs from a variety of
6606 suffixes (a la GNU Make): .f, .F, .for, .FOR, .fpp and .FPP
6608 - Support a CPPFLAGS variable on all default commands that use the
6613 - Add support for the -U option.
6615 - Allow CPPPATH, LIBPATH and LIBS to be specified as white-space
6618 - Add a document builder to create .dvi files from TeX (.tex) files.
6622 - Fix: Construction variables with values of 0 were incorrectly
6625 - Support env['VAR'] to fetch construction variable values.
6627 - Man page: document Precious().
6631 RELEASE 0.05 - Thu, 21 Feb 2002 16:50:03 -0600
6635 - Set PROGSUFFIX to .exe under Cygwin.
6639 - Allow a library to specified as a command-line source file, not just
6640 in the LIBS construction variable.
6642 - Compensate for a bug in os.path.normpath() that returns '' for './'
6645 - More performance optimizations: cache #include lines from files,
6646 eliminate unnecessary calls.
6648 - If a prefix or suffix contains white space, treat the resulting
6649 concatenation as separate arguments.
6651 - Fix irregularities in the way we fetch DevStudio information from
6652 the Windows registry, and in our registry error handling.
6656 - Flush stdout after print so it intermixes correctly with stderr
6659 - Allow Scanners to return a list of strings, and document how to
6660 write your own Scanners.
6662 - Look up implicit (scanned) dependencies relative to the directory
6663 of file being scanned.
6665 - Make writing .sconsign files more robust by first trying to write
6666 to a temp file that gets renamed.
6668 - Create all of the directories for a list of targets before trying
6669 to build any of the targets.
6671 - WIN32 portability fixes in tests.
6673 - Allow the list of variables exported to an SConscript file to be
6676 - Document the overlooked LIBPATH construction variable.
6677 (Bug reported by Eicke Godehardt.)
6679 - Fix so that Ignore() ignores indirect, implicit dependencies
6680 (included files), not just direct dependencies.
6682 - Put the man page in the Debian distribution.
6684 - Run HTML docs through tidy to clean up the HTML (for Konqueror).
6686 - Add preliminary support for Unicode strings.
6688 - Efficiency: don't scan dependencies more than once during the
6691 - Fix the -c option so it doesn't stop removing targets if one doesn't
6693 (Bug reported by Paul Connell.)
6695 - Fix the --debug=pdb option when run on Windows NT.
6696 (Bug reported by Paul Connell.)
6698 - Add support for the -q option.
6702 - Add support for the -u option.
6704 - Add .cc and .hh file suffixes to the C Scanner.
6708 - Make the scons script return an error code on failures.
6710 - Add support for using code to generate a command to build a target.
6714 RELEASE 0.04 - Wed, 30 Jan 2002 11:09:42 -0600
6718 - Significant performance improvements in the Node.FS and
6721 - Fix signatures of binary files on Win32 systems.
6723 - Allow LIBS and LIBPATH to be strings, not just arrays.
6725 - Print a traceback if a Python-function builder throws an exception.
6729 - Fix using a directory as a Default(), and allow Default() to
6730 support white space in file names for strings in arrays.
6732 - Man page updates: corrected some mistakes, documented various
6733 missing Environment methods, alphabetized the construction
6734 variables and other functions, defined begin and end macros for
6735 the example sections, regularized white space separation, fixed
6736 the use of Export() in the Multiple Variants example.
6738 - Function action fixes: None is now a successful return value.
6739 Exceptions are now reported. Document function actions.
6741 - Add 'Action' and 'Scanner' to the global keywords so SConscript
6742 files can use them too.
6744 - Removed the Wrapper class between Nodes and Walkers.
6746 - Add examples using Library, LIBS, and LIBPATH.
6748 - The C Scanner now always returns a sorted list of dependencies
6749 so order changes don't cause unnecessary rebuilds.
6751 - Strip $(-$) bracketed text from command lines. Use this to
6752 surround $_INCDIRS and $_LIBDIRS so we don't rebuild in response
6753 to changes to -I or -L options.
6755 - Add the Ignore() method to ignore dependencies.
6757 - Provide an error message when a nonexistent target is specified
6758 on the command line.
6760 - Remove targets before building them, and add an Environment
6761 Precious() method to override that.
6763 - Eliminate redundant calls to the same builder when the target is a
6764 list of targets: Add a ListBuilder class that wraps Builders to
6765 handle lists atomically. Extend the Task class to support building
6766 and updating multiple targets in a single Task. Simplify the
6767 interface between Task and Taskmaster.
6769 - Add a --debug=pdb option to re-run SCons under the Python debugger.
6771 - Only compute a build signature once for each node.
6773 - Changes to our sys.path[] manipulation to support installation into
6774 an arbitrary --prefix value.
6778 - Add var=value command-line arguments.
6782 RELEASE 0.03 - Fri, 11 Jan 2002 01:09:30 -0600
6786 - Performance improvements in the Node.FS and Sig.Calculator classes.
6788 - Add the InstallAs() method.
6790 - Execute commands through an external interpreter (sh, cmd.exe, or
6791 command.com) to handle redirection metacharacters.
6793 - Allow the user to supply a command handler.
6797 - Search both /usr/lib and /usr/local/lib for scons directories by
6798 adding them both to sys.path, with whichever is in sys.prefix first.
6800 - Fix interpreting strings of multiple white-space separated file names
6801 as separate file names, allowing prefixes and suffixes to be appended
6802 to each individually.
6804 - Refactor to move CompositeBuilder initialization logic from the
6805 factory wrapper to the __init__() method, and allow a Builder to
6806 have both an action and a src_builder (or array of them).
6808 - Refactor BuilderBase.__call__() to separate Node creation/lookup
6809 from initialization of the Node's builder information.
6811 - Add a CFile Builder object that supports turning lex (.l) and
6812 yacc (.y) files into .c files.
6814 - Document: variable interpretation attributes; how to propogate
6815 the user's environment variables to executed commands; how to
6816 build variants in multiple BuildDirs.
6818 - Collect String, Dict, and List type-checking in common utility
6819 routines so we can accept User{String,Dict,List}s all over.
6821 - Put the Action factory and classes into their own module.
6823 - Use one CPlusPlusAction in the Object Builder's action dictionary,
6824 instead of letting it create multiple identical instances.
6826 - Document the Install() and InstallAs() methods.
6830 - Require that a Builder be given a name argument, supplying a
6831 useful error message when it isn't.
6835 - Add a "duplicate" keyword argument to BuildDir() that can be set
6836 to prevent linking/copying source files into build directories.
6838 - Add a "--debug=tree" option to print an ASCII dependency tree.
6840 - Fetch the location of the Microsoft Visual C++ compiler(s) from
6841 the Registry, instead of hard-coding the location.
6843 - Made Scanner objects take Nodes, not path names.
6845 - Have the C Scanner cache the #include file names instead of
6846 (re-)scanning the file each time it's called.
6848 - Created a separate class for parent "nodes" of file system roots,
6849 eliminating the need for separate is-parent-null checks everywhere.
6851 - Removed defined __hash__() and __cmp() methods from FS.Entry, in
6852 favor of Python's more efficient built-in identity comparisons.
6856 RELEASE 0.02 - Sun, 23 Dec 2001 19:05:09 -0600
6860 - Added the Install(), BuildDir(), and Export() methods.
6862 - Fix the -C option by delaying setting the top of the FS tree.
6864 - Avoid putting the directory path on the libraries in the LIBS
6865 construction variable.
6867 - Added a GetBuildPath() method to return the full path to the
6868 Node for a specified string.
6870 - Fixed variable substitution in CPPPATH and LIBPATH.
6874 - Fixed the version comment in the scons.bat (the UNIX geek used
6877 - Fix to setup.py so it doesn't require a sys.argv[1] argument.
6879 - Provide make-like warning message for "command not found" and
6882 - Added an EXAMPLES section to the man page.
6884 - Make Default() targets properly relative to their SConscript
6885 file's subdirectory.
6889 - Documented CXXFLAGS, CXXCOM, and CPPPATH.
6891 - Fixed SCONS_LIB_DIR to work as documented.
6893 - Made Default() accept Nodes as arguments.
6895 - Changed Export() to make it easier to use.
6897 - Added the Import() and Return() methods.
6901 RELEASE 0.01 - Thu Dec 13 19:25:23 CST 2001
6903 A brief overview of important functionality available in release 0.01:
6905 - C and C++ compilation on POSIX and Windows NT.
6907 - Automatic scanning of C/C++ source files for #include dependencies.
6909 - Support for building libraries; setting construction variables
6910 allows creation of shared libraries.
6912 - Library and C preprocessor search paths.
6914 - File changes detected using MD5 signatures.
6916 - User-definable Builder objects for building files.
6918 - User-definable Scanner objects for scanning for dependencies.
6920 - Parallel build (-j) support.
6922 - Dependency cycles detected.
6924 - Linux packages available in RPM and Debian format.
6926 - Windows installer available.