Scons

Latest version: v4.9.1

Safety actively analyzes 723963 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 11 of 14

0.95

From Chad Austin:

- Replace print statements with calls to sys.stdout.write() so output
lines stay together when -j is used.

- Add portability fixes for a number of tests.

- Accomodate the fact that Cygwin's os.path.normcase() lies about
the underlying system being case-sensitive.

- Fix an incorrect _concat() call in the $RCINCFLAGS definition for
the mingw Tool.

- Fix a problem with the msvc tool with Python versions prior to 2.3.

- Add support for a "toolpath" Tool() and Environment keyword that
allows Tool modules to be found in specified local directories.

- Work around Cygwin Python's silly fiction that it's using a
case-sensitive file system.

- More robust handling of data in VCComponents.dat.

- If the "env" command is available, spawn commands with the more
general "env -" instead of "env -i".

From Kerim Borchaev:

- Fix a typo in a msvc.py's registry lookup: "VCComponents.dat", not
"VSComponents.dat".

From Chris Burghart:

- Fix the ability to save/restore a PackageOption to a file.

From Steve Christensen:

- Update the MSVS .NET and MSVC 6.0/7.0 path detection.

From David M. Cooke:

- Make the Fortran scanner case-insensitive for the INCLUDE string.

From Charles Crain:

- If no version of MSVC is detected but the tool is specified,
use the MSVC 6.0 paths by default.

- Ignore any "6.1" version of MSVC found in the registry; this is a
phony version number (created by later service packs?) and would
throw off the logic if the user had any non-default paths configure.

- Correctly detect if the user has independently configured the MSVC
"include," "lib" or "path" in the registry and use the appropriate
values. Previously, SCons would only use the values if all three
were set in the registry.

- Make sure side-effect nodes are prepare()d before building their
corresponding target.

- Preserve the ability to call BuildDir() multiple times with the
same target and source directory arguments.

From Andy Friesen:

- Add support for the Digital Mars "D" programming language.

From Scott Lystig Fritchie:

- Fix the ability to use a custom _concat() function in the
construction environment when calling _stripixes().

- Make the message about ignoring a missing SConscript file into a
suppressable Warning, not a hard-coded sys.stderr.write().

- If a builder can be called multiple times for a target (because
the sources and overrides are identical, or it's a builder with the
"multi" flag set), allow the builder to be called through multiple
environments so long as the builders have the same signature for
the environments in questions (that is, they're the same action).

From Bob Halley:

- When multiple targets are built by a single action, retrieve all
of them from cache, not just the first target, and exec the build
command if any of the targets isn't present in the cache.

From Zephaniah Hull:

- Fix command-line ARGUMENTS with multiple = in them.

From Steven Knight:

- Fix EnsureSConsVersion() so it checks against the SCons version,
not the Python version, on Pythons with sys.version_info.

- Don't swallow the AttributeError when someone uses an expansion like
$TARGET.bak, so we can supply a more informative error message.

- Fix an odd double-quote escape sequence in the man page.

- Fix looking up a naked drive letter as a directory (Dir('C:')).

- Support using File nodes in the LIBS construction variable.

- Allow the LIBS construction variable to be a single string or File
node, not a list, when only one library is needed.

- Fix typos in the man page: JAVACHDIR => JARCHDIR; add "for_signature"
to the __call__() example in the "Variable Substitution" section.

- Correct error message spellings of "non-existant" to "non-existent."

- When scanning for libraries to link with, don't append $LIBPREFIXES
or $LIBSUFFIXES values to the $LIBS values if they're already present.

- Add a ZIPCOMPRESSION construction variable to control whether the
internal Python action for the Zip Builder compresses the file or
not. The default value is zipfile.ZIP_DEFLATED, which generates
a compressed file.

- Refactor construction variable expansion to support recursive
expansion of variables (e.g. CCFLAGS = "$CCFLAGS -g") without going
into an infinite loop. Support this in all construction variable
overrides, as well as when copying Environments.

- Fix calling Configure() from more than one subsidiary SConscript file.

- Fix the env.Action() method so it returns the correct type of
Action for its argument(s).

- Fix specifying .class files as input to JavaH with the .class suffix
when they weren't generated using the Java Builder.

- Make the check for whether all of the objects going into a
SharedLibrary() are shared work even if the object was built in a
previous run.

- Supply meaningful error messages, not stack traces, if we try to add
a non-Node as a source, dependency, or ignored dependency of a Node.

- Generate MSVS Project files that re-invoke SCons properly regardless
of whether the file was built via scons.bat or scons.py.
(Thanks to Niall Douglas for contributing code and testing.)

- Fix TestCmd.py, runtest.py and specific tests to accomodate being
run from directories whose paths include white space.

- Provide a more useful error message if a construction variable
expansion contains a syntax error during evaluation.

- Fix transparent checkout of implicit dependency files from SCCS
and RCS.

- Added new --debug=count, --debug=memory and --debug=objects options.
--debug=count and --debug=objects only print anything when run
under Python 2.1 or later.

- Deprecate the "overrides" keyword argument to Builder() creation
in favor of using keyword argument values directly (like we do
for builder execution and the like).

- Always use the Builder overrides in substitutions, not just if
there isn't a target-specific environment.

- Add new "rsrcpath" and "rsrcdir" and attributes to $TARGET/$SOURCE,
so Builder command lines can find things in Repository source
directories when using BuildDir.

- Fix the M4 Builder so that it chdirs to the Repository directory
when the input file is in the source directory of a BuildDir.

- Save memory at build time by allowing Nodes to delete their build
environments after they've been built.

- Add AppendUnique() and PrependUnique() Environment methods, which
add values to construction variables like Append() and Prepend()
do, but suppress any duplicate elements in the list.

- Allow the 'qt' tool to still be used successfully from a copied
Environment. The include and library directories previously ended up
having the same string re-appended to the end, yielding an incorrect
path name.

- Supply a more descriptive error message when the source for a target
can't be found.

- Initialize all *FLAGS variables with objects do the right thing with
appending flags as strings or lists.

- Make things like ${TARGET.dir} work in *PATH construction variables.

- Allow a $MSVS_USE_MFC_DIRS construction variable to control whether
ATL and MFC directories are included in the default INCLUDE and
LIB paths.

- Document the dbm_module argument to the SConsignFile() function.

From Vincent Risi:

- Add support for the bcc32, ilink32 and tlib Borland tools.

From Anthony Roach:

- Supply an error message if the user tries to configure a BuildDir
for a directory that already has one.

- Remove documentation of the still-unimplemented -e option.

- Add -H help text listing the legal --debug values.

- Don't choke if a construction variable is a non-string value.

- Build Type Libraries in the target directory, not the source
directory.

- Add an appendix to the User's Guide showing how to accomplish
various common tasks in Python.

From Greg Spencer:

- Add support for Microsoft Visual Studio 2003 (version 7.1).

- Evaluate $MSVSPROJECTSUFFIX and $MSVSSOLUTIONSUFFIX when the Builder
is invoked, not when the tool is initialized.

From Christoph Wiedemann:

- When compiling Qt, make sure the moc_*.cc files are compiled using
the flags from the environment used to specify the target, not
the environment that first has the Qt Builders attached.

0.94

From Hartmut Goebel:

- Add several new types of canned functions to help create options:
BoolOption(), EnumOption(), ListOption(), PackageOption(),
PathOption().

From Steven Knight:

- Fix use of CPPDEFINES with C++ source files.

- Fix env.Append() when the operand is an object with a __cmp__()
method (like a Scanner instance).

- Fix subclassing the Environment and Scanner classes.

- Add BUILD_TARGETS, COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.

From Steve Leblanc:

- SGI fixes: Fix C++ compilation, add a separate Tool/sgic++.py module.

From Gary Oberbrunner:

- Fix how the man page un-indents after examples in some browsers.

From Vincent Risi:

- Fix the C and C++ tool specifications for AIX.

0.93

From J.T. Conklin:

- On POSIX, execute commands with the more modern os.spawnvpe()
function, if it's available.

- Scan .S, .spp and .SPP files for C preprocessor dependencies.

- Refactor the Job.Parallel() class to use a thread pool without a
condition variable. This improves parallel build performance and
handles keyboard interrupts properly when -j is used.

From Charles Crain:

- Add support for a JARCHDIR variable to control changing to a
directory using the jar -C option.

- Add support for detecting Java manifest files when using jar,
and specifying them using the jar m flag.

- Fix some Python 2.2 specific things in various tool modules.

- Support directories as build sources, so that a rebuild of a target
can be triggered if anything underneath the directory changes.

- Have the scons.bat and scons.py files look for the SCons modules
in site-packages as well.

From Christian Engel:

- Support more flexible inclusion of separate C and C++ compilers.

- Use package management tools on AIX and Solaris to find where
the comilers are installed, and what version they are.

- Add support for CCVERSION and CXXVERSION variables for a number
of C and C++ compilers.

From Sergey Fogel:

- Add test cases for the new capabilities to run bibtex and to rerun
latex as needed.

From Ralf W. Grosse-Kunstleve:

- Accomodate anydbm modules that don't have a sync() method.

- Allow SConsignFile() to take an argument specifying the DBM
module to be used.

From Stephen Kennedy:

- Add support for a configurable global .sconsign.dbm file which
can be used to avoid cluttering each directory with an individual
.sconsign file.

From John Johnson:

- Fix (re-)scanning of dependencies in generated or installed
header files.

From Steven Knight:

- The -Q option suppressed too many messages; fix it so that it only
suppresses the Reading/Building messages.

- Support include when there's no space before the opening quote
or angle bracket.

- Accomodate alphanumeric version strings in EnsurePythonVersion().

- Support arbitrary expansion of construction variables within
file and directory arguments to Builder calls and Environment methods.

- Add Environment-method versions of the following global functions:
Action(), AddPostAction(), AddPreAction(), Alias(), Builder(),
BuildDir(), CacheDir(), Clean(), Configure(), Default(),
EnsurePythonVersion(), EnsureSConsVersion(), Environment(),
Exit(), Export(), FindFile(), GetBuildPath(), GetOption(), Help(),
Import(), Literal(), Local(), Platform(), Repository(), Scanner(),
SConscriptChdir(), SConsignFile(), SetOption(), SourceSignatures(),
Split(), TargetSignatures(), Tool(), Value().

- Add the following global functions that correspond to the same-named
Environment methods: AlwaysBuild(), Command(), Depends(), Ignore(),
Install(), InstallAs(), Precious(), SideEffect() and SourceCode().

- Add the following global functions that correspond to the default
Builder methods supported by SCons: CFile(), CXXFile(), DVI(), Jar(),
Java(), JavaH(), Library(), M4(), MSVSProject(), Object(), PCH(),
PDF(), PostScript(), Program(), RES(), RMIC(), SharedLibrary(),
SharedObject(), StaticLibrary(), StaticObject(), Tar(), TypeLibrary()
and Zip().

- Rearrange the man page to show construction environment methods and
global functions in the same list, and to explain the difference.

- Alphabetize the explanations of the builder methods in the man page.

- Rename the Environment.Environment class to Enviroment.Base.
Allow the wrapping interface to extend an Environment by using its own
subclass of Environment.Base and setting a new Environment.Environment
variable as the calling entry point.

- Deprecate the ParseConfig() global function in favor of a same-named
construction environment method.

- Allow the Environment.WhereIs() method to take explicit path and
pathext arguments (like the underlying SCons.Util.WhereIs() function).

- Remove the long-obsolete {Get,Set}CommandHandler() functions.

- Enhance env.Append() to suppress null values when appropriate.

- Fix ParseConfig() so it works regardless of initial construction
variable values.

Extend CheckHeader(), CheckCHeader(), CheckCXXHeader() and
CheckLibWithHeader() to accept a list of header files that will be
included in the test. The last one in the list is assumed to be
the one being checked for. (Prototype code contributed by Gerard
Patel and Niall Douglas).

- Supply a warning when -j is used and threading isn't built in to
the current version of Python.

- First release of the User's Guide (finally, and despite a lot
of things still missing from it...).

From Clark McGrew:

- Generalize the action for .tex files so that it will decide whether
a file is TeX or LaTeX, check the .aux output to decide if it should
run bibtex, and check the .log output to re-run LaTeX if needed.

From Bram Moolenaar:

- Split the non-SCons-specific functionality from SConf.py to a new,
re-usable Conftest.py module.

From Gary Oberbrunner:

- Allow a directory to be the target or source or dependency of a
Depends(), Ignore(), Precious() or SideEffect() call.

From Gerard Patel:

- Use the %{_mandir} macro when building our RPM package.

From Marko Rauhamaa:

- Have the closing message say "...terminated because of errors" if
there were any.

From Anthony Roach:

- On Win32 systems, only use "rm" to delete files if Cygwin is being
used. ("rm" doesn't understand Win32-format path names.)

From Christoph Wiedemann:

- Fix test/SWIG.py to find the Python include directory in all cases.

- Fix a bug in detection of Qt installed on the local system.

- Support returning Python 2.3 BooleanType values from Configure checks.

- Provide an error message if someone mistakenly tries to call a
Configure check from within a Builder function.

- Support calling a Builder when a Configure context is still open.

- Handle interrupts better by eliminating all try:-except: blocks
which caught any and all exceptions, including KeyboardInterrupt.

- Add a --duplicate= option to control how files are duplicated.

0.92

Not secure
From Charles Crain and Gary Oberbrunner:

- Fix Tool import problems with the Intel and PharLap linkers.

From Steven Knight

- Refactor the DictCmdGenerator class to be a Selector subclass.

- Allow the DefaultEnvironment() function to take arguments and pass
them to instantiation of the default construction environment.

- Update the Debian package so it uses Python 2.2 and more closely
resembles the currently official Debian packaging info.

From Gerard Patel

- When the yacc -d flag is used, take the .h file base name from the
target .c file, not the source (matching what yacc does).

0.91

Not secure
From Chad Austin:

- Support specifying a list of tools when calling Environment.Copy().

- Give a Value Nodes a timestamp of the system time when they're
created, so they'll work when using timestamp-based signatures.

- Add a DefaultEnvironment() function that only creates a default
environment on-demand (for fetching source files, e.g.).

- Portability fix for test/M4.py.

From Steven Knight:

- Tighten up the scons -H help output.

- When the input yacc file ends in .yy and the -d flag is specified,
recognize that a .hpp file (not a .h file) will be created.

- Make builder prefixes work correctly when deducing a target
from a source file name in another directory.

- Documentation fixes: typo in the man page; explain up-front about
not propagating the external environment.

- Use "cvs co -d" instead of "cvs co -p >" when checking out something
from CVS with a specified module name. This avoids zero-length
files when there is a checkout error.

- Add an "sconsign" script to print the contents of .sconsign files.

- Speed up maintaining the various lists of Node children by using
dictionaries to avoid "x in list" searches.

- Cache the computed list of Node children minus those being Ignored
so it's only calculated once.

- Fix use of the --cache-show option when building a Program()
(or using any other arbitrary action) by making sure all Action
instances have strfunction() methods.

- Allow the source of Command() to be a directory.

- Better error handling of things like raw TypeErrors in SConscripts.

- When installing using "setup.py install --prefix=", suppress the
distutils warning message about adding the (incorrect) library
directory to your search path.

- Correct the spelling of the "validater" option to "validator."
Add a DeprecatedWarning when the old spelling is used.

- Allow a Builder's emitter to be a dictionary that maps source file
suffixes to emitter functions, using the suffix of the first file
in the source list to pick the right one.

- Refactor the creation of the Program, *Object and *Library Builders
so that they're moved out of SCons.Defaults and created on demand.

- Don't split SConscript file names on white space.

- Document the SConscript function's "dirs" and "name" keywords.

- Remove the internal (and superfluous) SCons.Util.argmunge() function.

- Add /TP to the default CXXFLAGS for msvc, so it can compile all
of the suffixes we use as C++ files.

- Allow the "prefix" and "suffix" attributes of a Builder to be
callable objects that return generated strings, or dictionaries
that map a source file suffix to the right prefix/suffix.

- Support a MAXLINELINELENGTH construction variable on Win32 systems
to control when a temporary file is used for long command lines.

- Make how we build .rpm packages not depend on the installation
locations from the distutils being used.

- When deducing a target Node, create it directly from the first
source Node, not by trying to create the right string to pass to
arg2nodes().

- Add support for SWIG.

From Bram Moolenaar:

- Test portability fixes for FreeBSD.

From Gary Oberbrunner:

- Report the target being built in error messages when building
multiple sources from different extensions, or when the target file
extension can't be deduced, or when we don't have an action for a
file suffix.

- Provide helpful error messages when the arguments to env.Install()
are incorrect.

- Fix the value returned by the Node.prevsiginfo() method to conform
to a previous change when checking whether a node is current.

- Supply a stack trace if the Taskmaster catches an exception.

- When using a temporary file for a long link line on Win32 systems,
(also) print the command line that is being executed through the
temporary file.

- Initialize the LIB environment variable when using the Intel
compiler (icl).

- Documentation fixes: better explain the AlwaysBuild() function.

From Laurent Pelecq:

- When the -debug=pdb option is specified, use pdb.Pdb().runcall() to
call pdb directly, don't call Python recursively.

From Ben Scott:

- Add support for a platform-independent CPPDEFINES variable.

From Christoph Wiedemann:

- Have the g++ Tool actually use g++ in preference to c++.

- Have the gcc Tool actually use gcc in preference to cc.

- Add a gnutools.py test of the GNU tool chain.

- Be smarter about linking: use $CC by default and $CXX only if we're
linking with any C++ objects.

- Avoid SCons hanging when a piped command has a lot of output to read.

- Add QT support for preprocessing .ui files into .c files.

0.90

Not secure
From Chad Austin:

- Fix the _concat() documentation, and add a test for it.

- Portability fixes for non-GNU versions of lex and yacc.

From Matt Balvin:

- Fix handling of library prefixes when the subdirectory matches
the prefix.

From Timothee Bessett:

- Add an M4 Builder.

From Charles Crain:

- Use '.lnk' as the suffix on the temporary file for linking long
command lines (necessary for the Phar Lap linkloc linker).

- Save non-string Options values as their actual type.

- Save Options string values that contain a single quote correctly.

- Save any Options values that are changed from the default
Environment values, not just ones changed on the command line or in
an Options file.

- Make closing the Options file descriptor exception-safe.

From Steven Knight:

- SCons now enforces (with an error) that construction variables
must have the same form as valid Python identifiers.

- Fix man page bugs: remove duplicate AddPostAction() description;
document no_import_lib; mention that CPPFLAGS does not contain
$_CPPINCFLAGS; mention that F77FLAGS does not contain $_F77INCFLAGS;
mention that LINKFLAGS and SHLINKFLAGS contains neither $_LIBFLAGS
nor $_LIBDIRFLAGS.

- Eliminate a dependency on the distutils.fancy_getopt module by
copying and pasting its wrap_text() function directly.

- Make the Script.Options() subclass match the underlying base class
implementation.

- When reporting a target is up to date, quote the target like make
(backquote-quote) instead of with double quotes.

- Fix handling of ../* targets when using -U, -D or -u.

From Steve Leblanc:

- Don't update the .sconsign files when run with -n.

From Gary Oberbrunner:

- Add support for the Intel C Compiler (icl.exe).

From Anthony Roach

- Fix Import('*').

From David Snopek

- Fix use of SConf in paths with white space in them.

- Add CheckFunc and CheckType functionality to SConf.

- Fix use of SConf with Builders that return a list of nodes.

From David Snopek and Christoph Wiedemann

- Fix use of the SConf subsystem with SConscriptChdir().

From Greg Spencer

- Check for the existence of MS Visual Studio on disk before using it,
to avoid getting fooled by leftover junk in the registry.

- Add support for MSVC++ .NET.

- Add support for MS Visual Studio project files (DSP, DSW,
SLN and VCPROJ files).

From Christoph Wiedemann

- SConf now works correctly when the -n and -q options are used.

Page 11 of 14

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.