diff --git a/scons-0.97.tar.bz2 b/scons-0.97.tar.bz2 deleted file mode 100644 index 4be6982..0000000 --- a/scons-0.97.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:be8be647f6bfe28a12092be953a596fe715f40db24c7fa0d7346d0901a815f8b -size 342469 diff --git a/scons-0.97-fix-install.patch b/scons-0.98.2-fix-install.patch similarity index 100% rename from scons-0.97-fix-install.patch rename to scons-0.98.2-fix-install.patch diff --git a/scons-0.97-noenv.patch b/scons-0.98.2-noenv.patch similarity index 100% rename from scons-0.97-noenv.patch rename to scons-0.98.2-noenv.patch diff --git a/scons-0.98.2.tar.bz2 b/scons-0.98.2.tar.bz2 new file mode 100644 index 0000000..40be84d --- /dev/null +++ b/scons-0.98.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa08d28aff689b66ef03fae1a29a8a73484bc9a2b6e64fa84e4eab38830aafa +size 426156 diff --git a/scons-user.html b/scons-user.html index 3afd2ac..82d8f10 100644 --- a/scons-user.html +++ b/scons-user.html @@ -1,13 +1,13 @@ - + SCons User Guide 0.97SCons User Guide 0.98.2

SCons User Guide 0.97SCons User Guide 0.98.2

Steven Knight

Copyright © 2004, 2005, 2006, 2007 Steven Knight

SCons User's Guide Copyright (c) 2004, 2005, 2006, 2007 Steven Knight +> + SCons User's Guide Copyright (c) 2004, 2005, 2006, 2007 Steven Knight

version 0.97

Preface
1. SConsSCons Principles
2. A Caveat About This Guide's Completeness
3. Acknowledgements
4. Contact
Building and Installing SCons1. Building and Installing SCons
1.1. Installing Python
1.2. Installing SConsInstalling SCons From Pre-Built Packages
1.2.1. Installing SConsInstalling SCons on Red Hat (and Other RPM-based) Linux Systems
1.2.2. Installing SConsInstalling SCons on Debian Linux Systems
1.2.3. Installing SConsInstalling SCons on Windows Systems
1.3. Building and Installing SConsBuilding and Installing SCons on Any System
1.3.1. Building and Installing Multiple Versions of SConsBuilding and Installing Multiple Versions of SCons Side-by-Side
1.3.2. Installing SConsInstalling SCons in Other Locations
1.3.3. Building and Installing SConsBuilding and Installing SCons Without Administrative Privileges
2. Simple Builds
2.1. Building Simple C / C++ Programs
2.2. Building Object Files
2.3. Simple Java Builds
2.4. Cleaning Up After a Build
2.5. The SConstruct File
2.5.1. SConstruct Files Are Python Scripts
2.5.2. SConsSCons Functions Are Order-Independent
2.6. Making the SConsMaking the SCons Output Less Verbose
3. Less Simple Things to Do With Builds
3.1. Specifying the Name of the Target (Output) File
3.2. Compiling Multiple Source Files
3.3. Making a list of files with Glob()
3.4. Specifying Single Files Vs. Lists of Files
3.5. Making Lists of Files Easier to Read
3.6. Keyword Arguments
3.7. Compiling Multiple Programs
3.8. Sharing Source Files Between Multiple Programs
4. Building and Linking with Libraries
4.1. Building Libraries
Building Static Libraries Explicitly: the StaticLibrary4.1.1. Building Libraries From Source Code or Object Files
4.1.2. Building Static Libraries Explicitly: the StaticLibrary Builder
Building Shared (DLL) Libraries: the SharedLibrary4.1.3. Building Shared (DLL) Libraries: the SharedLibrary Builder
4.2. Linking with Libraries
Finding Libraries: the $LIBPATH4.3. Finding Libraries: the $LIBPATH Construction Variable
5. Node Objects
5.1. Builder Methods Return Lists of Target Nodes
5.2. Explicitly Creating File and Directory Nodes
5.3. Printing Node File Names
5.4. Using a Node's File Name as a String
6. Dependencies
Deciding When a Source File Has Changed: the SourceSignatures6.1. Deciding When an Input File Has Changed: the Decider Function
MD5 Source File Signatures6.1.1. Using MD5 Signatures to Decide if a File Has Changed
Source File Time Stamps6.1.2. Using Time Stamps to Decide If a File Has Changed
6.1.3. Deciding If a File Has Changed Using Both MD Signatures and Time Stamps
6.1.4. Writing Your Own Custom Decider Function
6.1.5. Mixing Different Ways of Deciding If a File Has Changed
Deciding When a Target File Has Changed: the TargetSignatures Function6.2. Older Functions for Deciding When an Input File Has Changed
Build Signatures6.2.1. The SourceSignatures Function
File Contents6.2.2. The TargetSignatures Function
Implicit Dependencies: The $CPPPATH6.3. Implicit Dependencies: The $CPPPATH Construction Variable
6.4. Caching Implicit Dependencies
6.4.1. The --implicit-deps-changed Option
6.4.2. The --implicit-deps-unchanged Option
Ignoring Dependencies: the Ignore Method6.5. Explicit Dependencies: the Depends Function
Explicit Dependencies: the Depends Method6.6. Ignoring Dependencies: the Ignore Function
The AlwaysBuild Method6.7. The AlwaysBuild Function
7. Construction Environments
7.1. Multiple Construction Environments
7.2. Copying Construction Environments
7.3. Fetching Values From a Construction Environment
7.4. Expanding Values From a Construction Environment
7.5. Modifying a Construction Environment
7.5.1. Replacing Values in a Construction Environment
7.5.2. Appending to the End of Values in a Construction Environment
7.5.3. Appending to the Beginning of Values in a Construction Environment
8. Controlling the External Environment Used to Execute Build Commands
Propagating PATH8.1. Propagating PATH From the External Environment
9. Controlling a Build From the Command Line
Not Having to Specify Command-Line Options Each Time: the SCONSFLAGS9.1. Not Having to Specify Command-Line Options Each Time: the SCONSFLAGS Environment Variable
9.2. Getting at Command-Line Targets
9.3. Controlling the Default Targets
9.3.1. Getting at the List of Default Targets
9.4. Getting at the List of Build Targets, Regardless of Origin
Command-Line variable=value9.5. Command-Line variable=value Build Options
9.6. Controlling Command-Line Build Options
9.7. Providing Help for Command-Line Build Options
9.8. Reading Build Options From a File
9.9. Canned Build Options
True/False Values: the BoolOption9.9.1. True/False Values: the BoolOption Build Option
Single Value From a List: the EnumOption9.9.2. Single Value From a List: the EnumOption Build Option
Multiple Values From a List: the ListOption9.9.3. Multiple Values From a List: the ListOption Build Option
Path Names: the PathOption9.9.4. Path Names: the PathOption Build Option
Enabled/Disabled Path Names: the PackageOption9.9.5. Enabled/Disabled Path Names: the PackageOption Build Option
9.10. Adding Multiple Command-Line Build Options at Once
Providing Build Help: the Help10. Providing Build Help: the Help Function
Installing Files in Other Directories: the Install11. Installing Files in Other Directories: the Install Builder
11.1. Installing Multiple Files in a Directory
11.2. Installing a File Under a Different Name
11.3. Installing Multiple Files Under Different Names
12. Platform-Independent File System Manipulation
Copying Files or Directories: The Copy12.1. Copying Files or Directories: The Copy Factory
Deleting Files or Directories: The Delete12.2. Deleting Files or Directories: The Delete Factory
Moving (Renaming) Files or Directories: The Move12.3. Moving (Renaming) Files or Directories: The Move Factory
Updating the Modification Time of a File: The Touch12.4. Updating the Modification Time of a File: The Touch Factory
Creating a Directory: The Mkdir12.5. Creating a Directory: The Mkdir Factory
Changing File or Directory Permissions: The Chmod12.6. Changing File or Directory Permissions: The Chmod Factory
Executing an action immediately: the Execute12.7. Executing an action immediately: the Execute Function
13. Preventing Removal of Targets
Preventing target removal during build: the Precious13.1. Preventing target removal during build: the Precious Function
Preventing target removal during clean: the NoClean13.2. Preventing target removal during clean: the NoClean Function
Removing additional files during clean: the Clean13.3. Removing additional files during clean: the Clean Function
14. Hierarchical Builds
14.1. SConscript Files
14.2. Path Names Are Relative to the SConscript Directory
14.3. Top-Level Path Names in Subsidiary SConscript Files
14.4. Absolute Path Names
14.5. Sharing Environments (and Other Variables) Between SConscript Files
14.5.1. Exporting Variables
14.5.2. Importing Variables
14.5.3. Returning Values From an SConscript File
15. Separating Source and Build Directories
Specifying a Build Directory as Part of an 15.1. Specifying a Variant Directory Tree as Part of an SConscript Call
Why SCons Duplicates Source Files in a Build Directory15.2. Why SCons Duplicates Source Files in a Variant Directory Tree
Telling SCons to Not Duplicate Source Files in the Build Directory15.3. Telling SCons to Not Duplicate Source Files in the Variant Directory Tree
The BuildDir15.4. The VariantDir Function
Using BuildDir15.5. Using VariantDir With an SConscript File
15.6. Using Glob() with VariantDir
16. Variant Builds
17. Writing Your Own Builders
17.1. Writing Builders That Execute External Commands
17.2. Attaching a Builder to a Construction Environment
Letting SCons17.3. Letting SCons Handle The File Suffixes
17.4. Builders That Execute Python Functions
17.5. Builders That Create Actions Using a Generator
17.6. Builders That Modify the Target or Source Lists Using an Emitter
Not Writing a Builder: the Command18. Not Writing a Builder: the Command Builder
19. Pseudo-Builders: the AddMethod function
20. Writing Scanners
20.1. A Simple Scanner Example
21. Building From Code Repositories
The Repository21.1. The Repository Method
21.2. Finding source files in repositories
21.3. Finding #include files in repositories
21.3.1. Limitations on #include files in repositories
21.4. Finding the SConstruct file in repositories
21.5. Finding derived files in repositories
21.6. Guaranteeing local copies of files
Multi-Platform Configuration (Autoconf22. Multi-Platform Configuration (Autoconf Functionality)
22.1. Configure Contexts
22.2. Checking for the Existence of Header Files
22.3. Checking for the Availability of a Function
22.4. Checking for the Availability of a Library
22.5. Checking for the Availability of a typedef
22.6. Adding Your Own Custom Checks
22.7. Not Configuring When Cleaning Targets
23. Caching Built Files
23.1. Specifying the Shared Cache Directory
23.2. Keeping Build Output Consistent
23.3. Not Using the Shared Cache for Specific Files
23.4. Disabling the Shared Cache
23.5. Populating a Shared Cache With Already-Built Files
23.6. Minimizing Cache Contention: the --random Option
24. Alias Targets
25. Java Builds
Building Java Class Files: the Java25.1. Building Java Class Files: the Java Builder
How SCons25.2. How SCons Handles Java Dependencies
25.3. Building Java Archive (.jar) Files: the Jar) Files: the Jar Builder
Building C Header and Stub Files: the JavaH25.4. Building C Header and Stub Files: the JavaH Builder
Building RMI Stub and Skeleton Class Files: the RMIC25.5. Building RMI Stub and Skeleton Class Files: the RMIC Builder
26. Troubleshooting
26.1. Why is That Target Being Rebuilt? the --debug=explain Option
What's in That Construction Environment? the Dump26.2. What's in That Construction Environment? the Dump Method
What Dependencies Does SCons26.3. What Dependencies Does SCons Know About? the --tree Option
How is SCons26.4. How is SCons Constructing the Command Lines It Executes? the --debug=presub Option
Where is SCons26.5. Where is SCons Searching for Libraries? the --debug=findlibs Option
Where is SCons26.6. Where is SCons Blowing Up? the --debug=stacktrace Option
How is SCons26.7. How is SCons Making Its Decisions? the --taskmastertrace Option
A. Construction Variables
B. Builders
C. Tools
D. Handling Common Tasks
List of Examples
D-1. Wildcard globbing to create a list of filenames
D-2. Filename extension substitution
D-3. Appending a path prefix to a list of filenames
D-4. Substituting a path prefix with another one
D-5. Filtering a filename list to exclude/retain only a specific set +of extensions
D-6. The "backtick function": run a shell command and capture the +output

Preface

Thank you for taking the time to read about SCons + Thank you for taking the time to read about SCons. - SConsSCons is a next-generation software construction tool, or make tool--that is, a software utility @@ -1372,25 +1457,29 @@ CLASS="APPLICATION"

The most distinctive thing about SCons + The most distinctive thing about SCons is that its configuration files are - actually scripts, - written in the PythonPython programming language. This is in contrast to most alternative build tools, which typically invent a new language to configure the build. - SConsSCons still has a learning curve, of course, because you have to know what functions to call to set up your build properly, @@ -1399,15 +1488,19 @@ CLASS="APPLICATION"

Paradoxically, +> + Paradoxically, using Python as the configuration file format - makes SConsSCons - easier for non-programmers to learn than the cryptic languages of other build tools, @@ -1423,37 +1516,39 @@ CLASS="EMPHASIS"


SCons1. SCons Principles

There are a few overriding principles - we try to live up to in designing and implementing SCons + There are a few overriding principles + we try to live up to in designing and implementing SCons:

Correctness

First and foremost, - by default, SCons + First and foremost, + by default, SCons guarantees a correct build even if it means sacrificing performance a little. We strive to guarantee the build is correct @@ -1467,20 +1562,21 @@ CLASS="APPLICATION" >Performance

Given that the build is correct, - we try to make SCons + Given that the build is correct, + we try to make SCons build software as quickly as possible. In particular, wherever we may have needed to slow - down the default SConsSCons behavior to guarantee a correct build, - we also try to make it easy to speed up SConsSCons through optimization options that let you trade off guaranteed correctness in all end cases for @@ -1492,9 +1588,10 @@ CLASS="APPLICATION" >Convenience

SCons + SCons tries to do as much for you out of the box as reasonable, including detecting the right tools on your system and using them correctly to build the software. @@ -1504,9 +1601,10 @@ CLASS="APPLICATION" >

In a nutshell, we try hard to make SCons + In a nutshell, we try hard to make SCons just "do the right thing" and build software correctly, with a minimum of hassles. @@ -1514,25 +1612,26 @@ CLASS="APPLICATION"


A Caveat About This Guide's Completeness2. A Caveat About This Guide's Completeness

One word of warning as you read through this Guide: +> + One word of warning as you read through this Guide: Like too much Open Source software out there, - the SConsSCons documentation isn't always kept up-to-date with the available features. In other words, - there's a lot that SConsSCons can do that isn't yet covered in this User's Guide. (Come to think of it, @@ -1540,17 +1639,18 @@ CLASS="APPLICATION"

Although this User's Guide isn't as complete as we'd like it to be, +> + Although this User's Guide isn't as complete as we'd like it to be, our development process does emphasize - making sure that the SConsSCons man page is kept up-to-date with new features. So if you're trying to figure out how to do something - that SConsSCons supports but can't find enough (or any) information here, it would be worth your while to look @@ -1565,17 +1665,18 @@ CLASS="APPLICATION"


Acknowledgements3. Acknowledgements

SCons + SCons would not exist without a lot of help from a lot of people, many of whom may not even be aware @@ -1585,14 +1686,15 @@ CLASS="APPLICATION"

First and foremost, - SCons + First and foremost, + SCons owes a tremendous debt to Bob Sidebotham, - the original author of the classic Perl-based ConsCons tool which Bob first released to the world back around 1996. Bob's work on Cons classic provided the underlying architecture @@ -1606,10 +1708,11 @@ CLASS="APPLICATION"

Greg Wilson was instrumental in getting - SCons + Greg Wilson was instrumental in getting + SCons started as a real project when he initiated the Software Carpentry design competition in February 2000. @@ -1620,14 +1723,15 @@ CLASS="APPLICATION"

The entire SCons + The entire SCons team have been absolutely wonderful to work with, - and SConsSCons would be nowhere near as useful a tool without the energy, enthusiasm and time people have contributed over the past few years. @@ -1638,9 +1742,9 @@ CLASS="APPLICATION" and catching problems before they get in the code base. Of particular technical note: Anthony's outstanding and innovative work on the tasking engine - has given SConsSCons a vastly superior parallel build model; Charles has been the master of the crucial Node infrastructure; Christoph's work on the Configure infrastructure @@ -1650,30 +1754,32 @@ CLASS="APPLICATION"

Special thanks to David Snopek for contributing +> + Special thanks to David Snopek for contributing his underlying "Autoscons" code that formed the basis of Christoph's work with the Configure functionality. David was extremely generous in making - this code available to SConsSCons, given that he initially released it under the GPL - and SConsSCons is released under a less-restrictive MIT-style license.

Thanks to Peter Miller - for his splendid change management system, Aegis + Thanks to Peter Miller + for his splendid change management system, Aegis, - which has provided the SConsSCons project with a robust development methodology from day one, and which showed me how you could @@ -1683,59 +1789,64 @@ CLASS="APPLICATION"

And last, thanks to Guido van Rossum +> + And last, thanks to Guido van Rossum for his elegant scripting language, - which is the basis not only for the SConsSCons implementation, but for the interface itself.


Contact4. Contact

The best way to contact people involved with SCons, +> + The best way to contact people involved with SCons, including the author, is through the SCons mailing lists.

If you want to ask general questions about how to use SCons + If you want to ask general questions about how to use SCons send email to users@scons.tigris.org.

If you want to contact the SCons + If you want to contact the SCons development community directly, send email to dev@scons.tigris.org.

If you want to receive announcements about SCons + If you want to receive announcements about SCons, join the low-volume announce@scons.tigris.org mailing list. @@ -1743,61 +1854,63 @@ CLASS="LITERAL" >


Building and Installing SConsChapter 1. Building and Installing SCons

This chapter will take you through the basic steps - of installing SCons + This chapter will take you through the basic steps + of installing SCons on your system, - and building SConsSCons if you don't have a pre-built package available (or simply prefer the flexibility of building it yourself). Before that, however, this chapter will also describe the basic steps involved in installing Python on your system, in case that is necessary. - Fortunately, both SConsSCons and Python are very easy to install on almost any system, and Python already comes installed on many systems.


Installing Python1.1. Installing Python

Because SCons + Because SCons is written in Python, you must obviously have Python installed on your system - to use SConsSCons Before you try to install Python, you should check to see if Python is already available on your system by typing python at your system's command-line prompt. @@ -1805,78 +1918,63 @@ CLASS="USERINPUT" on a UNIX or Linux system that has Python installed:

       $ 
       $ python
        Python 2.2.2 (#1, Feb 24 2003, 19:13:11)
        [GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-4)] on linux2
        Type "help", "copyright", "credits" or "license" for more information.
        >>> ^D
     

And on a Windows system with Python installed: +> + And on a Windows system with Python installed:

       C:\>
       C:\>python
        Python 2.2.2 (#34, Apr 9 2002, 19:34:33) [MSC 32 bit (Intel)] on win32
        Type "help", "copyright", "credits" or "license" for more information.
        >>> ^Z
     

The >>> + The >>> is the input prompt for the Python interpreter. The ^D and ^Z represent the CTRL-D and CTRL-Z characters that you will need to type to get out of the interpreter - before proceeding to installing SConsSCons.

If Python is not installed on your system, +> + If Python is not installed on your system, you will see an error message stating something like "command not found" (on UNIX or Linux) @@ -1884,14 +1982,15 @@ CLASS="APPLICATION" as an internal or external command, operable progam or batch file" (on Windows). In that case, you need to install Python - before you can install SConsSCons.

The standard location for information +> + The standard location for information about downloading and installing Python is


Installing SCons1.2. Installing SCons From Pre-Built Packages

SCons + SCons comes pre-packaged for installation on a number of systems, including Linux and Windows systems. You do not need to read this entire section, @@ -1926,33 +2026,34 @@ CLASS="APPLICATION"


Installing SCons1.2.1. Installing SCons on Red Hat (and Other RPM-based) Linux Systems

SCons + SCons comes in RPM (Red Hat Package Manager) format, pre-built and ready to install on Red Hat Linux, Fedora Core, or any other Linux distribution that uses RPM. Your distribution may - already have an SConsSCons RPM built specifically for it; many do, including SuSe, Mandrake and Fedora. - You can check for the availability of an SConsSCons RPM on your distribution's download servers, or by consulting an RPM search site like @@ -1969,58 +2070,52 @@ TARGET="_top"

If your Linux distribution does not already have - a specific SCons + If your Linux distribution does not already have + a specific SCons RPM file, you can download and install from the - generic RPM provided by the SConsSCons project. This will install the SCons script(s) in /usr/bin, and the SCons library modules in /usr/lib/scons.

To install from the command line, simply download the +> + To install from the command line, simply download the appropriate .rpm file, and then run:

        # 
        # rpm -Uvh scons-0.96-1.noarch.rpm
       

Or, you can use a graphical RPM package manager - like gnorpm + Or, you can use a graphical RPM package manager + like gnorpm. See your package manager application's documention for specific instructions about @@ -2029,71 +2124,65 @@ CLASS="APPLICATION"


Installing SCons1.2.2. Installing SCons on Debian Linux Systems

Debian Linux systems use a different package management - format that also makes it very easy to install SCons + Debian Linux systems use a different package management + format that also makes it very easy to install SCons.

If your system is connected to the Internet, +> + If your system is connected to the Internet, you can install the latest official Debian package by running:

        # 
        # apt-get install scons
       

Installing SCons1.2.3. Installing SCons on Windows Systems

SCons + SCons provides a Windows installer that makes installation extremely easy. Download the scons-0.95.win32.exe - file from the SConsSCons download page at SConsSCons on your system. @@ -2115,40 +2204,42 @@ CLASS="APPLICATION" >


Building and Installing SCons1.3. Building and Installing SCons on Any System

If a pre-built SCons + If a pre-built SCons package is not available for your system, - then you can still easily build and install SConsSCons using the native Python distutils package.

The first step is to download either the +> + The first step is to download either the scons-0.97.tar.gzscons-0.98.2.tar.gz or scons-0.97.zipscons-0.98.2.zip, which are available from the SCons download page at

Unpack the archive you downloaded, - using a utility like tar + Unpack the archive you downloaded, + using a utility like tar on Linux or UNIX, - or WinZipWinZip on Windows. This will create a directory called scons-0.97scons-0.98.2, usually in your local directory. Then change your working directory to that directory - and install SConsSCons by executing the following commands:

      # cd scons-0.97
      # cd scons-0.98.2
       # python setup.py install
     

This will build SCons + This will build SCons, - install the sconsscons script in the default system scripts directory (/usr/local/bin or C:\Python2.2\Scripts), - and will install the SConsSCons build engine in an appropriate stand-alone library directory (/usr/local/lib/scons or C:\Python2.2\scons). Because these are system directories, you may need root (on Linux or UNIX) or Administrator (on Windows) - privileges to install SConsSCons like this.


Building and Installing Multiple Versions of SCons1.3.1. Building and Installing Multiple Versions of SCons Side-by-Side

The SCons + The SCons setup.py script has some extensions that support - easy installation of multiple versions of SConsSCons in side-by-side locations. This makes it easier to download and - experiment with different versions of SConsSCons before moving your official build process to a new version, for example.

To install SCons + To install SCons in a version-specific location, - add the --version-lib--version-lib option when you call setup.py:

        # 
        # python setup.py install --version-lib
       

This will install the SCons + This will install the SCons build engine in the /usr/lib/scons-0.97/usr/lib/scons-0.98.2 or C:\Python2.2\scons-0.97C:\Python2.2\scons-0.98.2 directory, for example.

If you use the --version-lib + If you use the --version-lib option - the first time you install SConsSCons, you do not need to specify it each time you install a new version. - The SConsSCons setup.py script will detect the version-specific directory name(s) and assume you want to install all versions in version-specific directories. You can override that assumption in the future - by explicitly specifying the --standalone-lib--standalone-lib option.


Installing SCons1.3.2. Installing SCons in Other Locations

You can install SCons + You can install SCons in locations other than - the default by specifying the --prefix=--prefix= option:

        # 
        # python setup.py install --prefix=/opt/scons
       

This would - install the scons + This would + install the scons script in /opt/scons/bin and the build engine in /opt/scons/lib/scons,

Note that you can specify both the --prefix= + Note that you can specify both the --prefix= - and the --version-lib--version-lib options at the same type, in which case setup.py will install the build engine in a version-specific directory relative to the specified prefix. - Adding --version-lib--version-lib to the above example would install the build engine in /opt/scons/lib/scons-0.97/opt/scons/lib/scons-0.98.2.


Building and Installing SCons1.3.3. Building and Installing SCons Without Administrative Privileges

If you don't have the right privileges to install SCons + If you don't have the right privileges to install SCons in a system location, simply use the --prefix= option to install it in a location of your choosing. For example, - to install SConsSCons in appropriate locations relative to the user's $HOME directory, - the sconsscons script in $HOME/bin and the build engine in $HOME/lib/scons, simply type:

        $ 
        $ python setup.py install --prefix=$HOME
       

You may, of course, specify any other location you prefer, - and may use the --version-lib + You may, of course, specify any other location you prefer, + and may use the --version-lib option if you would like to install version-specific directories relative to the specified prefix. @@ -2514,131 +2580,112 @@ CLASS="OPTION" >


Simple Builds

Chapter 2. Simple Builds

In this chapter, +> + In this chapter, you will see several examples of - very simple build configurations using SConsSCons, which will demonstrate how easy - it is to use SConsSCons to build programs from several different programming languages on different types of systems.


Building Simple C / C++ Programs2.1. Building Simple C / C++ Programs

Here's the famous "Hello, World!" program in C: +> + Here's the famous "Hello, World!" program in C:

      int
+CLASS="programlisting"
+>
      int
       main()
       {
           printf("Hello, world!\n");
       }
    

And here's how to build it using SCons + And here's how to build it using SCons. Enter the following into a file named SConstruct:

      Program('hello.c')
+CLASS="programlisting"
+>
      Program('hello.c')
    

This minimal configuration file gives - SCons + This minimal configuration file gives + SCons two pieces of information: what you want to build (an executable program), and the input file from which you want it built (the hello.c file). ProgramProgram is a builder_method, - a Python call that tells SConsSCons that you want to build an executable program.

That's it. Now run the scons + That's it. Now run the scons command to build the program. On a POSIX-compliant system like Linux or UNIX, you'll see something like:

      % 
      % scons
       scons: Reading SConscript files ...
@@ -2648,24 +2695,16 @@ CLASS="USERINPUT"
       cc -o hello hello.o
       scons: done building targets.
    

On a Windows system with the Microsoft Visual C++ compiler, +> + On a Windows system with the Microsoft Visual C++ compiler, you'll see something like:

      C:\>
      C:\>scons
       scons: Reading SConscript files ...
@@ -2675,53 +2714,53 @@ CLASS="USERINPUT"
       link /nologo /OUT:hello.exe hello.obj
       scons: done building targets.
    

First, notice that you only need +> + First, notice that you only need to specify the name of the source file, - and that SConsSCons correctly deduces the names of the object and executable files to be built from the base of the source file name.

Second, notice that the same input + Second, notice that the same input SConstruct file, without any changes, generates the correct output file names on both systems: hello.o and hello on POSIX systems, hello.obj and hello.exe on Windows systems. - This is a simple example of how SConsSCons makes it extremely easy to write portable software builds.

(Note that we won't provide duplicate side-by-side +> + (Note that we won't provide duplicate side-by-side POSIX and Windows output for all of the examples in this guide; just keep in mind that, unless otherwise specified, any of the examples should work equally well on both types of systems.) @@ -2729,74 +2768,61 @@ CLASS="APPLICATION"


Building Object Files2.2. Building Object Files

The Program + The Program builder method is only one of - many builder methods that SConsSCons provides to build different types of files. Another is the ObjectObject builder method, - which tells SConsSCons to build an object file from the specified source file:

      Object('hello.c')
+CLASS="programlisting"
+>
      Object('hello.c')
    

Now when you run the scons + Now when you run the scons command to build the program, it will build just the hello.o object file on a POSIX system:

      % 
      % scons
       scons: Reading SConscript files ...
@@ -2805,27 +2831,19 @@ CLASS="USERINPUT"
       cc -o hello.o -c hello.c
       scons: done building targets.
    

And just the + And just the hello.obj object file on a Windows system (with the Microsoft Visual C++ compiler):

      C:\>
      C:\>scons
       scons: Reading SConscript files ...
@@ -2834,41 +2852,39 @@ CLASS="USERINPUT"
       cl /nologo /c hello.c /Fohello.obj
       scons: done building targets.
    

Simple Java Builds2.3. Simple Java Builds

SCons + SCons also makes building with Java extremely easy. Unlike the ProgramProgram and ObjectObject builder methods, however, the JavaJava builder method requires that you specify @@ -2876,51 +2892,37 @@ CLASS="FUNCTION" you want the class files placed, followed by the source directory in which the .java files live:

     Java('classes', 'src')
+CLASS="programlisting"
+>
     Java('classes', 'src')
    

If the + If the src directory contains a single hello.java file, - then the output from running the sconsscons command would look something like this (on a POSIX system):

      % 
      % scons
       scons: Reading SConscript files ...
@@ -2929,73 +2931,64 @@ CLASS="USERINPUT"
       javac -d classes -sourcepath src src/hello.java
       scons: done building targets.
    

We'll cover Java builds in more detail, +> + We'll cover Java builds in more detail, including building Java archive (.jar) and other types of file, in the chapter called Java BuildsChapter 25.


Cleaning Up After a Build2.4. Cleaning Up After a Build

When using SCons + When using SCons, it is unnecessary to add special commands or target names to clean up after a build. Instead, you simply use the -c or --clean - option when you invoke SConsSCons, - and SConsSCons removes the appropriate built files. So if we build our example above and then invoke scons -c afterwards, the output on POSIX looks like:

      % 
      % scons
       scons: Reading SConscript files ...
@@ -3005,7 +2998,7 @@ CLASS="USERINPUT"
       cc -o hello hello.o
       scons: done building targets.
       % scons -c
       scons: Reading SConscript files ...
@@ -3015,23 +3008,15 @@ CLASS="USERINPUT"
       Removed hello
       scons: done cleaning targets.
    

And the output on Windows looks like: +> + And the output on Windows looks like:

      C:\>
      C:\>scons
       scons: Reading SConscript files ...
@@ -3041,7 +3026,7 @@ CLASS="USERINPUT"
       link /nologo /OUT:hello.exe hello.obj
       scons: done building targets.
       C:\>scons -c
       scons: Reading SConscript files ...
@@ -3051,123 +3036,116 @@ CLASS="USERINPUT"
       Removed hello.exe
       scons: done cleaning targets.
    

Notice that SCons + Notice that SCons changes its output to tell you that it is Cleaning targets ... and done cleaning targets.


The 2.5. The SConstruct File

If you're used to build systems like Make + If you're used to build systems like Make you've already figured out that the SConstruct file - is the SConsSCons equivalent of a Makefile. That is, the SConstruct file is the input file - that SConsSCons reads to control the build.


2.5.1. SConstruct Files Are Python Scripts

There is, however, an important difference between +> + There is, however, an important difference between an SConstruct file and a Makefile: the SConstruct file is actually a Python script. If you're not already familiar with Python, don't worry. This User's Guide will introduce you step-by-step to the relatively small amount of Python you'll - need to know to be able to use SConsSCons effectively. And Python is very easy to learn.

One aspect of using Python as the +> + One aspect of using Python as the scripting language is that you can put comments in your SConstruct file using Python's commenting convention; that is, everything between a '#' and the end of the line will be ignored:

        # Arrange to build the "hello" program.
+CLASS="programlisting"
+>
        # Arrange to build the "hello" program.
         Program('hello.c')    # "hello.c" is the source file.
      

You'll see throughout the remainder of this Guide +> + You'll see throughout the remainder of this Guide that being able to use the power of a real scripting language can greatly simplify the solutions @@ -3176,42 +3154,46 @@ CLASS="PROGRAMLISTING"


SCons2.5.2. SCons Functions Are Order-Independent

One important way in which the + One important way in which the SConstruct file is not exactly like a normal Python script, and is more like a Makefile, is that the order in which - the SConsSCons functions are called in the SConstruct file - does not - affect the order in which SConsSCons actually builds the programs and object files you want it to build. In other words, when you call the ProgramProgram builder (or any other builder method), - you're not telling SConsSCons to build the program at the instant the builder method is called. - Instead, you're telling SConsSCons to build the program that you want, for example, a program built from a file named hello.c, - and it's up to SConsSCons to build that program (and any other files) whenever it's necessary. (We'll learn more about how - SConsSCons decides when building or rebuilding a file is necessary in the chapter called DependenciesChapter 6, below.)

SCons + SCons reflects this distinction between - calling a builder method like Program Program> - and actually building the program by printing the status messages that indicate when it's "just reading" the SConstruct file, and when it's actually building the target files. - This is to make it clear when SConsSCons is executing the Python statements that make up the SConstruct file, - and when SConsSCons is actually executing the commands or other actions to build the necessary files.

Let's clarify this with an example. +> + Let's clarify this with an example. Python has a print statement that prints a string of characters to the screen. If we put print statements around - our calls to the ProgramProgram builder method:

       print "Calling Program('hello.c')"
+CLASS="programlisting"
+>
       print "Calling Program('hello.c')"
        Program('hello.c')
        print "Calling Program('goodbye.c')"
        Program('goodbye.c')
        print "Finished calling Program()"
      

Then when we execute SCons + Then when we execute SCons, we see the output from the print statements in between the messages about reading the SConscript files, indicating that that is when the Python statements are being executed:

       % 
       % scons
        scons: Reading SConscript files ...
@@ -3376,27 +3350,25 @@ CLASS="USERINPUT"
        cc -o hello hello.o
        scons: done building targets.
      

Notice also that SCons built the goodbye + Notice also that SCons built the goodbye program first, even though the "reading SConscript" output shows that we called Program('hello.c') first in the SConstruct file. @@ -3404,35 +3376,30 @@ CLASS="FILENAME" >


Making the SCons2.6. Making the SCons Output Less Verbose

You've already seen how SCons + You've already seen how SCons prints some messages about what it's doing, surrounding the actual commands used to build the software:

      C:\>
      C:\>scons
       scons: Reading SConscript files ...
@@ -3442,18 +3409,16 @@ CLASS="USERINPUT"
       link /nologo /OUT:hello.exe hello.obj
       scons: done building targets.
    

These messages emphasize the - order in which SCons + These messages emphasize the + order in which SCons does its work: all of the configuration files (generically referred to as SConscript files) are read and executed first, @@ -3464,43 +3429,36 @@ CLASS="FILENAME"

One drawback, of course, is that these messages clutter the output. +> + One drawback, of course, is that these messages clutter the output. Fortunately, they're easily disabled by using the -Q option when invoking SCons option when invoking SCons:

      C:\>
      C:\>scons -Q
       cl /nologo /c hello.c /Fohello.obj
       link /nologo /OUT:hello.exe hello.obj
    

Because we want this User's Guide to focus - on what SCons + Because we want this User's Guide to focus + on what SCons is actually doing, - we're going use the -Q option to remove these messages from the @@ -3510,180 +3468,151 @@ CLASS="LITERAL" >


Less Simple Things to Do With Builds

Chapter 3. Less Simple Things to Do With Builds

In this chapter, +> + In this chapter, you will see several examples of - very simple build configurations using SConsSCons, which will demonstrate how easy - it is to use SConsSCons to build programs from several different programming languages on different types of systems.


Specifying the Name of the Target (Output) File3.1. Specifying the Name of the Target (Output) File

You've seen that when you call the Program + You've seen that when you call the Program builder method, it builds the resulting program with the same base name as the source file. That is, the following call to build an executable program from the hello.c source file - will build an executable program named hellohello on POSIX systems, and an executable program named hello.exe on Windows systems:

       Program('hello.c')
+CLASS="programlisting"
+>
       Program('hello.c')
     

If you want to build a program with +> + If you want to build a program with a different name than the base of the source file name, you simply put the target file name to the left of the source file name:

       Program('new_hello', 'hello.c')
+CLASS="programlisting"
+>
       Program('new_hello', 'hello.c')
     

(SCons + (SCons requires the target file name first, followed by the source file name, so that the order mimics that of an assignment statement in most programming languages, including Python: "program = source files".)

Now SCons + Now SCons will build an executable program - named new_hellonew_hello when run on a POSIX system:

       % 
       % scons -Q
        cc -o hello.o -c hello.c
        cc -o new_hello hello.o
     

And SCons + And SCons will build an executable program - named new_hello.exenew_hello.exe when run on a Windows system:

       C:\>
       C:\>scons -Q
        cl /nologo /c hello.c /Fohello.obj
        link /nologo /OUT:new_hello.exe hello.obj
     

Compiling Multiple Source Files3.2. Compiling Multiple Source Files

You've just seen how to configure SCons + You've just seen how to configure SCons to compile a program from a single source file. It's more common, of course, @@ -3695,64 +3624,48 @@ CLASS="APPLICATION" like so:

       Program(['main.c', 'file1.c', 'file2.c'])
+CLASS="programlisting"
+>
       Program(['prog.c', 'file1.c', 'file2.c'])
     

A build of the above example would look like: +> + A build of the above example would look like:

       % 
       % scons -Q
        cc -o file1.o -c file1.c
        cc -o file2.o -c file2.c
-       cc -o main.o -c main.c
-       cc -o main main.o file1.o file2.o
+       cc -o prog.o -c prog.c
+       cc -o prog prog.o file1.o file2.o
     

Notice that SCons + Notice that SCons deduces the output program name from the first source file specified in the list--that is, because the first source file was prog.c, - SConsSCons will name the resulting program prog (or prog.exe on a Windows system). If you want to specify a different program name, @@ -3760,9 +3673,9 @@ CLASS="FILENAME" you slide the list of source files over to the right to make room for the output program file name. - (SConsSCons puts the output file name to the left of the source file names so that the order mimics that of an @@ -3770,138 +3683,124 @@ CLASS="APPLICATION" This makes our example:

       Program('program', ['main.c', 'file1.c', 'file2.c'])
+CLASS="programlisting"
+>
       Program('program', ['prog.c', 'file1.c', 'file2.c'])
     

On Linux, a build of this example would look like: +> + On Linux, a build of this example would look like:

       % 
       % scons -Q
        cc -o file1.o -c file1.c
        cc -o file2.o -c file2.c
-       cc -o main.o -c main.c
-       cc -o program main.o file1.o file2.o
+       cc -o prog.o -c prog.c
+       cc -o program prog.o file1.o file2.o
     

Or on Windows: +> + Or on Windows:

       C:\>
       C:\>scons -Q
        cl /nologo /c file1.c /Fofile1.obj
        cl /nologo /c file2.c /Fofile2.obj
-       cl /nologo /c main.c /Fomain.obj
-       link /nologo /OUT:program.exe main.obj file1.obj file2.obj
+       cl /nologo /c prog.c /Foprog.obj
+       link /nologo /OUT:program.exe prog.obj file1.obj file2.obj
     

Specifying Single Files Vs. Lists of Files3.3. Making a list of files with Glob()

We've now shown you two ways to specify +> + You can also use the Glob() function to find all files matching a + certain template, using standard the shell pattern matching + characters *, ?, and [abc] to match any of a, b, or c. [!abc] is + also supported, to match any character except + a, b, or c. This makes many multi-source-file builds quite easy: + +


       Program('program', Glob('*.c'))
+    

+ The SCons man page has more details on using Glob() with Variant + dirs and Repositories and returning strings rather than Nodes. + +


3.4. Specifying Single Files Vs. Lists of Files

+ We've now shown you two ways to specify the source for a program, one with a list of files:

       Program('hello', ['file1.c', 'file2.c'])
+CLASS="programlisting"
+>
       Program('hello', ['file1.c', 'file2.c'])
     

And one with a single file: +> + And one with a single file:

       Program('hello', 'hello.c')
+CLASS="programlisting"
+>
       Program('hello', 'hello.c')
     

You could actually put a single file name in a list, too, +> + You could actually put a single file name in a list, too, which you might prefer just for the sake of consistency:

       Program('hello', ['hello.c'])
+CLASS="programlisting"
+>
       Program('hello', ['hello.c'])
     

SCons + SCons functions will accept a single file name in either form. - In fact, internally, SConsSCons treats all input as lists of files, but allows you to omit the square brackets to cut down a little on the typing @@ -3909,11 +3808,11 @@ CLASS="APPLICATION"

Important

Although SCons + Although SCons functions are forgiving about whether or not you use a string vs. a list for a single file name, Python itself is more strict about treating lists and strings differently. - So where SConsSCons allows either a string or list:

       # The following two calls both work correctly:
+CLASS="programlisting"
+>
       # The following two calls both work correctly:
        Program('program1', 'program1.c')
        Program('program2', ['program2.c'])
     

Trying to do "Python things" that mix strings and +> + Trying to do "Python things" that mix strings and lists will cause errors or lead to incorrect results:

       common_sources = ['file1.c', 'file2.c']
+CLASS="programlisting"
+>
       common_sources = ['file1.c', 'file2.c']
 
        # THE FOLLOWING IS INCORRECT AND GENERATES A PYTHON ERROR
        # BECAUSE IT TRIES TO ADD A STRING TO A LIST:
@@ -3985,141 +3871,125 @@ CLASS="PROGRAMLISTING"
 >

Making Lists of Files Easier to Read3.5. Making Lists of Files Easier to Read

One drawback to the use of a Python list +> + One drawback to the use of a Python list for source files is that each file name must be enclosed in quotes (either single quotes or double quotes). This can get cumbersome and difficult to read when the list of file names is long. - Fortunately, SConsSCons and Python provide a number of ways to make sure that the SConstruct file stays easy to read.

To make long lists of file names - easier to deal with, SCons + To make long lists of file names + easier to deal with, SCons provides a - SplitSplit function that takes a quoted list of file names, with the names separated by spaces or other white-space characters, and turns it into a list of separate file names. - Using the SplitSplit function turns the previous example into:

       Program('program', Split('main.c file1.c file2.c'))
+CLASS="programlisting"
+>
       Program('program', Split('main.c file1.c file2.c'))
     

(If you're already familiar with Python, +> + (If you're already familiar with Python, you'll have realized that this is similar to the - split()split() method - in the Python standard stringstring module. - Unlike the string.split()string.split() method, - however, the SplitSplit function does not require a string as input and will wrap up a single non-string object in a list, or return its argument untouched if it's already a list. This comes in handy as a way to make sure - arbitrary values can be passed to SConsSCons functions without having to check the type of the variable by hand.)

Putting the call to the Split + Putting the call to the Split function - inside the ProgramProgram call can also be a little unwieldy. A more readable alternative is to - assign the output from the SplitSplit call to a variable name, and then use the variable when calling the - ProgramProgram function:

       list = Split('main.c file1.c file2.c')
+CLASS="programlisting"
+>
       list = Split('main.c file1.c file2.c')
        Program('program', list)
     

Lastly, the Split + Lastly, the Split function doesn't care how much white space separates the file names in the quoted string. @@ -4128,24 +3998,16 @@ CLASS="FUNCTION" which often makes for easier editing:

       list = Split("""main.c
+CLASS="programlisting"
+>
       list = Split("""main.c
                        file1.c
                        file2.c""")
        Program('program', list)
     

(Note in this example that we used +> + (Note in this example that we used the Python "triple-quote" syntax, which allows a string to contain multiple lines. @@ -4155,133 +4017,111 @@ CLASS="PROGRAMLISTING"


Keyword Arguments3.6. Keyword Arguments

SCons + SCons also allows you to identify the output file and input source files using Python keyword arguments. The output file is known as the - target, and the source file(s) are known (logically enough) as the - source. The Python syntax for this is:

       list = Split('main.c file1.c file2.c')
+CLASS="programlisting"
+>
       list = Split('main.c file1.c file2.c')
        Program(target = 'program', source = list)
     

Because the keywords explicitly identify +> + Because the keywords explicitly identify what each argument is, you can actually reverse the order if you prefer:

       list = Split('main.c file1.c file2.c')
+CLASS="programlisting"
+>
       list = Split('main.c file1.c file2.c')
        Program(source = list, target = 'program')
     

Whether or not you choose to use keyword arguments +> + Whether or not you choose to use keyword arguments to identify the target and source files, and the order in which you specify them when using keywords, are purely personal choices; - SConsSCons functions the same regardless.


Compiling Multiple Programs3.7. Compiling Multiple Programs

In order to compile multiple programs +> + In order to compile multiple programs within the same SConstruct file, - simply call the ProgramProgram method multiple times, once for each program you need to build:

       Program('foo.c')
+CLASS="programlisting"
+>
       Program('foo.c')
        Program('bar', ['bar1.c', 'bar2.c'])
     

SCons + SCons would then build the programs as follows:

       % 
       % scons -Q
        cc -o bar1.o -c bar1.c
@@ -4290,22 +4130,20 @@ CLASS="USERINPUT"
        cc -o foo.o -c foo.c
        cc -o foo foo.o
     

Notice that SCons + Notice that SCons does not necessarily build the programs in the same order in which you specify them in the SConstruct file. - SConsSCons does, however, recognize that the individual object files must be built before the resulting program can be built. @@ -4315,59 +4153,51 @@ CLASS="APPLICATION"


Sharing Source Files Between Multiple Programs3.8. Sharing Source Files Between Multiple Programs

It's common to re-use code by sharing source files +> + It's common to re-use code by sharing source files between multiple programs. One way to do this is to create a library from the common source files, which can then be linked into resulting programs. (Creating libraries is discussed in the chapter called Building and Linking with LibrariesChapter 4, below.)

A more straightforward, but perhaps less convenient, +> + A more straightforward, but perhaps less convenient, way to share source files between multiple programs is simply to include the common files in the lists of source files for each program:

       Program(Split('foo.c common1.c common2.c'))
+CLASS="programlisting"
+>
       Program(Split('foo.c common1.c common2.c'))
        Program('bar', Split('bar1.c bar2.c common1.c common2.c'))
     

SCons + SCons recognizes that the object files for the common1.c and common2.c source files each only need to be built once, @@ -4375,16 +4205,10 @@ CLASS="FILENAME" each linked in to both of the resulting executable programs:

       % 
       % scons -Q
        cc -o bar1.o -c bar1.c
@@ -4395,11 +4219,9 @@ CLASS="USERINPUT"
        cc -o foo.o -c foo.c
        cc -o foo foo.o common1.o common2.o
     

If two or more programs +> + If two or more programs share a lot of common source files, repeating the common files in the list for each program can be a maintenance problem when you need to change the @@ -4408,112 +4230,92 @@ CLASS="USERINPUT" to hold the common file names, and concatenating it with other lists using the Python + operator:

       common = ['common1.c', 'common2.c']
+CLASS="programlisting"
+>
       common = ['common1.c', 'common2.c']
        foo_files = ['foo.c'] + common
        bar_files = ['bar1.c', 'bar2.c'] + common
        Program('foo', foo_files)
        Program('bar', bar_files)
     

This is functionally equivalent to the previous example. +> + This is functionally equivalent to the previous example.


Building and Linking with Libraries

Chapter 4. Building and Linking with Libraries

It's often useful to organize large software projects +> + It's often useful to organize large software projects by collecting parts of the software into one or more libraries. - SConsSCons makes it easy to create libraries and to use them in the programs.


Building Libraries4.1. Building Libraries

You build your own libraries by specifying Library + You build your own libraries by specifying Library instead of ProgramProgram:

      Library('foo', ['f1.c', 'f2.c', 'f3.c'])
+CLASS="programlisting"
+>
      Library('foo', ['f1.c', 'f2.c', 'f3.c'])
     

SCons + SCons uses the appropriate library prefix and suffix for your system. So on POSIX or Linux systems, the above example would build as follows - (although ranlibranlib may not be called on all systems):

      % 
      % scons -Q
       cc -o f1.o -c f1.c
@@ -4522,24 +4324,16 @@ CLASS="USERINPUT"
       ar rc libfoo.a f1.o f2.o f3.o
       ranlib libfoo.a
     

On a Windows system, +> + On a Windows system, a build of the above example would look like:

      C:\>
      C:\>scons -Q
       cl /nologo /c f1.c /Fof1.obj
@@ -4547,136 +4341,175 @@ CLASS="USERINPUT"
       cl /nologo /c f3.c /Fof3.obj
       lib /nologo /OUT:foo.lib f1.obj f2.obj f3.obj
     

The rules for the target name of the library +> + The rules for the target name of the library are similar to those for programs: if you don't explicitly specify a target library name, - SConsSCons will deduce one from the name of the first source file specified, - and SConsSCons will add an appropriate file prefix and suffix if you leave them off.


Building Static Libraries Explicitly: the StaticLibrary4.1.1. Building Libraries From Source Code or Object Files

+ The previous example shows building a library from a + list of source files. + You can, however, also give the Library call + object files, + and it will correctly realize + In fact, you can arbitrarily mix source code files + and object files in the source list: + +


        Library('foo', ['f1.c', 'f2.o', 'f3.c', 'f4.o'])
+      

+ And SCons realizes that only the source code files + must be compiled into object files + before creating the final library: + +


        % scons -Q
+        cc -o f1.o -c f1.c
+        cc -o f3.o -c f3.c
+        ar rc libfoo.a f1.o f2.o f3.o f4.o
+        ranlib libfoo.a
+      

+ Of course, in this example, the object files + must already exist for the build to succeed. + See Chapter 5, below, + for information about how you can + build object files explicitly + and include the built files in a library. + +


4.1.2. Building Static Libraries Explicitly: the StaticLibrary Builder

The Library + The Library function builds a traditional static library. If you want to be explicit about the type of library being built, you can use the synonym StaticLibraryStaticLibrary function - instead of LibraryLibrary:

        StaticLibrary('foo', ['f1.c', 'f2.c', 'f3.c'])
+CLASS="programlisting"
+>
        StaticLibrary('foo', ['f1.c', 'f2.c', 'f3.c'])
       

There is no functional difference between the +> + There is no functional difference between the StaticLibraryStaticLibrary and Library and Library functions.


Building Shared (DLL) Libraries: the SharedLibrary4.1.3. Building Shared (DLL) Libraries: the SharedLibrary Builder

If you want to build a shared library (on POSIX systems) +> + If you want to build a shared library (on POSIX systems) or a DLL file (on Windows systems), you use the SharedLibrarySharedLibrary function:

        SharedLibrary('foo', ['f1.c', 'f2.c', 'f3.c'])
+CLASS="programlisting"
+>
        SharedLibrary('foo', ['f1.c', 'f2.c', 'f3.c'])
       

The output on POSIX: +> + The output on POSIX:

        % 
        % scons -Q
         cc -o f1.os -c f1.c
@@ -4684,23 +4517,15 @@ CLASS="USERINPUT"
         cc -o f3.os -c f3.c
         cc -o libfoo.so -shared f1.os f2.os f3.os
       

And the output on Windows: +> + And the output on Windows:

        C:\>
        C:\>scons -Q
         cl /nologo /c f1.c /Fof1.obj
@@ -4709,22 +4534,20 @@ CLASS="USERINPUT"
         link /nologo /dll /out:foo.dll /implib:foo.lib f1.obj f2.obj f3.obj
         RegServerFunc(target, source, env)
       

Notice again that SCons + Notice again that SCons takes care of building the output file correctly, adding the -shared option for a POSIX compilation, and the /dll option on Windows. @@ -4732,83 +4555,73 @@ CLASS="LITERAL" >


Linking with Libraries4.2. Linking with Libraries

Usually, you build a library +> + Usually, you build a library because you want to link it with one or more programs. You link libraries with a program by specifying the libraries in the $LIBS$LIBS construction variable, and by specifying the directory in which the library will be found in the $LIBPATH$LIBPATH construction variable: + +

      Library('foo', ['f1.c', 'f2.c', 'f3.c'])
+CLASS="programlisting"
+>
      Library('foo', ['f1.c', 'f2.c', 'f3.c'])
       Program('prog.c', LIBS=['foo', 'bar'], LIBPATH='.')
     

Notice, of course, that you don't need to specify a library +> + Notice, of course, that you don't need to specify a library prefix (like lib) or suffix (like .a or .lib). - SConsSCons uses the correct prefix or suffix for the current system.

On a POSIX or Linux system, +> + On a POSIX or Linux system, a build of the above example would look like:

      % 
      % scons -Q
       cc -o f1.o -c f1.c
@@ -4819,24 +4632,16 @@ CLASS="USERINPUT"
       cc -o prog.o -c prog.c
       cc -o prog prog.o -L. -lfoo -lbar
     

On a Windows system, +> + On a Windows system, a build of the above example would look like:

      C:\>
      C:\>scons -Q
       cl /nologo /c f1.c /Fof1.obj
@@ -4846,60 +4651,43 @@ CLASS="USERINPUT"
       cl /nologo /c prog.c /Foprog.obj
       link /nologo /OUT:prog.exe /LIBPATH:. foo.lib bar.lib prog.obj
     

As usual, notice that SCons + As usual, notice that SCons has taken care of constructing the correct command lines to link with the specified library on each system.

Note also that, +> + Note also that, if you only have a single library to link with, you can specify the library name in single string, instead of a Python list, so that:

      Program('prog.c', LIBS='foo', LIBPATH='.')
+CLASS="programlisting"
+>
      Program('prog.c', LIBS='foo', LIBPATH='.')
     

is equivalent to: +> + is equivalent to:

      Program('prog.c', LIBS=['foo'], LIBPATH='.')
+CLASS="programlisting"
+>
      Program('prog.c', LIBS=['foo'], LIBPATH='.')
     

This is similar to the way that SCons + This is similar to the way that SCons handles either a string or a list to specify a single source file. @@ -4907,156 +4695,118 @@ CLASS="APPLICATION"


Finding Libraries: the $LIBPATH4.3. Finding Libraries: the $LIBPATH Construction Variable

By default, the linker will only look in +> + By default, the linker will only look in certain system-defined directories for libraries. - SConsSCons knows how to look for libraries in directories that you specify with the $LIBPATH$LIBPATH construction variable. - $LIBPATH$LIBPATH consists of a list of directory names, like so:

      Program('prog.c', LIBS = 'm',
+CLASS="programlisting"
+>
      Program('prog.c', LIBS = 'm',
                         LIBPATH = ['/usr/lib', '/usr/local/lib'])
     

Using a Python list is preferred because it's portable +> + Using a Python list is preferred because it's portable across systems. Alternatively, you could put all of the directory names in a single string, separated by the system-specific path separator character: a colon on POSIX systems:

      LIBPATH = '/usr/lib:/usr/local/lib'
+CLASS="programlisting"
+>
      LIBPATH = '/usr/lib:/usr/local/lib'
     

or a semi-colon on Windows systems: +> + or a semi-colon on Windows systems:

      LIBPATH = 'C:\\lib;D:\\lib'
+CLASS="programlisting"
+>
      LIBPATH = 'C:\\lib;D:\\lib'
     

(Note that Python requires that the backslash +> + (Note that Python requires that the backslash separators in a Windows path name be escaped within strings.)

When the linker is executed, - SCons + When the linker is executed, + SCons will create appropriate flags so that the linker will look for - libraries in the same directories as SConsSCons. So on a POSIX or Linux system, a build of the above example would look like:

      % 
      % scons -Q
       cc -o prog.o -c prog.c
       cc -o prog prog.o -L/usr/lib -L/usr/local/lib -lm
     

On a Windows system, +> + On a Windows system, a build of the above example would look like:

      C:\>
      C:\>scons -Q
       cl /nologo /c prog.c /Foprog.obj
       link /nologo /OUT:prog.exe /LIBPATH:\usr\lib /LIBPATH:\usr\local\lib m.lib prog.obj
     

Note again that SCons + Note again that SCons has taken care of the system-specific details of creating the right command-line options. @@ -5065,294 +4815,254 @@ CLASS="APPLICATION" >


Node Objects

Chapter 5. Node Objects

Internally, SCons + Internally, SCons represents all of the files and directories it knows about as Nodes. These internal objects - (not object files) can be used in a variety of ways to make your SConscript files portable and easy to read.


Builder Methods Return Lists of Target Nodes5.1. Builder Methods Return Lists of Target Nodes

All builder methods return a list of +> + All builder methods return a list of Node objects that identify the target file or files that will be built. These returned Nodes can be passed as source files to other builder methods,

For example, suppose that we want to build +> + For example, suppose that we want to build the two object files that make up a program with different options. This would mean calling the ObjectObject builder once for each object file, specifying the desired options:

    Object('hello.c', CCFLAGS='-DHELLO')
+CLASS="programlisting"
+>
    Object('hello.c', CCFLAGS='-DHELLO')
     Object('goodbye.c', CCFLAGS='-DGOODBYE')
     

One way to combine these object files +> + One way to combine these object files into the resulting program would be to call the ProgramProgram builder with the names of the object files listed as sources:

    Object('hello.c', CCFLAGS='-DHELLO')
+CLASS="programlisting"
+>
    Object('hello.c', CCFLAGS='-DHELLO')
     Object('goodbye.c', CCFLAGS='-DGOODBYE')
     Program(['hello.o', 'goodbye.o'])
     

The problem with listing the names as strings +> + The problem with listing the names as strings is that our SConstruct file is no longer portable across operating systems. It won't, for example, work on Windows because the object files there would be named hello.obj and goodbye.obj, not hello.o and goodbye.o.

A better solution is to assign the lists of targets - returned by the calls to the Object + A better solution is to assign the lists of targets + returned by the calls to the Object builder to variables, which we can then concatenate in our - call to the ProgramProgram builder:

      hello_list = Object('hello.c', CCFLAGS='-DHELLO')
+CLASS="programlisting"
+>
      hello_list = Object('hello.c', CCFLAGS='-DHELLO')
       goodbye_list = Object('goodbye.c', CCFLAGS='-DGOODBYE')
       Program(hello_list + goodbye_list)
     

This makes our + This makes our SConstruct file portable again, the build output on Linux looking like:

       % 
       % scons -Q
        cc -o goodbye.o -c -DGOODBYE goodbye.c
        cc -o hello.o -c -DHELLO hello.c
        cc -o hello hello.o goodbye.o
     

And on Windows: +> + And on Windows:

       C:\>
       C:\>scons -Q
        cl -DGOODBYE /c goodbye.c /Fogoodbye.obj
        cl -DHELLO /c hello.c /Fohello.obj
        link /nologo /OUT:hello.exe hello.obj goodbye.obj
     

We'll see examples of using the list of nodes +> + We'll see examples of using the list of nodes returned by builder methods throughout the rest of this guide.


Explicitly Creating File and Directory Nodes5.2. Explicitly Creating File and Directory Nodes

It's worth mentioning here that - SCons + It's worth mentioning here that + SCons maintains a clear distinction between Nodes that represent files and Nodes that represent directories. - SCons supports File and DirSCons supports File and Dir functions that, repectively, return a file or directory Node:

      hello_c = File('hello.c')
+CLASS="programlisting"
+>
      hello_c = File('hello.c')
       Program(hello_c)
 
       classes = Dir('classes')
       Java(classes, 'src')
     

Normally, you don't need to call - File or Dir + Normally, you don't need to call + File or Dir directly, because calling a builder method automatically treats strings as the names of files or directories, and translates them into the Node objects for you. - The File and DirFile and Dir functions can come in handy in situations where you need to explicitly - instruct SConsSCons about the type of Node being passed to a builder or other function, or unambiguously refer to a specific @@ -5361,38 +5071,31 @@ CLASS="APPLICATION"

There are also times when you may need to +> + There are also times when you may need to refer to an entry in a file system without knowing in advance whether it's a file or a directory. For those situations, - SCons also supports an EntrySCons also supports an Entry function, which returns a Node that can represent either a file or a directory.

    xyzzy = Entry('xyzzy')
+CLASS="programlisting"
+>
    xyzzy = Entry('xyzzy')
     

The returned + The returned xyzzy Node will be turned into a file or directory Node @@ -5403,35 +5106,30 @@ CLASS="LITERAL"


Printing 5.3. Printing Node File Names

One of the most common things you can do +> + One of the most common things you can do with a Node is use it to print the file name that the node represents. For example, the following SConstruct file:

      hello_c = File('hello.c')
+CLASS="programlisting"
+>
      hello_c = File('hello.c')
       Program(hello_c)
 
       classes = Dir('classes')
@@ -5442,23 +5140,15 @@ CLASS="PROGRAMLISTING"
       print "The object file is:", object_list[0]
       print "The program file is:", program_list[0]
     

Would print the following file names on a POSIX system: +> + Would print the following file names on a POSIX system:

      % 
      % scons -Q
       The object file is: hello.o
@@ -5466,23 +5156,15 @@ CLASS="USERINPUT"
       cc -o hello.o -c hello.c
       cc -o hello hello.o
     

And the following file names on a Windows system: +> + And the following file names on a Windows system:

      C:\>
      C:\>scons -Q
       The object file is: hello.obj
@@ -5490,204 +5172,173 @@ CLASS="USERINPUT"
       cl /nologo /c hello.c /Fohello.obj
       link /nologo /OUT:hello.exe hello.obj
     

Using a 5.4. Using a Node's File Name as a String

Printing a + Printing a Node's name as described in the previous section works because the string representation of a Node is the name of the file. If you want to do something other than print the name of the file, you can fetch it by using the builtin Python - strstr function. For example, if you want to use the Python - os.path.existsos.path.exists to figure out whether a file exists while the SConstruct file is being read and executed, you can fetch the string as follows:

      import os.path
+CLASS="programlisting"
+>
      import os.path
       program_list = Program('hello.c')
       program_name = str(program_list[0])
       if not os.path.exists(program_name):
           print program_name, "does not exist!"
     

Which executes as follows on a POSIX system: +> + Which executes as follows on a POSIX system:

      % 
      % scons -Q
       hello does not exist!
       cc -o hello.o -c hello.c
       cc -o hello hello.o
     

Dependencies

Chapter 6. Dependencies

So far we've seen how SCons + So far we've seen how SCons handles one-time builds. - But the real point of a build tool like SConsSCons is to rebuild only the necessary things when source files change--or, put another way, - SCons should SCons should not waste time rebuilding things that have already been built. - You can see this at work simply be re-invoking SConsSCons - after building our simple hellohello example:

     % 
     % scons -Q
      cc -o hello.o -c hello.c
      cc -o hello hello.o
      % scons -Q
      scons: `.' is up to date.
   

The second time it is executed, - SCons realizes that the hello + The second time it is executed, + SCons realizes that the hello program is up-to-date with respect to the current hello.c source file, and avoids rebuilding it. You can see this more clearly by naming - the hellohello program explicitly on the command line:

     % 
     % scons -Q hello
      cc -o hello.o -c hello.c
      cc -o hello hello.o
      % scons -Q hello
      scons: `hello' is up to date.
   

Note that SCons + Note that SCons reports "...is up to date" only for target files named explicitly on the command line, @@ -5695,853 +5346,1410 @@ CLASS="LITERAL"


Deciding When a Source File Has Changed: the SourceSignatures6.1. Deciding When an Input File Has Changed: the Decider Function

The other side of avoiding unnecessary rebuilds +> + Another aspect of avoiding unnecessary rebuilds is the fundamental build tool behavior - of rebuilding - things when a source file changes, + things when an input file changes, so that the built software is up to date. - SCons keeps track of this through a - SCons keeps track of this through an + MD5 signature for each source file, - and allows you to configure - whether you want to use the source - file contents or the modification time (timestamp) - as the signature. +>, or checksum, of the contents of each file, + although you can easily configure + SCons to use the + modification times (or time stamps) + instead. + You can even specify your own Python function + for deciding if an input file has changed.


MD5 Source File Signatures6.1.1. Using MD5 Signatures to Decide if a File Has Changed

By default, - SCons keeps track of whether a source file has changed - based on the file's contents, - not the modification time. +> + By default, + SCons keeps track of whether a file has changed + based on an MD5 checksum of the file's contents, + not the file's modification time. This means that you may be surprised by the - default SConsSCons behavior if you are used to the - MakeMake convention of forcing a rebuild by updating the file's modification time - (using the touchtouch command, for example):

         % 
         % scons -Q hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          % touch hello.c
          % scons -Q hello
          scons: `hello' is up to date.
       

Even though the file's modification time has changed, - SCons + Even though the file's modification time has changed, + SCons realizes that the contents of the hello.c file have file have not changed, - and therefore that the hellohello program need not be rebuilt. This avoids unnecessary rebuilds when, for example, someone rewrites the contents of a file without making a change. But if the contents of the file really do change, - then SConsSCons detects the change and rebuilds the program as required:

         % 
         % scons -Q hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          % edit hello.c
              [CHANGE THE CONTENTS OF hello.c]
          % scons -Q hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
       

Note that you can, if you wish, +> + Note that you can, if you wish, specify this default behavior (MD5 signatures) explicitly - using the SourceSignaturesDecider function as follows:

        Program('hello.c')
-        SourceSignatures('MD5')
+CLASS="programlisting"
+>
        Program('hello.c')
+        Decider('MD5')
       

+ You can also use the string 'content' + as a synonym for 'MD5' + when calling the Decider function. + +


6.1.1.1. Ramifications of Using MD5 Signatures

+ Using MD5 Signatures to decide if an input file has changed + has one surprising benefit: + if a source file has been changed + in such a way that the contents of the + rebuilt target file(s) + will be exactly the same as the last time + the file was built, + then any "downstream" target files + that depend on the rebuilt-but-not-changed target + file actually need not be rebuilt. + +

+ So if, for example, + a user were to only change a comment in a hello.c file, + then the rebuilt hello.o file + would be exactly the same as the one previously built + (assuming the compiler doesn't put any build-specific + information in the object file). + SCons would then realize that it would not + need to rebuild the hello program as follows: + +


           % scons -Q hello
+           cc -o hello.o -c hello.c
+           cc -o hello hello.o
+           % edit hello.c
+             [CHANGE A COMMENT IN hello.c]
+           % scons -Q hello
+           cc -o hello.o -c hello.c
+           scons: `hello' is up to date.
+        

+ In essence, SCons + "short-circuits" any dependent builds + when it realizes that a target file + has been rebuilt to exactly the same file as the last build. + This does take some extra processing time + to read the contents of the target (hello.o) file, + but often saves time when the rebuild that was avoided + would have been time-consuming and expensive. + +


Source File Time Stamps6.1.2. Using Time Stamps to Decide If a File Has Changed

If you prefer, you can - configure SCons + If you prefer, you can + configure SCons to use the modification time - of source files, - not the file contents, - when deciding if something needs to be rebuilt. - To do this, call the SourceSignaturesSCons gives you two ways to use time stamps + to decide if an input file has changed + since the last time a target has been built. + +

+ The most familiar way to use time stamps + is the way Make does: + that is, have SCons decide + and target must be rebuilt if + if a source file's modification time is + newer + than the target file. + To do this, call the Decider function as follows:

        Program('hello.c')
-        SourceSignatures('timestamp')
+CLASS="programlisting"
+>
        Program('hello.c')
+        Decider('timestamp-newer')
       

This makes SCons act like Make + This makes SCons act like Make when a file's modification time is updated - (using the touchtouch command, for example):

         % 
         % scons -Q hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          % touch hello.c
          % scons -Q hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
       

Deciding When a Target File Has Changed: the TargetSignatures Function

As you've just seen, - SCons uses signatures to decide whether a - target file is up to date or must be rebuilt. - When a target file depends on another target file, - SCons allows you to configure separately - how the signatures of "intermediate" target files - are used when deciding if a dependent target file - must be rebuilt. - -


Build Signatures

Modifying a source file - will cause not only its direct target file to be rebuilt, - but also the target file(s) - that depend on that direct target file. - In our example, - changing the contents of the hello.c file causes - the hello.o file to be rebuilt, - which in turn causes the - hello program to be rebuilt: - -

         % scons -Q hello
+      And, in fact, because this behavior is the same
+      as the behavior of Make,
+      you can also use the string 'make'
-         cc -o hello.o -c hello.c
-         cc -o hello hello.o
-         % edit hello.c'timestamp-newer'
-             [CHANGE THE CONTENTS OF hello.c]
-         % scons -Q hello
-         cc -o hello.o -c hello.c
-         cc -o hello hello.o
-      

What's not obvious, though, - is that SCons internally handles the signature of - the target file(s) - (hello.o in the above example) - differently from the signature of the source file - (hello.c). - By default, - SCons tracks whether a target file must be rebuilt - by using a build signature - that consists of the combined - signatures of all the files - that go into making the target file. - This is efficient because - the accumulated signatures - actually give SCons all of the - information it needs - to decide if the target file is out of date. - -

If you wish, you can - specify this default behavior - (build signatures) explicitly - using the TargetSignaturesDecider function:

        Program('hello.c')
-        TargetSignatures('build')
+CLASS="programlisting"
+>
        Program('hello.c')
+        Decider('make')
       

File Contents

Sometimes a source file can be changed - in such a way that the contents of the - rebuilt target file(s) - will be exactly the same as the last time - the file was built. - If so, then any other target files - that depend on such a built-but-not-changed target - file actually need not be rebuilt. - You can make SCons + One drawback to using times stamps exactly like Make - realize that it does not need to rebuild - a dependent target file in this situation - using the TargetSignatures function as follows: + is that if an input file's modification time suddenly + becomes older than a target file, + the target file will not be rebuilt. + This can happen if an old copy of a source file is restored + from a backup archive, for example. + The contents of the restored file will likely be different + than they were the last time a dependent target was built, + but the target won't be rebuilt + because the modification time of the source file + is not newer than the target.

        Program('hello.c')
-        TargetSignatures('content')
-      

So if, for example, - a user were to only change a comment in a C file, - then the rebuilt hello.o file - would be exactly the same as the one previously built - (assuming the compiler doesn't put any build-specific - information in the object file). +> + Because SCons actually stores information + about the source files' time stamps whenever a target is built, + it can handle this situation by checking for + an exact match of the source file time stamp, + instead of just whether or not the source file + is newer than the target file. + To do this, specify the argument SCons would then realize that it would not - need to rebuild the hello program as follows: +CLASS="literal" +>'timestamp-match' + when calling the Decider function:

         % 
        Program('hello.c')
+        Decider('timestamp-match')
+      

+ When configured this way, + SCons will rebuild a target whenever + a source file's modification time has changed. + So if we use the touch -t + option to change the modification time of + hello.c to an old date (January 1, 1989), + SCons will still rebuild the target file: + +


         % scons -Q hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          % edit hello.ctouch -t 198901010000 hello.c
-           [CHANGE A COMMENT IN hello.c]
          % scons -Q hello
          cc -o hello.o -c hello.c
          scons: `hello' is up to date.
       

In essence, SCons has - "short-circuited" any dependent builds - when it realizes that a target file - has been rebuilt to exactly the same file as the last build. - So configured, +> + In general, the only reason to prefer SCons does take some extra processing time - to scan the contents of the target (timestamp-newer + instead of + timestamp-match, + would be if you have some specific reason + to require this Make-like behavior of + not rebuilding a target when an otherwise-modified + source file is older. + +


6.1.3. Deciding If a File Has Changed Using Both MD Signatures and Time Stamps

+ As a performance enhancement, + SCons provides a way to use + MD5 checksums of file contents + but to only read the contents + whenever the file's timestamp has changed. + To do this, call the Decider + function with 'MD5-timestamp' + argument as follows: + +


        Program('hello.c')
+        Decider('MD5-timestamp')
+      

+ So configured, SCons will still behave like + it does when using Decider('MD5'): + +


         % scons -Q hello
+         cc -o hello.o -c hello.c
+         cc -o hello hello.o
+         % touch hello.c
+         % scons -Q hello
+         scons: `hello' is up to date.
+         % edit hello.c
+             [CHANGE THE CONTENTS OF hello.c]
+         % scons -Q hello
+         scons: `hello' is up to date.
+      

+ However, the second call to SCons in the above output, + when the build is up-to-date, + will have been performed by simply looking at the + modification time of the hello.c file, + not by opening it and performing + an MD5 checksum calcuation on its contents. + This can significantly speed up many up-to-date builds. + +

+ The only drawback to using + Decider('MD5-timestamp') + is that SCons will not + rebuild a target file if a source file was modified + within one second of the last time SCons built the file. + While most developers are programming, + this isn't a problem in practice, + since it's unlikely that someone will have built + and then thought quickly enought to make a substantive + change to a source file within one second. + Certain build scripts or + continuous integration tools may, however, + rely on the ability to applying changes to files + automatically and then rebuild as quickly as possible, + in which case use of + Decider('MD5-timestamp') + may not be appropriate. + +


6.1.4. Writing Your Own Custom Decider Function

+ The different string values that we've passed to + the Decider function are essentially used by SCons + to pick one of several specific internal functions + that implement various ways of deciding if a dependency + (usually a source file) + has changed since a target file has been built. + As it turns out, + you can also supply your own function + to decide if a dependency has changed. + +

+ For example, suppose we have an input file + that contains a lot of data, + in some specific regular format, + that is used to rebuild a lot of different target files, + but each target file really only depends on + one particular section of the input file. + We'd like to have each target file depend on + only its section of the input file. + However, since the input file may contain a lot of data, + we only want to open the input file if its timestamp has changed. + This could done with a custom + Decider function that might look something like this: + +


        Program('hello.c')
+        def decide_if_changed(dependency, target, prev_ni):
+            if self.get_timestamp() != prev_ni.timestamp:
+                dep = str(dependency)
+                tgt = str(target)
+                if specific_part_of_file_has_changed(dep, tgt):
+                    return True
+            return False
+        Decider(decide_if_changed)
+      

+ Note that in the function definition, + the dependency + (input file) is the first argument, + and then the target. + Both of these are passed to the functions as + SCons Node objects, + which we convert to strings using the Python + str(). + The third argument, prev_ni, + is an object that holds the + signature or timestamp information + that was recorded about the dependency + the last time the target was built. + +

+ Note that ignoring some of the arguments + in your custom Decider function + is a perfectly normal thing to do, + if they don't impact the way you want to + decide if the dependency file has changed. + +


6.1.5. Mixing Different Ways of Deciding If a File Has Changed

+ The previous examples have all demonstrated calling + the global Decider function + to configure all dependency decisions that SCons makes. + Sometimes, however, you want to be able to configure + different decision-making for different targets. + When that's necessary, you can use the + env.Decider + method to affect only the configuration + decisions for targets built with a + specific construction environment. + +

+ For example, if we arbitrarily want to build + one program using MD5 checkums + and another use file modification times + from the same source + we might configure it this way: + +


        env1 = Environment(CPPPATH = ['.'])
+        env2 = env1.Clone()
+        env2.Decider('timestamp-match')
+        env1.Program('prog-MD5', 'program1.c')
+        env2.Program('prog-timestamp', 'program2.c')
+      

+ If both of the programs include the same + inc.h file, + then updating the modification time of + inc.h + (using the touch command) + will cause only prog-timestamp + to be rebuilt: + +


         % scons -Q
+         cc -o program1.o -c -I. program1.c
+         cc -o prog-MD5 program1.o
+         cc -o program2.o -c -I. program2.c
+         cc -o prog-timestamp program2.o
+         % touch inc.h
+         % scons -Q
+         cc -o program2.o -c -I. program2.c
+         cc -o prog-timestamp program2.o
+      

6.2. Older Functions for Deciding When an Input File Has Changed

+ SCons still supports two functions that used to be the + primary methods for configuring the + decision about whether or not an input file has changed. + Although they're not officially deprecated yet, + their use is discouraged, + mainly because they rely on a somewhat + confusing distinction between how + source files and target files are handled. + These functions are documented here mainly in case you + encounter them in existing SConscript files. + +


6.2.1. The SourceSignatures Function

+ The SourceSignatures function is fairly straightforward, + and supports two different argument values + to configure whether source file changes should be decided + using MD5 signatures: + +


        Program('hello.c')
+        SourceSignatures('MD5')
+      

+ Or using time stamps: + +


        Program('hello.c')
+        SourceSignatures('timestamp')
+      

+ These are roughly equivalent to specifying + Decider('MD5') + or + Decider('timestamp-match'), + respectively, + although it only affects how SCons makes + decisions about dependencies on + source files--that is, + files that are not built from any other files. + +


6.2.2. The TargetSignatures Function

+ The TargetSignatures function + specifies how SCons decides + when a target file has changed + when it is used as a + dependency of (input to) another target--that is, + the TargetSignatures function configures + how the signatures of "intermediate" target files + are used when deciding if a "downstream" target file + must be rebuilt. + [2] + +

+ The TargetSignatures function supports the same + 'MD5' and 'timestamp' + argument values that are supported by the SourceSignatures, + with the same meanings, but applied to target files. + That is, in the example: + +


        Program('hello.c')
+        TargetSignatures('MD5')
+      

+ The MD5 checksum of the hello.o) file, - but this may save time - if the rebuild that was avoided - would have been very time-consuming and expensive. +> target file + will be used to decide if it has changed since the last + time the "downstream" hello target file was built. + And in the example: + +


        Program('hello.c')
+        TargetSignatures('timestamp')
+      

+ The modification time of the hello.o target file + will be used to decide if it has changed since the last + time the "downstream" hello target file was built. + +

+ The TargetSignatures function supports + two additional argument values: + 'source' and 'build'. + The 'source' argument + specifies that decisions involving + whether target files have changed + since a previous build + should use the same behavior + for the decisions configured for source files + (using the SourceSignatures function). + So in the example: + +


        Program('hello.c')
+        TargetSignatures('source')
+        SourceSignatures('timestamp')
+      

+ All files, both targets and sources, + will use modification times + when deciding if an input file + has changed since the last + time a target was built. + +

+ Lastly, the 'build' argument + specifies that SCons should examine + the build status of a target file + and always rebuild a "downstream" target + if the target file was itself rebuilt, + without re-examining the contents or timestamp + of the newly-built target file. + If the target file was not rebuilt during + this scons invocation, + then the target file will be examined + the same way as configured by + the SourceSignature call + to decide if it has changed. + +

+ This mimics the behavior of + build signatures + in earlier versions of SCons. + A build signature re-combined + signatures of all the input files + that went into making the target file, + so that the target file itself + did not need to have its contents read + to compute an MD5 signature. + This can improve performance for some configurations, + but is generally not as effective as using + Decider('MD5-timestamp').


Implicit Dependencies: The $CPPPATH6.3. Implicit Dependencies: The $CPPPATH Construction Variable

Now suppose that our "Hello, World!" program - actually has a + Now suppose that our "Hello, World!" program + actually has an #include line to include the hello.h file in the compilation:

       #include <hello.h>
+CLASS="programlisting"
+>
       #include <hello.h>
        int
        main()
        {
            printf("Hello, %s!\n", string);
        }
     

And, for completeness, the + And, for completeness, the hello.h file looks like this:

       #define string    "world"
+CLASS="programlisting"
+>
       #define string    "world"
       

In this case, we want SCons + In this case, we want SCons to recognize that, if the contents of the hello.h file change, - the hellohello program must be recompiled. To do this, we need to modify the SConstruct file like so:

       Program('hello.c', CPPPATH = '.')
+CLASS="programlisting"
+>
       Program('hello.c', CPPPATH = '.')
       

The $CPPPATH + The $CPPPATH value - tells SConsSCons to look in the current directory ('.') for any files included by C source files (.c or .h files). With this assignment in the SConstruct file:

       % 
       % scons -Q hello
        cc -o hello.o -c -I. hello.c
        cc -o hello hello.o
        % scons -Q hello
        scons: `hello' is up to date.
        % edit hello.h
            [CHANGE THE CONTENTS OF hello.h]
        % scons -Q hello
        cc -o hello.o -c -I. hello.c
        cc -o hello hello.o
     

First, notice that SCons + First, notice that SCons added the -I. argument - from the $CPPPATH$CPPPATH variable so that the compilation would find the hello.h file in the local directory.

Second, realize that SCons knows that the hello + Second, realize that SCons knows that the hello program must be rebuilt because it scans the contents of the hello.c file for the #include lines that indicate another file is being included in the compilation. - SConsSCons records these as - implicit dependencies of the target file, Consequently, when the hello.h file changes, - SConsSCons realizes that the hello.c file includes it, - and rebuilds the resulting hellohello program that depends on both the hello.c and hello.h files.

Like the $LIBPATH + Like the $LIBPATH variable, - the $CPPPATH$CPPPATH variable may be a list of directories, or a string separated by - the system-specific path separate character + the system-specific path separation character (':' on POSIX/Linux, ';' on Windows). - Either way, SConsSCons creates the right command-line options so that the following example:

       Program('hello.c', CPPPATH = ['include', '/home/project/inc'])
+CLASS="programlisting"
+>
       Program('hello.c', CPPPATH = ['include', '/home/project/inc'])
     

Will look like this on POSIX or Linux: +> + Will look like this on POSIX or Linux:

       % 
       % scons -Q hello
        cc -o hello.o -c -Iinclude -I/home/project/inc hello.c
        cc -o hello hello.o
     

And like this on Windows: +> + And like this on Windows:

       C:\>
       C:\>scons -Q hello.exe
        cl /nologo /Iinclude /I\home\project\inc /c hello.c /Fohello.obj
        link /nologo /OUT:hello.exe hello.obj
     

Caching Implicit Dependencies6.4. Caching Implicit Dependencies

Scanning each file for + Scanning each file for #include lines does take some extra processing time. @@ -6549,14 +6757,17 @@ CLASS="LITERAL" the scanning time is usually a very small percentage of the overall time spent on the build. You're most likely to notice the scanning time, - however, when you rebuild all or part of a large system: - SConsSCons will likely take some extra time to "think about" what must be built before it issues the first build command @@ -6567,110 +6778,98 @@ CLASS="APPLICATION"

In practice, having SCons + In practice, having SCons scan files saves time relative to the amount of potential time lost to tracking down subtle problems introduced by incorrect dependencies. Nevertheless, the "waiting time" - while SConsSCons scans files can annoy individual developers waiting for their builds to finish. - Consequently, SConsSCons lets you cache the implicit dependencies that its scanners find, for use by later builds. You can do this by specifying the --implicit-cache option on the command line:

       % 
       % scons -Q --implicit-cache hello
        cc -o hello.o -c hello.c
        cc -o hello hello.o
        % scons -Q hello
        scons: `hello' is up to date.
     

If you don't want to specify + If you don't want to specify --implicit-cache on the command line each time, you can make it the default behavior for your build by setting the implicit_cache option in an SConscript file:

       SetOption('implicit_cache', 1)
+CLASS="programlisting"
+>
       SetOption('implicit_cache', 1)
     

SCons + SCons does not cache implicit dependencies like this by default because the --implicit-cache causes SCons causes SCons to simply use the implicit dependencies stored during the last run, without any checking for whether or not those dependencies are still correct. Specifically, this means --implicit-cache instructs SCons instructs SCons - to not rebuild "correctly" in the following cases: @@ -6681,28 +6880,29 @@ CLASS="EMPHASIS" >

  • When + When --implicit-cache is used, SCons is used, SCons will ignore any changes that may have been made to search paths - (like $CPPPATH or $LIBPATH$CPPPATH or $LIBPATH,). - This can lead to SConsSCons not rebuilding a file if a change to - $CPPPATH$CPPPATH would normally cause a different, same-named file from a different directory to be used. @@ -6710,12 +6910,13 @@ CLASS="ENVAR" >

  • When + When --implicit-cache is used, SCons is used, SCons will not detect if a same-named file has been added to a directory that is earlier in the search path than the directory in which the file was found @@ -6725,22 +6926,23 @@ CLASS="APPLICATION" >


The 6.4.1. The --implicit-deps-changed Option

When using cached implicit dependencies, +> + When using cached implicit dependencies, sometimes you want to "start fresh" - and have SConsSCons re-scan the files for which it previously cached the dependencies. For example, @@ -6750,114 +6952,99 @@ CLASS="APPLICATION" and the previously-cached implicit dependencies will be out of date. You can update them by - running SConsSCons with the --implicit-deps-changed option:

         % 
         % scons -Q --implicit-deps-changed hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          % scons -Q hello
          scons: `hello' is up to date.
       

In this case, SCons + In this case, SCons will re-scan all of the implicit dependencies and cache updated copies of the information.


The 6.4.2. The --implicit-deps-unchanged Option

By default when caching dependencies, - SCons + By default when caching dependencies, + SCons notices when a file has been modified and re-scans the file for any updated implicit dependency information. Sometimes, however, you may want - to force SConsSCons to use the cached implicit dependencies, even if the source files changed. This can speed up a build for example, when you have changed your source files but know that you haven't changed any #include lines. In this case, you can use the --implicit-deps-unchanged option:

         % 
         % scons -Q --implicit-deps-unchanged hello
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          % scons -Q hello
          scons: `hello' is up to date.
       

In this case, - SCons + In this case, + SCons will assume that the cached implicit dependencies are correct and will not bother to re-scan changed files. @@ -6871,408 +7058,338 @@ CLASS="APPLICATION" >


Ignoring Dependencies: the Ignore Method6.5. Explicit Dependencies: the Depends Function

Sometimes it makes sense +> + Sometimes a file depends on another file + that is not detected by an SCons scanner. + For this situation, + SCons allows you to specific explicitly that one file + depends on another file, + and must be rebuilt whenever that file changes. + This is specified using the Depends method: + +


       hello = Program('hello.c')
+       Depends(hello, 'other_file')
+    

       % scons -Q hello
+       cc -c hello.c -o hello.o
+       cc -o hello hello.o
+       % scons -Q hello
+       scons: `hello' is up to date.
+       % edit other_file
+           [CHANGE THE CONTENTS OF other_file]
+       % scons -Q hello
+       cc -c hello.c -o hello.o
+       cc -o hello hello.o
+    

6.6. Ignoring Dependencies: the Ignore Function

+ Sometimes it makes sense to not rebuild a program, even if a dependency file changes. In this case, - you would tell SConsSCons specifically to ignore a dependency as follows:

      hello = Program('hello.c')
+CLASS="programlisting"
+>
      hello = Program('hello.c')
       Ignore(hello, 'hello.h')
     
      % 
      % scons -Q hello
       cc -c -o hello.o hello.c
       cc -o hello hello.o
       % scons -Q hello
       scons: `hello' is up to date.
       % edit hello.h
         [CHANGE THE CONTENTS OF hello.h]
       % scons -Q hello
       scons: `hello' is up to date.
     

Now, the above example is a little contrived, +> + Now, the above example is a little contrived, because it's hard to imagine a real-world situation - where you wouldn't to rebuild hellohello if the hello.h file changed. A more realistic example - might be if the hellohello program is being built in a directory that is shared between multiple systems that have different copies of the stdio.h include file. In that case, - SConsSCons would notice the differences between the different systems' copies of stdio.h - and would rebuild hellohello each time you change systems. You could avoid these rebuilds as follows:

       hello = Program('hello.c')
+CLASS="programlisting"
+>
       hello = Program('hello.c')
        Ignore(hello, '/usr/include/stdio.h')
     

Explicit Dependencies: the Depends Method6.7. The AlwaysBuild Function

On the other hand, - sometimes a file depends on another file - that is not detected by an SCons scanner. - For this situation, - SCons allows you to specific explicitly that one file - depends on another file, - and must be rebuilt whenever that file changes. - This is specified using the Depends method: - -

       hello = Program('hello.c')
-       Depends(hello, 'other_file')
-    
       % scons -Q hello
-       cc -c hello.c -o hello.o
-       cc -o hello hello.o
-       % scons -Q hello
-       scons: `hello' is up to date.
-       % edit other_file
-           [CHANGE THE CONTENTS OF other_file]
-       % scons -Q hello
-       cc -c hello.c -o hello.o
-       cc -o hello hello.o
-    

The AlwaysBuild Method

How SCons + How SCons handles dependencies can also be affected - by the AlwaysBuildAlwaysBuild method. - When a file is passed to the AlwaysBuildAlwaysBuild method, like so:

      hello = Program('hello.c')
+CLASS="programlisting"
+>
      hello = Program('hello.c')
       AlwaysBuild(hello)
     

Then the specified target file (hello + Then the specified target file (hello in our example) will always be considered out-of-date and rebuilt whenever that target file is evaluated while walking the dependency graph:

      % 
      % scons -Q
       cc -o hello.o -c hello.c
       cc -o hello hello.o
       % scons -Q
       cc -o hello hello.o
     

The AlwaysBuild + The AlwaysBuild function has a somewhat misleading name, because it does not actually mean the target file will - be rebuilt every single time SConsSCons is invoked. Instead, it means that the target will, in fact, be rebuilt whenever the target file is encountered while evaluating the targets specified on the command line (and their dependencies). So specifying some other target on the command line, - a target that does not - itself depend on the AlwaysBuildAlwaysBuild target, will still be rebuilt only if it's out-of-date with respect to its dependencies:

      % 
      % scons -Q
       cc -o hello.o -c hello.c
       cc -o hello hello.o
       % scons -Q hello.o
       scons: `hello.o' is up to date.
     

Construction Environments

Chapter 7. Construction Environments

It is rare that all of the software in a large, +> + It is rare that all of the software in a large, complicated system needs to be built the same way. For example, different source files may need different options enabled on the command line, or different executable programs need to be linked with different libraries. - SCons accomodates these different build + SCons accommodates these different build requirements by allowing you to create and configure multiple construction environments that control how the software is built. Technically, a construction environment is an object that has a number of associated construction variables, each with a name and a value. (A construction environment also has an attached set of Builder methods, about which we'll learn more later.)

A + A construction environment is created by the Environment is created by the Environment method:

    env = Environment()
+CLASS="programlisting"
+>
    env = Environment()
   

By default, SCons intializes every +> + By default, SCons initializes every new construction environment with a set of construction variables based on the tools that it finds on your system, @@ -7288,59 +7405,52 @@ CLASS="LITERAL"

When you initialize a construction environment +> + When you initialize a construction environment you can set the values of the environment's construction variables to control how a program is built. For example:

    env = Environment(CC = 'gcc',
+CLASS="programlisting"
+>
    env = Environment(CC = 'gcc',
                       CCFLAGS = '-O2')
 
     env.Program('foo.c')
   

The construction environment in this example +> + The construction environment in this example is still initialized with the same default construction variable values, except that the user has explicitly specified use of the - GNU C compiler gccgcc, and further specifies that the -O2 (optimization level two) flag should be used when compiling the object file. In other words, the explicit initializations of $CC$CC and $CCFLAGS$CCFLAGS override the default values in the newly-created @@ -7348,81 +7458,58 @@ CLASS="ENVAR" So a run from this example would look like:

    % 
    % scons -Q
     gcc -o foo.o -c -O2 foo.c
     gcc -o foo foo.o
  

Multiple 7.1. Multiple Construction Environments

The real advantage of construction environments +> + The real advantage of construction environments is that you can create as many different construction environments as you need, each tailored to a different way to build some piece of software or other file. If, for example, we need to build one program with the -O2 flag and another with the -g (debug) flag, we would do this like so:

      opt = Environment(CCFLAGS = '-O2')
+CLASS="programlisting"
+>
      opt = Environment(CCFLAGS = '-O2')
       dbg = Environment(CCFLAGS = '-g')
 
       opt.Program('foo', 'foo.c')
 
       dbg.Program('bar', 'bar.c')
    
      % 
      % scons -Q
       cc -o bar.o -c -g bar.c
@@ -7430,105 +7517,87 @@ CLASS="USERINPUT"
       cc -o foo.o -c -O2 foo.c
       cc -o foo foo.o
    

We can even use multiple construction environments to build +> + We can even use multiple construction environments to build multiple versions of a single program. If you do this by simply trying to use the ProgramProgram builder with both environments, though, like this:

      opt = Environment(CCFLAGS = '-O2')
+CLASS="programlisting"
+>
      opt = Environment(CCFLAGS = '-O2')
       dbg = Environment(CCFLAGS = '-g')
 
       opt.Program('foo', 'foo.c')
 
       dbg.Program('foo', 'foo.c')
    

Then SCons + Then SCons generates the following error:

      % 
      % scons -Q
       
       scons: *** Two environments with different actions were specified for the same target: foo.o
-      File "/home/my/project/SConstruct", line 6, in ?
+      File "/home/my/project/SConstruct", line 6, in <module>
    

This is because the two Program + This is because the two Program calls have - each implicitly told SConsSCons to generate an object file named foo.o, one with a $CCFLAGS$CCFLAGS value of -O2 and one with a $CCFLAGS$CCFLAGS value of -g. - SConsSCons can't just decide that one of them should take precedence over the other, so it generates the error. @@ -7536,28 +7605,22 @@ CLASS="APPLICATION" we must explicitly specify that each environment compile foo.c to a separately-named object file using the ObjectObject builder, like so:

      opt = Environment(CCFLAGS = '-O2')
+CLASS="programlisting"
+>
      opt = Environment(CCFLAGS = '-O2')
       dbg = Environment(CCFLAGS = '-g')
 
       o = opt.Object('foo-opt', 'foo.c')
@@ -7566,48 +7629,40 @@ CLASS="PROGRAMLISTING"
       d = dbg.Object('foo-dbg', 'foo.c')
       dbg.Program(d)
    

Notice that each call to the Object + Notice that each call to the Object builder returns a value, - an internal SConsSCons object that represents the object file that will be built. We then use that object - as input to the ProgramProgram builder. This avoids having to specify explicitly the object file name in multiple places, and makes for a compact, readable SConstruct file. - Our SConsSCons output then looks like:

      % 
      % scons -Q
       cc -o foo-dbg.o -c -g foo.c
@@ -7615,86 +7670,79 @@ CLASS="USERINPUT"
       cc -o foo-opt.o -c -O2 foo.c
       cc -o foo-opt foo-opt.o
    

Copying 7.2. Copying Construction Environments

Sometimes you want more than one construction environment +> + Sometimes you want more than one construction environment to share the same values for one or more variables. Rather than always having to repeat all of the common variables when you create each construction environment, - you can use the CloneClone method to create a copy of a construction environment.

Like the Environment + Like the Environment call that creates a construction environment, - the CloneClone method takes construction variable assignments, which will override the values in the copied construction environment. - For example, suppose we want to use gccgcc to create three versions of a program, one optimized, one debug, and one with neither. We could do this by creating a "base" construction environment that sets $CC$CC to gcc to gcc, and then creating two copies, one which sets $CCFLAGS$CCFLAGS for optimization - and the other which sets $CCFLAGS$CCFLAGS for debugging:

      env = Environment(CC = 'gcc')
+CLASS="programlisting"
+>
      env = Environment(CC = 'gcc')
       opt = env.Clone(CCFLAGS = '-O2')
       dbg = env.Clone(CCFLAGS = '-g')
 
@@ -7706,23 +7754,15 @@ CLASS="PROGRAMLISTING"
       d = dbg.Object('foo-dbg', 'foo.c')
       dbg.Program(d)
    

Then our output would look like: +> + Then our output would look like:

      % 
      % scons -Q
       gcc -o foo.o -c foo.c
@@ -7732,120 +7772,88 @@ CLASS="USERINPUT"
       gcc -o foo-opt.o -c -O2 foo.c
       gcc -o foo-opt foo-opt.o
    

Fetching Values From a 7.3. Fetching Values From a Construction Environment

You can fetch individual construction variables +> + You can fetch individual construction variables using the normal syntax for accessing individual named items in a Python dictionary:

      env = Environment()
+CLASS="programlisting"
+>
      env = Environment()
       print "CC is:", env['CC']
    

This example + This example SConstruct file doesn't build anything, but because it's actually a Python script, it will print the value of $CC$CC for us:

      % 
      % scons -Q
       CC is: cc
       scons: `.' is up to date.
    

A construction environment, however, +> + A construction environment, however, is actually an object with associated methods, etc. If you want to have direct access to only the dictionary of construction variables, you can fetch this using the Dictionary method:

      env = Environment(FOO = 'foo', BAR = 'bar')
+CLASS="programlisting"
+>
      env = Environment(FOO = 'foo', BAR = 'bar')
       dict = env.Dictionary()
       for key in ['OBJSUFFIX', 'LIBSUFFIX', 'PROGSUFFIX']:
           print "key = %s, value = %s" % (key, dict[key])
    

This + This SConstruct file will print the specified dictionary items for us on POSIX systems as follows:

      % 
      % scons -Q
       key = OBJSUFFIX, value = .o
@@ -7853,23 +7861,15 @@ CLASS="USERINPUT"
       key = PROGSUFFIX, value = 
       scons: `.' is up to date.
    

And on Windows: +> + And on Windows:

      C:\>
      C:\>scons -Q
       key = OBJSUFFIX, value = .obj
@@ -7877,51 +7877,41 @@ CLASS="USERINPUT"
       key = PROGSUFFIX, value = .exe
       scons: `.' is up to date.
    

If you want to loop through and print the values of +> + If you want to loop through and print the values of all of the construction variables in a construction environment, the Python code to do that in sorted order might look something like:

      env = Environment()
+CLASS="programlisting"
+>
      env = Environment()
       dict = env.Dictionary()
       keys = dict.keys()
       keys.sort()
       for key in keys:
           print "construction variable = '%s', value = '%s'" % (key, dict[key])
    

Expanding Values From a 7.4. Expanding Values From a Construction Environment

Another way to get information from +> + Another way to get information from a construction environment. - is to use the substsubst method on a string containing $-expansions of construction variable names. @@ -7929,38 +7919,30 @@ CLASS="FUNCTION" the example from the previous section that used env['CC'] to fetch the value of $CC$CC could also be written as:

     env = Environment()
+CLASS="programlisting"
+>
     env = Environment()
      print "CC is:", env.subst('$CC')
    

The real advantage of using - subst + The real advantage of using + subst to expand strings is that construction variables in the result get @@ -7968,260 +7950,198 @@ CLASS="FUNCTION" there are no expansions left in the string. So a simple fetch of a value like $CCCOM$CCCOM:

     env = Environment(CCFLAGS = '-DFOO')
+CLASS="programlisting"
+>
     env = Environment(CCFLAGS = '-DFOO')
      print "CCCOM is:", env['CCCOM']
    

Will print the unexpanded value of $CCCOM + Will print the unexpanded value of $CCCOM, showing us the construction variables that still need to be expanded:

     % 
     % scons -Q
      CCCOM is: $CC $CCFLAGS $CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS -c -o $TARGET $SOURCES
      scons: `.' is up to date.
    

Calling the subst method on $CCOM + Calling the subst method on $CCOM, however:

     env = Environment(CCFLAGS = '-DFOO')
+CLASS="programlisting"
+>
     env = Environment(CCFLAGS = '-DFOO')
      print "CCCOM is:", env.subst('$CCCOM')
    

Will recursively expand all of +> + Will recursively expand all of the $-prefixed construction variables, showing us the final output:

     % 
     % scons -Q
      CCCOM is: gcc -DFOO -c -o
      scons: `.' is up to date.
    

(Note that because we're not expanding this +> + (Note that because we're not expanding this in the context of building something there are no target or source files for $TARGET$TARGET and $SOURCES$SOURCES to expand. +> to expand.)


Modifying a 7.5. Modifying a Construction Environment

SCons + SCons provides various methods that support modifying existing values in a construction environment.


Replacing Values in a 7.5.1. Replacing Values in a Construction Environment

You can replace existing construction variable values - using the Replace + You can replace existing construction variable values + using the Replace method:

        env = Environment(CCFLAGS = '-DDEFINE1')
+CLASS="programlisting"
+>
        env = Environment(CCFLAGS = '-DDEFINE1')
         env.Replace(CCFLAGS = '-DDEFINE2')
         env.Program('foo.c')
      

The replacing value +> + The replacing value (-DDEFINE2 in the above example) completely replaces the value in the construction environment:

        % 
        % scons -Q
         cc -o foo.o -c -DDEFINE2 foo.c
         cc -o foo foo.o
      

You can safely call Replace + You can safely call Replace for construction variables that don't exist in the construction environment:

        env = Environment()
+CLASS="programlisting"
+>
        env = Environment()
         env.Replace(NEW_VARIABLE = 'xyzzy')
         print "NEW_VARIABLE =", env['NEW_VARIABLE']
      

In this case, +> + In this case, the construction variable simply gets added to the construction environment:

        % 
        % scons -Q
         NEW_VARIABLE = xyzzy
         scons: `.' is up to date.
      

Because the variables +> + Because the variables aren't expanded until the construction environment is actually used to build the targets, - and because SConsSCons function and method calls are order-independent, the last replacement "wins" @@ -8232,15 +8152,9 @@ CLASS="APPLICATION" builder methods:

        env = Environment(CCFLAGS = '-DDEFINE1')
+CLASS="programlisting"
+>
        env = Environment(CCFLAGS = '-DDEFINE1')
         print "CCFLAGS =", env['CCFLAGS']
         env.Program('foo.c')
 
@@ -8248,34 +8162,26 @@ CLASS="PROGRAMLISTING"
         print "CCFLAGS =", env['CCFLAGS']
         env.Program('bar.c')
      

The timing of when the replacement +> + The timing of when the replacement actually occurs relative to when the targets get built becomes apparent - if we run sconsscons without the -Q option:

        % 
        % scons
         scons: Reading SConscript files ...
@@ -8289,295 +8195,230 @@ CLASS="USERINPUT"
         cc -o foo foo.o
         scons: done building targets.
      

Because the replacement occurs while +> + Because the replacement occurs while the SConscript files are being read, the $CCFLAGS$CCFLAGS variable has already been set to -DDEFINE2 by the time the foo.o target is built, - even though the call to the ReplaceReplace method does not occur until later in the SConscript file.


Appending to the End of Values in a 7.5.2. Appending to the End of Values in a Construction Environment

You can append a value to +> + You can append a value to an existing construction variable - using the AppendAppend method:

        env = Environment(CCFLAGS = '-DMY_VALUE')
+CLASS="programlisting"
+>
        env = Environment(CCFLAGS = '-DMY_VALUE')
         env.Append(CCFLAGS = ' -DLAST')
         env.Program('foo.c')
      

SCons + SCons then supplies both the -DMY_VALUE and -DLAST flags when compiling the object file:

        % 
        % scons -Q
         cc -o foo.o -c -DMY_VALUE -DLAST foo.c
         cc -o foo foo.o
      

If the construction variable doesn't already exist, - the Append + If the construction variable doesn't already exist, + the Append method will create it:

        env = Environment()
+CLASS="programlisting"
+>
        env = Environment()
         env.Append(NEW_VARIABLE = 'added')
         print "NEW_VARIABLE =", env['NEW_VARIABLE']
      

Which yields: +> + Which yields:

        % 
        % scons -Q
         NEW_VARIABLE = added
         scons: `.' is up to date.
      

Appending to the Beginning of Values in a 7.5.3. Appending to the Beginning of Values in a Construction Environment

You can append a value to the beginning of +> + You can append a value to the beginning of an existing construction variable - using the PrependPrepend method:

        env = Environment(CCFLAGS = '-DMY_VALUE')
+CLASS="programlisting"
+>
        env = Environment(CCFLAGS = '-DMY_VALUE')
         env.Prepend(CCFLAGS = '-DFIRST ')
         env.Program('foo.c')
      

SCons + SCons then supplies both the -DFIRST and -DMY_VALUE flags when compiling the object file:

        % 
        % scons -Q
         cc -o foo.o -c -DFIRST -DMY_VALUE foo.c
         cc -o foo foo.o
      

If the construction variable doesn't already exist, - the Prepend + If the construction variable doesn't already exist, + the Prepend method will create it:

        env = Environment()
+CLASS="programlisting"
+>
        env = Environment()
         env.Prepend(NEW_VARIABLE = 'added')
         print "NEW_VARIABLE =", env['NEW_VARIABLE']
      

Which yields: +> + Which yields:

        % 
        % scons -Q
         NEW_VARIABLE = added
         scons: `.' is up to date.
      

Controlling the External Environment Used to Execute Build Commands

Chapter 8. Controlling the External Environment Used to Execute Build Commands

When SCons + When SCons builds a target file, it does not execute the commands with the same external environment - that you used to execute SConsSCons. Instead, it uses the dictionary stored in the $ENV$ENV construction variable as the external environment @@ -8585,142 +8426,121 @@ CLASS="ENVAR"

The most important ramification of this behavior - is that the PATH + The most important ramification of this behavior + is that the PATH environment variable, which controls where the operating system will look for commands and utilities, is not the same as in the external environment - from which you called SConsSCons. - This means that SConsSCons will not, by default, necessarily find all of the tools that you can execute from the command line.

The default value of the PATH + The default value of the PATH environment variable on a POSIX system is /usr/local/bin:/bin:/usr/bin. - The default value of the PATHPATH environment variable on a Windows system comes from the Windows registry value for the command interpreter. If you want to execute any commands--compilers, linkers, etc.--that are not in these default locations, - you need to set the PATHPATH value - in the $ENV$ENV dictionary in your construction environment.

The simplest way to do this is to initialize explicitly +> + The simplest way to do this is to initialize explicitly the value when you create the construction environment; this is one way to do that:

    path = ['/usr/local/bin', '/bin', '/usr/bin']
+CLASS="programlisting"
+>
    path = ['/usr/local/bin', '/bin', '/usr/bin']
     env = Environment(ENV = {'PATH' : path})
   

Assign a dictionary to the $ENV + Assign a dictionary to the $ENV construction variable in this way completely resets the external environment so that the only variable that will be set when external commands are executed - will be the PATHPATH value. If you want to use the rest of - the values in $ENV$ENV and only - set the value of PATHPATH, the most straightforward way is probably:

    env['ENV']['PATH'] = ['/usr/local/bin', '/bin', '/usr/bin']
+CLASS="programlisting"
+>
    env['ENV']['PATH'] = ['/usr/local/bin', '/bin', '/usr/bin']
   

Note that SCons + Note that SCons does allow you to define - the directories in the PATHPATH in a string, separated by the pathname-separator character for your system (':' on POSIX systems, ';' on Windows):

    env['ENV']['PATH'] = '/usr/local/bin:/bin:/usr/bin'
+CLASS="programlisting"
+>
    env['ENV']['PATH'] = '/usr/local/bin:/bin:/usr/bin'
   

But doing so makes your + But doing so makes your SConscript file less portable, (although in this case that may not be a huge concern @@ -8728,32 +8548,33 @@ CLASS="FILENAME"


Propagating PATH8.1. Propagating PATH From the External Environment

You may want to propagate the external PATH + You may want to propagate the external PATH to the execution environment for commands. - You do this by initializing the PATHPATH - variable with the PATHPATH value from the os.environ dictionary, @@ -8761,169 +8582,150 @@ CLASS="LITERAL" get at the external environment:

      import os
+CLASS="programlisting"
+>
      import os
       env = Environment(ENV = {'PATH' : os.environ['PATH']})
     

Alternatively, you may find it easier +> + Alternatively, you may find it easier to just propagate the entire external environment to the execution environment for commands. This is simpler to code than explicity - selecting the PATHPATH value:

      import os
+CLASS="programlisting"
+>
      import os
       env = Environment(ENV = os.environ)
     

Either of these will guarantee that - SCons + Either of these will guarantee that + SCons will be able to execute any command that you can execute from the command line. The drawback is that the build can behave differently if it's run by people with - different PATHPATH values in their environment--for example, - both the /bin and /usr/local/bin directories - have different cccc commands, then which one will be used to compile programs will depend on which directory is listed - first in the user's PATHPATH variable.


Controlling a Build From the Command Line

Chapter 9. Controlling a Build From the Command Line

SCons + SCons provides a number of ways that allow the writer of the SConscript files to give users a great deal of control over how to run the builds.


Not Having to Specify Command-Line Options Each Time: the SCONSFLAGS9.1. Not Having to Specify Command-Line Options Each Time: the SCONSFLAGS Environment Variable

Users may find themselves supplying +> + Users may find themselves supplying the same command-line options every time - they run SConsSCons. For example, a user might find that it saves time to specify a value of -j 2 to run the builds in parallel. To avoid having to type -j 2 by hand every time, you can set the external environment variable - SCONSFLAGSSCONSFLAGS to a string containing - command-line options that you want SConsSCons to use.

If, for example, - and you're using a POSIX shell that's +> + If, for example, + you're using a POSIX shell that's compatible with the Bourne shell, - and you always want SConsSCons to use the -Q option, - you can set the SCONSFLAGSSCONSFLAGS environment as follows:

      % 
      % scons
       scons: Reading SConscript files ...
@@ -8932,73 +8734,64 @@ CLASS="USERINPUT"
           ... [build output] ...
       scons: done building targets.
       % export SCONSFLAGS="-Q"
       % scons
           ... [build output] ...
     

Users of csh + Users of csh-style shells on POSIX systems - can set the SCONSFLAGSSCONSFLAGS environment as follows:

      $ 
      $ setenv SCONSFLAGS "-Q"
     

Windows users may typically want to set this - SCONSFLAGS + Windows users may typically want to set the + SCONSFLAGS in the appropriate tab of the System Properties window.


Getting at Command-Line Targets9.2. Getting at Command-Line Targets

SCons supports a COMMAND_LINE_TARGETS + SCons supports a COMMAND_LINE_TARGETS variable that lets you get at the list of targets that the user specified on the command line. @@ -9008,74 +8801,58 @@ CLASS="VARNAME" suppose that you want to print a reminder to the user whenever a specific program is built. You can do this by checking for the - target in the COMMAND_LINE_TARGETSCOMMAND_LINE_TARGETS list:

      if 'bar' in COMMAND_LINE_TARGETS:
+CLASS="programlisting"
+>
      if 'bar' in COMMAND_LINE_TARGETS:
           print "Don't forget to copy `bar' to the archive!"
       Default(Program('foo.c'))
       Program('bar.c')
     

Then, running SCons + Then, running SCons with the default target works as it always does, - but explicity specifying the barbar target on the command line generates the warning message:

      % 
      % scons -Q
       cc -o foo.o -c foo.c
       cc -o foo foo.o
       % scons -Q bar
       Don't forget to copy `bar' to the archive!
       cc -o bar.o -c bar.c
       cc -o bar bar.o
     

Another practical use for the COMMAND_LINE_TARGETS + Another practical use for the COMMAND_LINE_TARGETS variable might be to speed up a build by only reading certain subsidiary SConscript files if a specific target is requested. @@ -9083,24 +8860,25 @@ CLASS="FILENAME"


Controlling the Default Targets9.3. Controlling the Default Targets

One of the most basic things you can control - is which targets SCons + One of the most basic things you can control + is which targets SCons will build by default--that is, when there are no targets specified on the command line. As mentioned previously, - SConsSCons will normally build every target in or below the current directory by default--that is, when you don't @@ -9110,107 +8888,85 @@ CLASS="APPLICATION" to specify explicitly that only certain programs, or programs in certain directories, should be built by default. - You do this with the DefaultDefault function:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        hello = env.Program('hello.c')
        env.Program('goodbye.c')
        Default(hello)
     

This + This SConstruct file knows how to build two programs, - hello and goodbyehello and goodbye, but only builds the - hellohello program by default:

       % 
       % scons -Q
        cc -o hello.o -c hello.c
        cc -o hello hello.o
        % scons -Q
        scons: `hello' is up to date.
        % scons -Q goodbye
        cc -o goodbye.o -c goodbye.c
        cc -o goodbye goodbye.o
     

Note that, even when you use the Default + Note that, even when you use the Default function in your SConstruct file, you can still explicitly specify the current directory (.) on the command line - to tell SConsSCons to build everything in (or below) the current directory:

       % 
       % scons -Q .
        cc -o goodbye.o -c goodbye.c
@@ -9218,87 +8974,63 @@ CLASS="USERINPUT"
        cc -o hello.o -c hello.c
        cc -o hello hello.o
     

You can also call the Default + You can also call the Default function more than once, in which case each call adds to the list of targets to be built by default:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        prog1 = env.Program('prog1.c')
        Default(prog1)
        prog2 = env.Program('prog2.c')
        prog3 = env.Program('prog3.c')
        Default(prog3)
     

Or you can specify more than one target - in a single call to the Default + Or you can specify more than one target + in a single call to the Default function:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        prog1 = env.Program('prog1.c')
        prog2 = env.Program('prog2.c')
        prog3 = env.Program('prog3.c')
        Default(prog1, prog3)
     

Either of these last two examples +> + Either of these last two examples will build only the - prog1prog1 and - prog3prog3 programs by default:

       % 
       % scons -Q
        cc -o prog1.o -c prog1.c
@@ -9306,120 +9038,88 @@ CLASS="USERINPUT"
        cc -o prog3.o -c prog3.c
        cc -o prog3 prog3.o
        % scons -Q .
        cc -o prog2.o -c prog2.c
        cc -o prog2 prog2.o
     

You can list a directory as - an argument to Default + You can list a directory as + an argument to Default:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        env.Program(['prog1/main.c', 'prog1/foo.c'])
        env.Program(['prog2/main.c', 'prog2/bar.c'])
        Default('prog1')
     

In which case only the target(s) in that +> + In which case only the target(s) in that directory will be built by default:

       % 
       % scons -Q
        cc -o prog1/foo.o -c prog1/foo.c
        cc -o prog1/main.o -c prog1/main.c
        cc -o prog1/main prog1/main.o prog1/foo.o
        % scons -Q
        scons: `prog1' is up to date.
        % scons -Q .
        cc -o prog2/bar.o -c prog2/bar.c
        cc -o prog2/main.o -c prog2/main.c
        cc -o prog2/main prog2/main.o prog2/bar.o
     

Lastly, if for some reason you don't want +> + Lastly, if for some reason you don't want any targets built by default, you can use the Python None variable:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        prog1 = env.Program('prog1.c')
        prog2 = env.Program('prog2.c')
        Default(None)
     

Which would produce build output like: +> + Which would produce build output like:

       % 
       % scons -Q
        scons: *** No targets specified and no Default() targets found.  Stop.
        % scons -Q .
        cc -o prog1.o -c prog1.c
@@ -9427,103 +9127,87 @@ CLASS="USERINPUT"
        cc -o prog2.o -c prog2.c
        cc -o prog2 prog2.o
     

Getting at the List of Default Targets9.3.1. Getting at the List of Default Targets

SCons supports a DEFAULT_TARGETS + SCons supports a DEFAULT_TARGETS variable that lets you get at the current list of default targets. - The DEFAULT_TARGETSDEFAULT_TARGETS variable has - two important differences from the COMMAND_LINE_TARGETSCOMMAND_LINE_TARGETS variable. - First, the DEFAULT_TARGETSDEFAULT_TARGETS variable is a list of - internal SConsSCons nodes, so you need to convert the list elements to strings if you want to print them or look for a specific target name. Fortunately, you can do this easily - by using the Python mapmap function - to run the list through strstr:

         prog1 = Program('prog1.c')
+CLASS="programlisting"
+>
         prog1 = Program('prog1.c')
          Default(prog1)
          print "DEFAULT_TARGETS is", map(str, DEFAULT_TARGETS)
       

(Keep in mind that all of the manipulation of the - DEFAULT_TARGETS + (Keep in mind that all of the manipulation of the + DEFAULT_TARGETS list takes place during the - first phase when SConsSCons is reading up the SConscript files, which is obvious if we leave off the -Q flag when we run SCons flag when we run SCons:)

         % 
         % scons
          scons: Reading SConscript files ...
@@ -9534,57 +9218,41 @@ CLASS="USERINPUT"
          cc -o prog1 prog1.o
          scons: done building targets.
       

Second, - the contents of the DEFAULT_TARGETS + Second, + the contents of the DEFAULT_TARGETS list change - in response to calls to the DefaultDefault: function, as you can see from the following SConstruct file:

         prog1 = Program('prog1.c')
+CLASS="programlisting"
+>
         prog1 = Program('prog1.c')
          Default(prog1)
          print "DEFAULT_TARGETS is now", map(str, DEFAULT_TARGETS)
          prog2 = Program('prog2.c')
          Default(prog2)
          print "DEFAULT_TARGETS is now", map(str, DEFAULT_TARGETS)
       

Which yields the output: +> + Which yields the output:

         % 
         % scons
          scons: Reading SConscript files ...
@@ -9598,19 +9266,17 @@ CLASS="USERINPUT"
          cc -o prog2 prog2.o
          scons: done building targets.
       

In practice, this simply means that you +> + In practice, this simply means that you need to pay attention to the order in - which you call the DefaultDefault function - and refer to the DEFAULT_TARGETSDEFAULT_TARGETS list, to make sure that you don't examine the list before you've added the default targets @@ -9620,148 +9286,128 @@ CLASS="VARNAME" >


Getting at the List of Build Targets, Regardless of Origin9.4. Getting at the List of Build Targets, Regardless of Origin

We've already been introduced to the - COMMAND_LINE_TARGETS + We've already been introduced to the + COMMAND_LINE_TARGETS variable, which contains a list of targets specified on the command line, - and the DEFAULT_TARGETSDEFAULT_TARGETS variable, which contains a list of targets specified - via calls to the DefaultDefault method or function. Sometimes, however, you want a list of whatever targets - SConsSCons will try to build, regardless of whether the targets came from the - command line or a DefaultDefault call. You could code this up by hand, as follows:

      if COMMAND_LINE_TARGETS:
+CLASS="programlisting"
+>
      if COMMAND_LINE_TARGETS:
           targets = COMMAND_LINE_TARGETS
       else:
           targets = DEFAULT_TARGETS
     

SCons + SCons, however, provides a convenient - BUILD_TARGETSBUILD_TARGETS variable that eliminates the need for this by-hand manipulation. - Essentially, the BUILD_TARGETSBUILD_TARGETS variable contains a list of the command-line targets, if any were specified, and if no command-line targets were specified, it contains a list of the targets specified - via the DefaultDefault method or function.

Because BUILD_TARGETS may contain a list of SCons + Because BUILD_TARGETS may contain a list of SCons nodes, you must convert the list elements to strings if you want to print them or look for a specific target name, - just like the DEFAULT_TARGETSDEFAULT_TARGETS list:

      prog1 = Program('prog1.c')
+CLASS="programlisting"
+>
      prog1 = Program('prog1.c')
       Program('prog2.c')
       Default(prog1)
       print "BUILD_TARGETS is", map(str, BUILD_TARGETS)
     

Notice how the value of BUILD_TARGETS + Notice how the value of BUILD_TARGETS changes depending on whether a target is specified on the command line:

      % 
      % scons -Q
       BUILD_TARGETS is ['prog1']
       cc -o prog1.o -c prog1.c
       cc -o prog1 prog1.o
       % scons -Q prog2
       BUILD_TARGETS is ['prog2']
       cc -o prog2.o -c prog2.c
       cc -o prog2 prog2.o
       % scons -Q -c .
       BUILD_TARGETS is ['.']
@@ -9770,90 +9416,83 @@ CLASS="USERINPUT"
       Removed prog2.o
       Removed prog2
     

Command-Line variable=value9.5. Command-Line variable=value Build Options

You may want to control various aspects +> + You may want to control various aspects of your build by allowing the user - to specify variable=valuevariable=value values on the command line. For example, suppose you want users to be able to build a debug version of a program - by running SConsSCons as follows:

      % 
      % scons -Q debug=1
     

SCons provides an ARGUMENTS + SCons provides an ARGUMENTS dictionary that stores all of the - variable=valuevariable=value assignments from the command line. This allows you to modify aspects of your build in response to specifications on the command line. (Note that unless you want to require - that users always specify an option, you probably want to use the Python ARGUMENTS.get() function, which allows you to specify a default value @@ -9862,97 +9501,82 @@ CLASS="LITERAL"

The following code sets the $CCFLAGS + The following code sets the $CCFLAGS construction - variable in response to the debugdebug - flag being set in the ARGUMENTSARGUMENTS dictionary:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        debug = ARGUMENTS.get('debug', 0)
        if int(debug):
            env.Append(CCFLAGS = '-g')
        env.Program('prog.c')
     

This results in the -g + This results in the -g compiler option being used when debug=1 is used on the command line:

       % 
       % scons -Q debug=0
        cc -o prog.o -c prog.c
        cc -o prog prog.o
        % scons -Q debug=0
        scons: `.' is up to date.
        % scons -Q debug=1
        cc -o prog.o -c -g prog.c
        cc -o prog prog.o
        % scons -Q debug=1
        scons: `.' is up to date.
     

Notice that SCons + Notice that SCons keeps track of the last values used to build the object files, and as a result correctly rebuilds the object and executable files only when the value of the debug argument has changed. @@ -9960,26 +9584,27 @@ CLASS="LITERAL"


Controlling Command-Line Build Options9.6. Controlling Command-Line Build Options

Being able to use a command-line build option like +> + Being able to use a command-line build option like debug=1 is handy, but it can be a chore to write specific Python code to recognize each such option and apply the values to a construction variable. To help with this, - SConsSCons supports a class to define such build options easily, and a mechanism to apply the @@ -9989,17 +9614,18 @@ CLASS="APPLICATION"

For example, suppose that you want users to set - a RELEASE + For example, suppose that you want users to set + a RELEASE construction variable on the command line whenever the time comes to build a program for release, and that the value of this variable should be added to the command line with the appropriate -D option (or other command line option) @@ -10007,187 +9633,158 @@ CLASS="LITERAL" Here's how you might do that by setting the appropriate value in a dictionary for the $CPPDEFINES$CPPDEFINES construction variable:

         opts = Options()
+CLASS="programlisting"
+>
         opts = Options()
          opts.Add('RELEASE', 'Set to 1 to build for release', 0)
          env = Environment(options = opts,
                            CPPDEFINES={'RELEASE_BUILD' : '${RELEASE}'})
          env.Program(['foo.c', 'bar.c'])
     

This + This SConstruct file first creates an - OptionsOptions object (the opts = Options() call), - and then uses the object's AddAdd - method to indicate that the RELEASERELEASE option can be set on the command line, and that it's default value will be 0 - (the third argument to the AddAdd method). The second argument is a line of help text; we'll learn how to use it in the next section.

We then pass the created Options + We then pass the created Options - object as an optionsoptions keyword argument - to the EnvironmentEnvironment call used to create the construction environment. This then allows a user to set the - RELEASERELEASE build option on the command line and have the variable show up in the command line used to build each object from a C source file:

      % 
      % scons -Q RELEASE=1
       cc -o bar.o -c -DRELEASE_BUILD=1 bar.c
       cc -o foo.o -c -DRELEASE_BUILD=1 foo.c
       cc -o foo foo.o bar.o
     

Providing Help for Command-Line Build Options9.7. Providing Help for Command-Line Build Options

To make command-line build options most useful, +> + To make command-line build options most useful, you ideally want to provide some help text that will describe the available options when the user runs scons -h. You could write this text by hand, - but SConsSCons provides an easier way. - OptionsOptions objects support a - GenerateHelpTextGenerateHelpText method that will, as its name indicates, generate text that describes the various options that have been added to it. You then pass the output from this method to - the HelpHelp function:

         opts = Options('custom.py')
+CLASS="programlisting"
+>
         opts = Options('custom.py')
          opts.Add('RELEASE', 'Set to 1 to build for release', 0)
          env = Environment(options = opts)
          Help(opts.GenerateHelpText(env))
     

SCons + SCons will now display some useful text when the -h option is used:

      % 
      % scons -Q -h
       
@@ -10197,595 +9794,478 @@ CLASS="USERINPUT"
       
       Use scons -H for help about command-line options.
     

Notice that the help output shows the default value, +> + Notice that the help output shows the default value, and the current actual value of the build option.


Reading Build Options From a File9.8. Reading Build Options From a File

Being able to use a command-line build option like +> + Being able to use a command-line build option like debug=1 is handy, but it can be a chore to write specific Python code to recognize each such option and apply the values to a construction variable. To help with this, - SConsSCons supports a class to define such build options easily and to read build option values from a file. This allows you to control how the build options affect construction environments. The way you do this is by specifying - a file name when you call OptionsOptions, like custom.py in the following example:

         opts = Options('custom.py')
+CLASS="programlisting"
+>
         opts = Options('custom.py')
          opts.Add('RELEASE', 'Set to 1 to build for release', 0)
          env = Environment(options = opts,
                            CPPDEFINES={'RELEASE_BUILD' : '${RELEASE}'})
          env.Program(['foo.c', 'bar.c'])
          Help(opts.GenerateHelpText(env))
     

This then allows us to control the RELEASE + This then allows us to control the RELEASE variable by setting it in the custom.py file:

      RELEASE = 1
+CLASS="programlisting"
+>
      RELEASE = 1
       

Note that this file is actually executed +> + Note that this file is actually executed like a Python script. - Now when we run SConsSCons:

      % 
      % scons -Q
       cc -o bar.o -c -DRELEASE_BUILD=1 bar.c
       cc -o foo.o -c -DRELEASE_BUILD=1 foo.c
       cc -o foo foo.o bar.o
     

And if we change the contents of + And if we change the contents of custom.py to:

      RELEASE = 0
+CLASS="programlisting"
+>
      RELEASE = 0
     

The object files are rebuilt appropriately +> + The object files are rebuilt appropriately with the new option:

      % 
      % scons -Q
       cc -o bar.o -c -DRELEASE_BUILD=0 bar.c
       cc -o foo.o -c -DRELEASE_BUILD=0 foo.c
       cc -o foo foo.o bar.o
     

Canned Build Options9.9. Canned Build Options

SCons + SCons provides a number of functions that provide ready-made behaviors for various types of command-line build options.


True/False Values: the BoolOption9.9.1. True/False Values: the BoolOption Build Option

It's often handy to be able to specify an +> + It's often handy to be able to specify an option that controls a simple Boolean variable with a true or false value. It would be even more handy to accomodate users who have different preferences for how to represent true or false values. - The BoolOptionBoolOption function makes it easy to accomodate a variety of common values that represent true or false.

The BoolOption + The BoolOption function takes three arguments: the name of the build option, the default value of the build option, and the help string for the option. It then returns appropriate information for - passing to the Add method of an OptionsAdd method of an Options object, like so:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(BoolOption('RELEASE', 'Set to build for release', 0))
            env = Environment(options = opts,
                              CPPDEFINES={'RELEASE_BUILD' : '${RELEASE}'})
            env.Program('foo.c')
       

With this build option, - the RELEASE + With this build option, + the RELEASE variable can now be enabled by setting it to the value yes or t:

        % 
        % scons -Q RELEASE=yes foo.o
         cc -o foo.o -c -DRELEASE_BUILD=True foo.c
       
        % 
        % scons -Q RELEASE=t foo.o
         cc -o foo.o -c -DRELEASE_BUILD=True foo.c
       

Other values that equate to + Other values that equate to true include y, 1, on and all.

Conversely, RELEASE + Conversely, RELEASE may now be given a false value by setting it to no or f:

        % 
        % scons -Q RELEASE=no foo.o
         cc -o foo.o -c -DRELEASE_BUILD=False foo.c
       
        % 
        % scons -Q RELEASE=f foo.o
         cc -o foo.o -c -DRELEASE_BUILD=False foo.c
       

Other values that equate to true + Other values that equate to false include n, 0, off and none.

Lastly, if a user tries to specify +> + Lastly, if a user tries to specify any other value, - SConsSCons supplies an appropriate error message:

        % 
        % scons -Q RELEASE=bad_value foo.o
         
         scons: *** Error converting option: RELEASE
         Invalid value for boolean option: bad_value
-        File "/home/my/project/SConstruct", line 4, in ?
+        File "/home/my/project/SConstruct", line 4, in <module>
       

Single Value From a List: the EnumOption9.9.2. Single Value From a List: the EnumOption Build Option

Suppose that we want a user to be able to - set a COLOR + Suppose that we want a user to be able to + set a COLOR option that selects a background color to be displayed by an application, but that we want to restrict the choices to a specific set of allowed colors. This can be set up quite easily - using the EnumOptionEnumOption, - which takes a list of allowed_valuesallowed_values in addition to the variable name, default value, and help text arguments:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(EnumOption('COLOR', 'Set background color', 'red',
                                allowed_values=('red', 'green', 'blue')))
            env = Environment(options = opts,
                              CPPDEFINES={'COLOR' : '"${COLOR}"'})
            env.Program('foo.c')
       

The user can now explicity set the COLOR + The user can now explicity set the COLOR build option to any of the specified allowed values:

        % 
        % scons -Q COLOR=red foo.o
         cc -o foo.o -c -DCOLOR="red" foo.c
         % scons -Q COLOR=blue foo.o
         cc -o foo.o -c -DCOLOR="blue" foo.c
         % scons -Q COLOR=green foo.o
         cc -o foo.o -c -DCOLOR="green" foo.c
       

But, almost more importantly, - an attempt to set COLOR + But, almost more importantly, + an attempt to set COLOR to a value that's not in the list generates an error message:

        % 
        % scons -Q COLOR=magenta foo.o
         
         scons: *** Invalid value for option COLOR: magenta
-        File "/home/my/project/SConstruct", line 5, in ?
+        File "/home/my/project/SConstruct", line 5, in <module>
       

The EnumOption + The EnumOption function also supports a way to map alternate names to allowed values. Suppose, for example, that we want to allow the user to use the word navy as a synonym for blue. - We do this by adding a mapmap dictionary that will map its key values to the desired legal value:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(EnumOption('COLOR', 'Set background color', 'red',
                                allowed_values=('red', 'green', 'blue'),
                                map={'navy':'blue'}))
@@ -10793,50 +10273,40 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'COLOR' : '"${COLOR}"'})
            env.Program('foo.c')
       

As desired, the user can then use +> + As desired, the user can then use navy on the command line, - and SConsSCons will translate it into blue - when it comes time to use the COLORCOLOR option to build a target:

        % 
        % scons -Q COLOR=navy foo.o
         cc -o foo.o -c -DCOLOR="blue" foo.c
       

By default, when using the EnumOption + By default, when using the EnumOption function, arguments that differ from the legal values @@ -10844,68 +10314,54 @@ CLASS="FUNCTION" are treated as illegal values:

        % 
        % scons -Q COLOR=Red foo.o
         
         scons: *** Invalid value for option COLOR: Red
-        File "/home/my/project/SConstruct", line 5, in ?
+        File "/home/my/project/SConstruct", line 5, in <module>
         % scons -Q COLOR=BLUE foo.o
         
         scons: *** Invalid value for option COLOR: BLUE
-        File "/home/my/project/SConstruct", line 5, in ?
+        File "/home/my/project/SConstruct", line 5, in <module>
         % scons -Q COLOR=nAvY foo.o
         
         scons: *** Invalid value for option COLOR: nAvY
-        File "/home/my/project/SConstruct", line 5, in ?
+        File "/home/my/project/SConstruct", line 5, in <module>
       

The EnumOption + The EnumOption function can take an additional - ignorecaseignorecase keyword argument that, when set to 1, - tells SConsSCons to allow case differences when the values are specified:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(EnumOption('COLOR', 'Set background color', 'red',
                                allowed_values=('red', 'green', 'blue'),
                                map={'navy':'blue'},
@@ -10914,78 +10370,62 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'COLOR' : '"${COLOR}"'})
            env.Program('foo.c')
       

Which yields the output: +> + Which yields the output:

        % 
        % scons -Q COLOR=Red foo.o
         cc -o foo.o -c -DCOLOR="Red" foo.c
         % scons -Q COLOR=BLUE foo.o
         cc -o foo.o -c -DCOLOR="BLUE" foo.c
         % scons -Q COLOR=nAvY foo.o
         cc -o foo.o -c -DCOLOR="blue" foo.c
         % scons -Q COLOR=green foo.o
         cc -o foo.o -c -DCOLOR="green" foo.c
       

Notice that an ignorecase + Notice that an ignorecase value of 1 preserves the case-spelling that the user supplied. - If you want SConsSCons to translate the names into lower-case, regardless of the case used by the user, - specify an ignorecaseignorecase value of 2:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(EnumOption('COLOR', 'Set background color', 'red',
                                allowed_values=('red', 'green', 'blue'),
                                map={'navy':'blue'},
@@ -10994,235 +10434,187 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'COLOR' : '"${COLOR}"'})
            env.Program('foo.c')
       

Now SCons + Now SCons will use values of red, green or blue regardless of how the user spells those values on the command line:

        % 
        % scons -Q COLOR=Red foo.o
         cc -o foo.o -c -DCOLOR="red" foo.c
         % scons -Q COLOR=nAvY foo.o
         cc -o foo.o -c -DCOLOR="blue" foo.c
         % scons -Q COLOR=GREEN foo.o
         cc -o foo.o -c -DCOLOR="green" foo.c
       

Multiple Values From a List: the ListOption9.9.3. Multiple Values From a List: the ListOption Build Option

Another way in which you might want to allow users +> + Another way in which you might want to allow users to control build option is to specify a list of one or more legal values. - SCons supports this through the ListOptionSCons supports this through the ListOption function. If, for example, we want a user to be able to set a - COLORSCOLORS option to one or more of the legal list of values:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(ListOption('COLORS', 'List of colors', 0,
                                ['red', 'green', 'blue']))
            env = Environment(options = opts,
                              CPPDEFINES={'COLORS' : '"${COLORS}"'})
            env.Program('foo.c')
       

A user can now specify a comma-separated list +> + A user can now specify a comma-separated list of legal values, which will get translated into a space-separated list for passing to the any build commands:

        % 
        % scons -Q COLORS=red,blue foo.o
         cc -o foo.o -c -DCOLORS="red blue" foo.c
         % scons -Q COLORS=blue,green,red foo.o
         cc -o foo.o -c -DCOLORS="blue green red" foo.c
       

In addition, the ListOption + In addition, the ListOption function allows the user to specify explicit keywords of all or none to select all of the legal values, or none of them, respectively:

        % 
        % scons -Q COLORS=all foo.o
         cc -o foo.o -c -DCOLORS="red green blue" foo.c
         % scons -Q COLORS=none foo.o
         cc -o foo.o -c -DCOLORS="" foo.c
       

And, of course, an illegal value +> + And, of course, an illegal value still generates an error message:

        % 
        % scons -Q COLORS=magenta foo.o
         
         scons: *** Error converting option: COLORS
         Invalid value(s) for option: magenta
-        File "/home/my/project/SConstruct", line 5, in ?
+        File "/home/my/project/SConstruct", line 5, in <module>
       

Path Names: the PathOption9.9.4. Path Names: the PathOption Build Option

SCons supports a PathOption + SCons supports a PathOption function to make it easy to create a build option to control an expected path name. If, for example, you need to define a variable in the preprocessor - that control the location of a + that controls the location of a configuration file:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(PathOption('CONFIG',
                                'Path to configuration file',
                                '/etc/my_config'))
@@ -11230,91 +10622,67 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'CONFIG_FILE' : '"$CONFIG"'})
            env.Program('foo.c')
       

This then allows the user to - override the CONFIG + This then allows the user to + override the CONFIG build option on the command line as necessary:

        % 
        % scons -Q foo.o
         cc -o foo.o -c -DCONFIG_FILE="/etc/my_config" foo.c
         % scons -Q CONFIG=/usr/local/etc/other_config foo.o
         scons: `foo.o' is up to date.
       

By default, PathOption + By default, PathOption checks to make sure that the specified path exists and generates an error if it doesn't:

        % 
        % scons -Q CONFIG=/does/not/exist foo.o
         
         scons: *** Path for option CONFIG does not exist: /does/not/exist
-        File "/home/my/project/SConstruct", line 6, in ?
+        File "/home/my/project/SConstruct", line 6, in <module>
       

PathOption + PathOption provides a number of methods that you can use to change this behavior. If you want to ensure that any specified paths are, in fact, files and not directories, - use the PathOption.PathIsFilePathOption.PathIsFile method:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(PathOption('CONFIG',
                                'Path to configuration file',
                                '/etc/my_config',
@@ -11323,27 +10691,19 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'CONFIG_FILE' : '"$CONFIG"'})
            env.Program('foo.c')
       

Conversely, to ensure that any specified paths are +> + Conversely, to ensure that any specified paths are directories and not files, - use the PathOption.PathIsDirPathOption.PathIsDir method:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(PathOption('DBDIR',
                                'Path to database directory',
                                '/var/my_dbdir',
@@ -11352,29 +10712,21 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'DBDIR' : '"$DBDIR"'})
            env.Program('foo.c')
       

If you want to make sure that any specified paths +> + If you want to make sure that any specified paths are directories, and you would like the directory created if it doesn't already exist, - use the PathOption.PathIsDirCreatePathOption.PathIsDirCreate method:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(PathOption('DBDIR',
                                'Path to database directory',
                                '/var/my_dbdir',
@@ -11383,28 +10735,20 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'DBDIR' : '"$DBDIR"'})
            env.Program('foo.c')
       

Lastly, if you don't care whether the path exists, +> + Lastly, if you don't care whether the path exists, is a file, or a directory, - use the PathOption.PathAcceptPathOption.PathAccept method to accept any path that the user supplies:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(PathOption('OUTPUT',
                                'Path to output file or directory',
                                None,
@@ -11413,54 +10757,46 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'OUTPUT' : '"$OUTPUT"'})
            env.Program('foo.c')
       

Enabled/Disabled Path Names: the PackageOption9.9.5. Enabled/Disabled Path Names: the PackageOption Build Option

Sometimes you want to give users +> + Sometimes you want to give users even more control over a path name variable, allowing them to explicitly enable or disable the path name by using yes or no keywords, in addition to allow them to supply an explicit path name. - SCons supports the PackageOptionSCons supports the PackageOption function to support this:

           opts = Options('custom.py')
+CLASS="programlisting"
+>
           opts = Options('custom.py')
            opts.Add(PackageOption('PACKAGE',
                                   'Location package',
                                   '/opt/location'))
@@ -11468,16 +10804,14 @@ CLASS="PROGRAMLISTING"
                              CPPDEFINES={'PACKAGE' : '"$PACKAGE"'})
            env.Program('foo.c')
       

When the + When the SConscript file uses the PackageOption file uses the PackageOption funciton, user can now still use the default or supply an overriding path name, @@ -11488,88 +10822,74 @@ CLASS="FUNCTION" or disabled:

        % 
        % scons -Q foo.o
         cc -o foo.o -c -DPACKAGE="/opt/location" foo.c
         % scons -Q PACKAGE=/usr/local/location foo.o
         cc -o foo.o -c -DPACKAGE="/usr/local/location" foo.c
         % scons -Q PACKAGE=yes foo.o
         cc -o foo.o -c -DPACKAGE="True" foo.c
         % scons -Q PACKAGE=no foo.o
         cc -o foo.o -c -DPACKAGE="False" foo.c
       

Adding Multiple Command-Line Build Options at Once9.10. Adding Multiple Command-Line Build Options at Once

Lastly, SCons + Lastly, SCons provides a way to add - multiple build options to an OptionsOptions object at once. - Instead of having to call the AddAdd method multiple times, - you can call the AddOptionsAddOptions method with a list of build options to be added to the object. Each build option is specified as either a tuple of arguments, - just like you'd pass to the AddAdd method itself, or as a call to one of the canned functions for pre-packaged command-line build options. in any order:

        opts = Options()
+CLASS="programlisting"
+>
        opts = Options()
         opts.AddOptions(
             ('RELEASE', 'Set to 1 to build for release', 0),
             ('CONFIG', 'Configuration file', '/etc/my_config'),
@@ -11587,92 +10907,77 @@ CLASS="PROGRAMLISTING"
             PathOption('qtdir', 'where the root of Qt is installed', qtdir),
         )
     


Providing Build Help: the HelpChapter 10. Providing Build Help: the Help Function

It's often very useful to be able to give +> + It's often very useful to be able to give users some help that describes the specific targets, build options, etc., that can be used for your build. - SCons provides the HelpSCons provides the Help function to allow you to specify this help text:

      Help("""
+CLASS="programlisting"
+>
      Help("""
       Type: 'scons program' to build the production program,
             'scons debug' to build the debug version.
       """)
    

(Note the above use of the Python triple-quote syntax, +> + (Note the above use of the Python triple-quote syntax, which comes in very handy for specifying multi-line strings like help text.)

When the + When the SConstruct or SConscript files - contain such a call to the HelpHelp function, the specified help text will be displayed in response to - the SConsSCons -h option:

      % 
      % scons -h
       scons: Reading SConscript files ...
@@ -11683,83 +10988,68 @@ CLASS="USERINPUT"
       
       Use scons -H for help about command-line options.
    

The + The SConscript files may contain - multiple calls to the HelpHelp function, in which case the specified text(s) will be concatenated when displayed. This allows you to split up the help text across multiple SConscript files. In this situation, the order in which the SConscript files are called - will determine the order in which the HelpHelp functions are called, which will determine the order in which the various bits of text will get concatenated.

Another use would be to make the help text conditional +> + Another use would be to make the help text conditional on some variable. For example, suppose you only want to display a line about building a Windows-only version of a program when actually run on Windows. The following SConstruct file:

      env = Environment()
+CLASS="programlisting"
+>
      env = Environment()
 
       Help("\nType: 'scons program' to build the production program.\n")
 
       if env['PLATFORM'] == 'win32':
           Help("\nType: 'scons windebug' to build the Windows debug version.\n")
    

Will display the completely help text on Windows: +> + Will display the complete help text on Windows:

      C:\>
      C:\>scons -h
       scons: Reading SConscript files ...
@@ -11771,23 +11061,15 @@ CLASS="USERINPUT"
       
       Use scons -H for help about command-line options.
    

But only show the relevant option on a Linux or UNIX system: +> + But only show the relevant option on a Linux or UNIX system:

      % 
      % scons -h
       scons: Reading SConscript files ...
@@ -11797,255 +11079,200 @@ CLASS="USERINPUT"
       
       Use scons -H for help about command-line options.
    

If there is no Help + If there is no Help text in the SConstruct or SConscript files, - SConsSCons will revert to displaying its - standard list that describes the SConsSCons command-line options. This list is also always displayed whenever the -H option is used.


Installing Files in Other Directories: the InstallChapter 11. Installing Files in Other Directories: the Install Builder

Once a program is built, +> + Once a program is built, it is often appropriate to install it in another directory for public use. - You use the InstallInstall method to arrange for a program, or any other file, to be copied into a destination directory:

     env = Environment()
+CLASS="programlisting"
+>
     env = Environment()
      hello = env.Program('hello.c')
      env.Install('/usr/bin', hello)
   

Note, however, that installing a file is +> + Note, however, that installing a file is still considered a type of file "build." This is important when you remember that - the default behavior of SConsSCons is to build files in or below the current directory. If, as in the example above, you are installing files in a directory outside of the top-level SConstruct file's directory tree, you must specify that directory (or a higher directory, such as /) for it to install anything there:

     % 
     % scons -Q
      cc -o hello.o -c hello.c
      cc -o hello hello.o
      % scons -Q /usr/bin
      Install file: "hello" as "/usr/bin/hello"
   

It can, however, be cumbersome to remember +> + It can, however, be cumbersome to remember (and type) the specific destination directory in which the program (or any other file) should be installed. - This is an area where the AliasAlias function comes in handy, allowing you, for example, to create a pseudo-target named install that can expand to the specified destination directory:

     env = Environment()
+CLASS="programlisting"
+>
     env = Environment()
      hello = env.Program('hello.c')
      env.Install('/usr/bin', hello)
      env.Alias('install', '/usr/bin')
   

This then yields the more natural +> + This then yields the more natural ability to install the program in its destination as follows:

     % 
     % scons -Q
      cc -o hello.o -c hello.c
      cc -o hello hello.o
      % scons -Q install
      Install file: "hello" as "/usr/bin/hello"
   

Installing Multiple Files in a Directory11.1. Installing Multiple Files in a Directory

You can install multiple files into a directory - simply by calling the Install + You can install multiple files into a directory + simply by calling the Install function multiple times:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        hello = env.Program('hello.c')
        goodbye = env.Program('goodbye.c')
        env.Install('/usr/bin', hello)
        env.Install('/usr/bin', goodbye)
        env.Alias('install', '/usr/bin')
     

Or, more succinctly, listing the multiple input +> + Or, more succinctly, listing the multiple input files in a list (just like you can do with any other builder):

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        hello = env.Program('hello.c')
        goodbye = env.Program('goodbye.c')
        env.Install('/usr/bin', [hello, goodbye])
        env.Alias('install', '/usr/bin')
     

Either of these two examples yields: +> + Either of these two examples yields:

       % 
       % scons -Q install
        cc -o goodbye.o -c goodbye.c
@@ -12055,109 +11282,85 @@ CLASS="USERINPUT"
        cc -o hello hello.o
        Install file: "hello" as "/usr/bin/hello"
     

Installing a File Under a Different Name11.2. Installing a File Under a Different Name

The Install + The Install method preserves the name of the file when it is copied into the destination directory. If you need to change the name of the file - when you copy it, use the InstallAsInstallAs function:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        hello = env.Program('hello.c')
        env.InstallAs('/usr/bin/hello-new', hello)
        env.Alias('install', '/usr/bin')
     

This installs the + This installs the hello program with the name hello-new as follows:

       % 
       % scons -Q install
        cc -o hello.o -c hello.c
        cc -o hello hello.o
        Install file: "hello" as "/usr/bin/hello-new"
     

Installing Multiple Files Under Different Names11.3. Installing Multiple Files Under Different Names

Lastly, if you have multiple files that all +> + Lastly, if you have multiple files that all need to be installed with different file names, - you can either call the InstallAsInstallAs function multiple times, or as a shorthand, you can supply same-length lists - for the both the target and source arguments: + for both the target and source arguments:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        hello = env.Program('hello.c')
        goodbye = env.Program('goodbye.c')
        env.InstallAs(['/usr/bin/hello-new',
@@ -12165,29 +11368,21 @@ CLASS="PROGRAMLISTING"
                      [hello, goodbye])
        env.Alias('install', '/usr/bin')
     

In this case, the InstallAs + In this case, the InstallAs function loops through both lists simultaneously, and copies each source file into its corresponding target file name:

       % 
       % scons -Q install
        cc -o goodbye.o -c goodbye.c
@@ -12197,104 +11392,95 @@ CLASS="USERINPUT"
        cc -o hello hello.o
        Install file: "hello" as "/usr/bin/hello-new"
     

Platform-Independent File System Manipulation

Chapter 12. Platform-Independent File System Manipulation

SCons + SCons provides a number of platform-independent functions, called factories, that perform common file system manipulations like copying, moving or deleting files and directories, or making directories. These functions are factories because they don't perform the action at the time they're called, they each return an Action object that can be executed at the appropriate time.


Copying Files or Directories: The Copy12.1. Copying Files or Directories: The Copy Factory

Suppose you want to arrange to make a copy of a file, - and the Install + Suppose you want to arrange to make a copy of a file, + and the Install builder isn't appropriate because it may make a hard link on POSIX systems. - One way would be to use the CopyCopy action factory - in conjunction with the CommandCommand builder:

        Command("file.out", "file.in", Copy("$TARGET", "$SOURCE"))
+CLASS="programlisting"
+>
        Command("file.out", "file.in", Copy("$TARGET", "$SOURCE"))
     

Notice that the action returned by the Copy + Notice that the action returned by the Copy factory will expand the $TARGET$TARGET and $SOURCE$SOURCE strings at the time file.out is built, and that the order of the arguments @@ -12302,78 +11488,54 @@ CLASS="FILENAME" target first, followed by source:

       % 
       % scons -Q
        Copy("file.out", "file.in")
     

You can, of course, name a file explicitly - instead of using $TARGET or $SOURCE + You can, of course, name a file explicitly + instead of using $TARGET or $SOURCE:

      Command("file.out", [], Copy("$TARGET", "file.in"))
+CLASS="programlisting"
+>
      Command("file.out", [], Copy("$TARGET", "file.in"))
     

Which executes as: +> + Which executes as:

      % 
      % scons -Q
       Copy("file.out", "file.in")
     

The usefulness of the Copy + The usefulness of the Copy factory becomes more apparent when you use it in a list of actions - passed to the CommandCommand builder. For example, suppose you needed to run a file through a utility that only modifies files in-place, @@ -12382,96 +11544,74 @@ CLASS="FUNCTION" to a temporary file name, run the utility, and then copy the modified temporary file to the target, - which the CopyCopy factory makes extremely easy:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
                 Copy("tempfile", "$SOURCE"),
                 "modify tempfile",
                 Copy("$TARGET", "tempfile"),
               ])
     

The output then looks like: +> + The output then looks like:

      % 
      % scons -Q
       Copy("tempfile", "file.in")
       modify tempfile
       Copy("file.out", "tempfile")
     

Deleting Files or Directories: The Delete12.2. Deleting Files or Directories: The Delete Factory

If you need to delete a file, - then the Delete + If you need to delete a file, + then the Delete factory can be used in much the same way as - the CopyCopy factory. For example, if we want to make sure that the temporary file in our last example doesn't exist before we copy to it, - we could add DeleteDelete to the beginning of the command list:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
                 Delete("tempfile"),
                 Copy("tempfile", "$SOURCE"),
@@ -12479,23 +11619,15 @@ CLASS="PROGRAMLISTING"
                 Copy("$TARGET", "tempfile"),
               ])
     

When then executes as follows: +> + When then executes as follows:

      % 
      % scons -Q
       Delete("tempfile")
@@ -12503,245 +11635,188 @@ CLASS="USERINPUT"
       modify tempfile
       Copy("file.out", "tempfile")
     

Of course, like all of these + Of course, like all of these Action factories, - the DeleteDelete factory also expands $TARGET$TARGET and $SOURCE$SOURCE variables appropriately. For example:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
                 Delete("$TARGET"),
                 Copy("$TARGET", "$SOURCE")
               ])
     

Executes as: +> + Executes as:

      % 
      % scons -Q
       Delete("file.out")
       Copy("file.out", "file.in")
     

(Note, however, that you typically don't need to - call the Delete + (Note, however, that you typically don't need to + call the Delete factory explicitly in this way; - by default, SConsSCons deletes its target(s) for you before executing any action.


Moving (Renaming) Files or Directories: The Move12.3. Moving (Renaming) Files or Directories: The Move Factory

The Move + The Move factory allows you to rename a file or directory. For example, if we don't want to copy the temporary file, - we could: + we could use:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
                 Copy("tempfile", "$SOURCE"),
                 "modify tempfile",
                 Move("$TARGET", "tempfile"),
               ])
     

Which would execute as: +> + Which would execute as:

      % 
      % scons -Q
       Copy("tempfile", "file.in")
       modify tempfile
       Move("file.out", "tempfile")
     

Updating the Modification Time of a File: The Touch12.4. Updating the Modification Time of a File: The Touch Factory

If you just need to update the +> + If you just need to update the recorded modification time for a file, - use the TouchTouch factory:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
-                Copy("tempfile", "$SOURCE"),
-                "modify tempfile",
-                Move("$TARGET", "tempfile"),
+                Copy("$TARGET", "$SOURCE"),
+                Touch("$TARGET"),
               ])
     

Which executes as: +> + Which executes as:

      % 
      % scons -Q
-      Copy("tempfile", "file.in")
-      modify tempfile
-      Move("file.out", "tempfile")
+      Copy("file.out", "file.in")
+      Touch("file.out")
     

Creating a Directory: The Mkdir12.5. Creating a Directory: The Mkdir Factory

If you need to create a directory, - use the Mkdir + If you need to create a directory, + use the Mkdir factory. For example, if we need to process a file in a temporary directory in which the processing tool will create other files that we don't care about, - you could: + you could use:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
                 Delete("tempdir"),
                 Mkdir("tempdir"),
@@ -12751,23 +11826,15 @@ CLASS="PROGRAMLISTING"
                 Delete("tempdir"),
               ])
     

Which executes as: +> + Which executes as:

      % 
      % scons -Q
       Delete("tempdir")
@@ -12777,26 +11844,24 @@ CLASS="USERINPUT"
       Move("file.out", "tempdir/output_file")
       scons: *** [file.out] No such file or directory
     

Changing File or Directory Permissions: The Chmod12.6. Changing File or Directory Permissions: The Chmod Factory

To change permissions on a file or directory, - use the Chmod + To change permissions on a file or directory, + use the Chmod factory. The permission argument uses POSIX-style permission bits and should typically @@ -12804,119 +11869,89 @@ CLASS="FUNCTION" not decimal, number:

      Command("file.out", "file.in",
+CLASS="programlisting"
+>
      Command("file.out", "file.in",
               [
                 Copy("$TARGET", "$SOURCE"),
                 Chmod("$TARGET", 0755),
               ])
     

Which executes: +> + Which executes:

      % 
      % scons -Q
       Copy("file.out", "file.in")
       Chmod("file.out", 0755)
     

Executing an action immediately: the Execute12.7. Executing an action immediately: the Execute Function

We've been showing you how to use + We've been showing you how to use Action factories - in the CommandCommand function. You can also execute an Action returned by a factory (or actually, any Action) at the time the SConscript file is read - by wrapping it up in the ExecuteExecute function. For example, if we need to make sure that a directory exists before we build any targets,

      Execute(Mkdir('/tmp/my_temp_directory'))
+CLASS="programlisting"
+>
      Execute(Mkdir('/tmp/my_temp_directory'))
     

Notice that this will +> + Notice that this will create the directory while the SConscript file is being read:

      % 
      % scons
       scons: Reading SConscript files ...
@@ -12926,152 +11961,138 @@ CLASS="USERINPUT"
       scons: `.' is up to date.
       scons: done building targets.
     

If you're familiar with Python, +> + If you're familiar with Python, you may wonder why you would want to use this instead of just calling the native Python - os.mkdir()os.mkdir() function. - The advantage here is that the MkdirMkdir action will behave appropriately if the user - specifies the SCons -nSCons -n or - -q-q options--that is, it will print the action but not actually - make the directory when -n-n is specified, or make the directory but not print the action - when -q-q is specified.


Preventing Removal of Targets

Chapter 13. Preventing Removal of Targets

There are two occasions when SCons + There are two occasions when SCons will, by default, remove target files. - The first is when SConsSCons determines that an target file needs to be rebuilt and removes the existing version of the target before executing - The second is when SConsSCons is invoked with the -c option to "clean" a tree of its built targets. These behaviours can be suppressed with the - Precious and NoCleanPrecious and NoClean functions, respectively.


Preventing target removal during build: the Precious13.1. Preventing target removal during build: the Precious Function

By default, SCons + By default, SCons removes targets before building them. Sometimes, however, this is not what you want. For example, you may want to update a library incrementally, not by having it deleted and then rebuilt from all of the constituent object files. In such cases, you can use the - PreciousPrecious method to prevent - SConsSCons from removing the target before it is built:

        env = Environment(RANLIBCOM='')
+CLASS="programlisting"
+>
        env = Environment(RANLIBCOM='')
         lib = env.Library('foo', ['f1.c', 'f2.c', 'f3.c'])
         env.Precious(lib)
     

Although the output doesn't look any different, - SCons + Although the output doesn't look any different, + SCons does not, in fact, delete the target library before rebuilding it:

        % 
        % scons -Q
         cc -o f1.o -c f1.c
@@ -13079,45 +12100,44 @@ CLASS="USERINPUT"
         cc -o f3.o -c f3.c
         ar rc libfoo.a f1.o f2.o f3.o
     

SCons will, however, still delete files marked as Precious + SCons will, however, still delete files marked as Precious when the -c option is used.


Preventing target removal during clean: the NoClean13.2. Preventing target removal during clean: the NoClean Function

By default, SCons + By default, SCons removes all built targets when invoked with the -c option to clean a source tree - of built tragets. + of built targets. Sometimes, however, this is not what you want. For example, you may want to remove only intermediate generated files (such as object files), @@ -13125,49 +12145,35 @@ CLASS="LITERAL" (the libraries) untouched. - In such cases, you can use the NoClean method to prevent SConsNoClean method to prevent SCons from removing a target during a clean:

        env = Environment(RANLIBCOM='')
+CLASS="programlisting"
+>
        env = Environment(RANLIBCOM='')
         lib = env.Library('foo', ['f1.c', 'f2.c', 'f3.c'])
         env.NoClean(lib)
     

Notice that the + Notice that the libfoo.a is not listed as a removed file:

        % 
        % scons -Q
         cc -o f1.o -c f1.c
@@ -13175,7 +12181,7 @@ CLASS="USERINPUT"
         cc -o f3.o -c f3.c
         ar rc libfoo.a f1.o f2.o f3.o
         % scons -c
         scons: Reading SConscript files ...
@@ -13186,30 +12192,28 @@ CLASS="USERINPUT"
         Removed f3.o
         scons: done cleaning targets.
     

Removing additional files during clean: the Clean13.3. Removing additional files during clean: the Clean Function

There may be additional files that you want removed +> + There may be additional files that you want removed when the -c option is used, - but which SConsSCons doesn't know about because they're not normal target files. For example, perhaps a command you invoke @@ -13222,269 +12226,234 @@ CLASS="APPLICATION"

You can use the Clean + You can use the Clean function to arrange for additional files to be removed when the -c option is used. - Notice, however, that the CleanClean function takes two arguments, - and the second argument is the name of the additional file you want cleaned (foo.log in this example):

        t = Command('foo.out', 'foo.in', 'build -o $TARGET $SOURCE')
+CLASS="programlisting"
+>
        t = Command('foo.out', 'foo.in', 'build -o $TARGET $SOURCE')
         Clean(t, 'foo.log')
     

The first argument is the target with which you want +> + The first argument is the target with which you want the cleaning of this additional file associated. In the above example, we've used the return value from the - CommandCommand function, which represents the foo.out target. Now whenever the foo.out target is cleaned by the -c option, the foo.log file will be removed as well:

        % 
        % scons -Q
         build -o foo.out foo.in
         % scons -Q -c
         Removed foo.out
         Removed foo.log
     

Hierarchical Builds

Chapter 14. Hierarchical Builds

The source code for large software projects +> + The source code for large software projects rarely stays in a single directory, but is nearly always divided into a hierarchy of directories. - Organizing a large software build using SConsSCons involves creating a hierarchy of build scripts using the SConscript function.


14.1. SConscript Files

As we've already seen, +> + As we've already seen, the build script at the top of the tree is called SConstruct. The top-level SConstruct file can use the SConscript function to include other subsidiary scripts in the build. These subsidiary scripts can, in turn, use the SConscript function to include still other scripts in the build. By convention, these subsidiary scripts are usually named SConscript. For example, a top-level SConstruct file might arrange for four subsidiary scripts to be included in the build as follows:

      SConscript(['drivers/display/SConscript',
+CLASS="programlisting"
+>
      SConscript(['drivers/display/SConscript',
                   'drivers/mouse/SConscript',
                   'parser/SConscript',
                   'utilities/SConscript'])
     

In this case, the + In this case, the SConstruct file lists all of the SConscript files in the build explicitly. (Note, however, that not every directory in the tree necessarily has an SConscript file.) Alternatively, the drivers subdirectory might contain an intermediate SConscript file, in which case the SConscript call in the top-level SConstruct file would look like:

      SConscript(['drivers/SConscript',
+CLASS="programlisting"
+>
      SConscript(['drivers/SConscript',
                   'parser/SConscript',
                   'utilities/SConscript'])
     

And the subsidiary + And the subsidiary SConscript file in the drivers subdirectory would look like:

      SConscript(['display/SConscript',
+CLASS="programlisting"
+>
      SConscript(['display/SConscript',
                   'mouse/SConscript'])
     

Whether you list all of the + Whether you list all of the SConscript files in the top-level SConstruct file, or place a subsidiary SConscript file in intervening directories, @@ -13494,32 +12463,33 @@ CLASS="FILENAME"


Path Names Are Relative to the 14.2. Path Names Are Relative to the SConscript Directory

Subsidiary + Subsidiary SConscript files make it easy to create a build hierarchy because all of the file and directory names in a subsidiary SConscript files are interpreted relative to the directory in which the SConscript file lives. Typically, this allows the SConscript file containing the instructions to build a target file @@ -13531,93 +12501,64 @@ CLASS="FILENAME"

For example, suppose we want to build two programs +> + For example, suppose we want to build two programs prog1 and prog2 in two separate directories with the same names as the programs. One typical way to do this would be with a top-level SConstruct file like this:

      SConscript(['prog1/SConscript',
+CLASS="programlisting"
+>
      SConscript(['prog1/SConscript',
                   'prog2/SConscript'])
     

And subsidiary + And subsidiary SConscript files that look like this:

      env = Environment()
+CLASS="programlisting"
+>
      env = Environment()
       env.Program('prog1', ['main.c', 'foo1.c', 'foo2.c'])
       

And this: +> + And this:

      env = Environment()
+CLASS="programlisting"
+>
      env = Environment()
       env.Program('prog2', ['main.c', 'bar1.c', 'bar2.c'])
       

Then, when we run SCons + Then, when we run SCons in the top-level directory, our build looks like:

       % 
       % scons -Q
        cc -o prog1/foo1.o -c prog1/foo1.c
@@ -13629,25 +12570,23 @@ CLASS="USERINPUT"
        cc -o prog2/main.o -c prog2/main.c
        cc -o prog2/prog2 prog2/main.o prog2/bar1.o prog2/bar2.o
     

Notice the following: +> + Notice the following: First, you can have files with the same names in multiple directories, like main.c in the above example. - Second, unlike standard recursive use of MakeMake, - SConsSCons stays in the top-level directory (where the SConstruct file lives) and issues commands that use the path names @@ -13657,93 +12596,80 @@ CLASS="FILENAME"


Top-Level Path Names in Subsidiary 14.3. Top-Level Path Names in Subsidiary SConscript Files

If you need to use a file from another directory, +> + If you need to use a file from another directory, it's sometimes more convenient to specify the path to a file in another directory from the top-level SConstruct directory, even when you're using that file in a subsidiary SConscript file in a subdirectory. - You can tell SConsSCons to interpret a path name as relative to the top-level SConstruct directory, not the local directory of the SConscript file, by appending a # (hash mark) to the beginning of the path name:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        env.Program('prog', ['main.c', '#lib/foo1.c', 'foo2.c'])
     

In this example, +> + In this example, the lib directory is directly underneath the top-level SConstruct directory. If the above SConscript file is in a subdirectory named src/prog, the output would look like:

       % 
       % scons -Q
        cc -o lib/foo1.o -c lib/foo1.c
@@ -13751,20 +12677,16 @@ CLASS="USERINPUT"
        cc -o src/prog/main.o -c src/prog/main.c
        cc -o src/prog/prog src/prog/main.o lib/foo1.o src/prog/foo2.o
     

(Notice that the + (Notice that the lib/foo1.o object file is built in the same directory as its source file. See the chapter called Separating Source and Build DirectoriesChapter 15, below, for information about how to build the object file in a different subdirectory.) @@ -13772,46 +12694,33 @@ HREF="#CHAP-SEPARATE"


Absolute Path Names14.4. Absolute Path Names

Of course, you can always specify +> + Of course, you can always specify an absolute path name for a file--for example:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        env.Program('prog', ['main.c', '/usr/joe/lib/foo1.c', 'foo2.c'])
     

Which, when executed, would yield: +> + Which, when executed, would yield:

       % 
       % scons -Q
        cc -o src/prog/foo2.o -c src/prog/foo2.c
@@ -13819,21 +12728,17 @@ CLASS="USERINPUT"
        cc -o /usr/joe/lib/foo1.o -c /usr/joe/lib/foo1.c
        cc -o src/prog/prog src/prog/main.o /usr/joe/lib/foo1.o src/prog/foo2.o
     

(As was the case with top-relative path names, +> + (As was the case with top-relative path names, notice that the /usr/joe/lib/foo1.o object file is built in the same directory as its source file. See the chapter called Separating Source and Build DirectoriesChapter 15, below, for information about how to build the object file in a different subdirectory.) @@ -13841,26 +12746,27 @@ HREF="#CHAP-SEPARATE"


Sharing Environments (and Other Variables) Between 14.5. Sharing Environments (and Other Variables) Between SConscript Files

In the previous example, +> + In the previous example, each of the subsidiary SConscript files created its own construction environment - by calling EnvironmentEnvironment separately. This obviously works fine, but if each program must be built @@ -13869,25 +12775,29 @@ CLASS="FUNCTION" separate construction environments in the same way over and over in each subsidiary SConscript file.

SCons supports the ability to + SCons supports the ability to export variables from a parent SConscript file to its subsidiary SConscript files, which allows you to share common initialized @@ -13895,231 +12805,177 @@ CLASS="FILENAME"


Exporting Variables14.5.1. Exporting Variables

There are two ways to export a variable, +> + There are two ways to export a variable, such as a construction environment, from an SConscript file, so that it may be used by other SConscript files. - First, you can call the ExportExport function with a list of variables, - or a string white-space separated variable names. - Each call to ExportExport adds one or more variables to a global list of variables that are available for import by other SConscript files.

        env = Environment()
+CLASS="programlisting"
+>
        env = Environment()
         Export('env')
       

You may export more than one variable name at a time: +> + You may export more than one variable name at a time:

        env = Environment()
+CLASS="programlisting"
+>
        env = Environment()
         debug = ARGUMENTS['debug']
         Export('env', 'debug')
       

Because white space is not legal in Python variable names, - the Export + Because white space is not legal in Python variable names, + the Export function will even automatically split a string into separate names for you:

        Export('env debug')
+CLASS="programlisting"
+>
        Export('env debug')
       

Second, you can specify a list of +> + Second, you can specify a list of variables to export as a second argument to the SConscript function call:

        SConscript('src/SConscript', 'env')
+CLASS="programlisting"
+>
        SConscript('src/SConscript', 'env')
       

Or as the exports + Or as the exports keyword argument:

        SConscript('src/SConscript', exports='env')
+CLASS="programlisting"
+>
        SConscript('src/SConscript', exports='env')
       

These calls export the specified variables +> + These calls export the specified variables to only the listed SConscript files. You may, however, specify more than one SConscript file in a list:

        SConscript(['src1/SConscript',
+CLASS="programlisting"
+>
        SConscript(['src1/SConscript',
                     'src2/SConscript'], exports='env')
       

This is functionally equivalent to +> + This is functionally equivalent to calling the SConscript function - multiple times with the same exportsexports argument, one per SConscript file.


Importing Variables14.5.2. Importing Variables

Once a variable has been exported from a calling +> + Once a variable has been exported from a calling SConscript file, it may be used in other SConscript files - by calling the ImportImport function:

        Import('env')
+CLASS="programlisting"
+>
        Import('env')
         env.Program('prog', ['prog.c'])
       

The Import + The Import call makes the env construction environment available to the SConscript file, after which the variable can be used to build @@ -14127,84 +12983,61 @@ CLASS="FILENAME"

Like the Export + Like the Export function, - the ImportImport function can be used with multiple variable names:

        Import('env', 'debug')
+CLASS="programlisting"
+>
        Import('env', 'debug')
         env = env.Clone(DEBUG = debug)
         env.Program('prog', ['prog.c'])
       

And the Import + And the Import function will similarly split a string along white-space into separate variable names:

        Import('env debug')
+CLASS="programlisting"
+>
        Import('env debug')
         env = env.Clone(DEBUG = debug)
         env.Program('prog', ['prog.c'])
       

Lastly, as a special case, +> + Lastly, as a special case, you may import all of the variables that have been exported by supplying an asterisk - to the ImportImport function:

        Import('*')
+CLASS="programlisting"
+>
        Import('*')
         env = env.Clone(DEBUG = debug)
         env.Program('prog', ['prog.c'])
       

If you're dealing with a lot of + If you're dealing with a lot of SConscript files, this can be a lot simpler than keeping @@ -14213,21 +13046,22 @@ CLASS="FILENAME"


Returning Values From an 14.5.3. Returning Values From an SConscript File

Sometimes, you would like to be able to +> + Sometimes, you would like to be able to use information from a subsidiary SConscript file in some way. For example, @@ -14235,50 +13069,45 @@ CLASS="FILENAME" library from source files scattered throughout a number of subsidiary SConscript files. - You can do this by using the ReturnReturn function to return values from the subsidiary SConscript files to the calling file.

If, for example, we have two subdirectories - foo and bar + If, for example, we have two subdirectories + foo and bar that should each contribute a source file to a Library, what we'd like to be able to do is collect the object files from the subsidiary SConscript calls like this:

          env = Environment()
+CLASS="programlisting"
+>
          env = Environment()
           Export('env')
           objs = []
           for subdir in ['foo', 'bar']:
@@ -14286,61 +13115,45 @@ CLASS="PROGRAMLISTING"
               objs.append(o)
           env.Library('prog', objs)
       

We can do this by using the Return + We can do this by using the Return function in the foo/SConscript file like this:

          Import('env')
+CLASS="programlisting"
+>
          Import('env')
           obj = env.Object('foo.c')
           Return('obj')
         

(The corresponding +> + (The corresponding bar/SConscript file should be pretty obvious.) - Then when we run SConsSCons, the object files from the subsidiary subdirectories are all correctly archived in the desired library:

        % 
        % scons -Q
         cc -o bar/bar.o -c bar/bar.c
@@ -14348,269 +13161,283 @@ CLASS="USERINPUT"
         ar rc libprog.a foo/foo.o bar/bar.o
         ranlib libprog.a
       

Separating Source and Build Directories

Chapter 15. Separating Source and Build Directories

It's often useful to keep any built files completely +> + It's often useful to keep any built files completely separate from the source files. - This is usually done by creating one or more separate - build directoriesSCons, this is usually done by creating one or more separate + variant directory trees that are used to hold the built objects files, libraries, and executable programs, etc. - for a specific flavor of build. - SConsSCons provides two ways to do this, one through the SConscript function that we've already seen, - and the second through a more flexible BuildDirVariantDir function. +

+ One historical note: the VariantDir function + used to be called BuildDir. + That name is still supported + but has been deprecated + because the SCons functionality + differs from the model of a "build directory" + implemented by other build systems like the GNU Autotools. +


Specifying a Build Directory as Part of an 15.1. Specifying a Variant Directory Tree as Part of an SConscript Call

The most straightforward way to establish a build directory +> + The most straightforward way to establish a variant directory tree uses the fact that the usual way to set up a build hierarchy is to have an SConscript file in the source subdirectory. - If you then pass a build_dirvariant_dir argument to the SConscript function call:

      SConscript('src/SConscript', build_dir='build')
+CLASS="programlisting"
+>
      SConscript('src/SConscript', variant_dir='build')
     

SCons + SCons will then build all of the files in the build subdirectory:

      % 
      % ls src
       SConscript  hello.c
       % scons -Q
       cc -o build/hello.o -c build/hello.c
       cc -o build/hello build/hello.o
       % ls build
       SConscript  hello  hello.c  hello.o
     

But wait a minute--what's going on here? - SCons + But wait a minute--what's going on here? + SCons created the object file build/hello.o in the build subdirectory, as expected. But even though our hello.c file lives in the src subdirectory, - SConsSCons has actually compiled a build/hello.c file to create the object file.

What's happened is that SCons has + What's happened is that SCons has duplicated the hello.c file from the src subdirectory to the build subdirectory, and built the program from there. - The next section explains why SConsSCons does this.


Why SCons Duplicates Source Files in a Build Directory15.2. Why SCons Duplicates Source Files in a Variant Directory Tree

SCons duplicates source files in build directories +> + SCons duplicates source files in variant directory trees because it's the most straightforward way to guarantee a correct build - regardless of include-file directory paths, relative references between files, or tool support for putting files in different locations, - and the SConsSCons philosophy is to, by default, guarantee a correct build in all cases.

The most direct reason to duplicate source files - in build directories +> + The most direct reason to duplicate source files + in variant directories is simply that some tools (mostly older vesions) are written to only build their output files in the same directory as the source files. In this case, the choices are either to build the output file in the source directory - and move it to the build directory, - or to duplicate the source files in the build directory. + and move it to the variant directory, + or to duplicate the source files in the variant directory.

Additionally, +> + Additionally, relative references between files can cause problems if we don't just duplicate the hierarchy of source files - in the build directory. + in the variant directory. You can see this at work in use of the C preprocessor #include mechanism with double quotes, not angle brackets:

      #include "file.h"
+CLASS="programlisting"
+>
      #include "file.h"
     

The + The de facto standard behavior for most C compilers in this case is to first look in the same directory as the source file that contains the #include line, then to look in the directories in the preprocessor search path. - Add to this that the SConsSCons implementation of support for code repositories (described below) @@ -14618,409 +13445,415 @@ CLASS="APPLICATION" will be found in the same directory hierarchy, and the simplest way to make sure that the right include file is found - is to duplicate the source files into the build directory, + is to duplicate the source files into the variant directory, which provides a correct build regardless of the original location(s) of the source files.

Although source-file duplication guarantees a correct build +> + Although source-file duplication guarantees a correct build even in these end-cases, - it can usually be safely disabled. The next section describes how you can disable the duplication of source files - in the build directory. + in the variant directory.


Telling SCons to Not Duplicate Source Files in the Build Directory15.3. Telling SCons to Not Duplicate Source Files in the Variant Directory Tree

In most cases and with most tool sets, - SCons + In most cases and with most tool sets, + SCons can place its target files in a build subdirectory - without duplicating the source files and everything will work just fine. - You can disable the default SConsSCons behavior by specifying duplicate=0 when you call the SConscript function:

      SConscript('src/SConscript', build_dir='build', duplicate=0)
+CLASS="programlisting"
+>
      SConscript('src/SConscript', variant_dir='build', duplicate=0)
     

When this flag is specified, - SCons uses the build directory +> + When this flag is specified, + SCons uses the variant directory like most people expect--that is, - the output files are placed in the build directory + the output files are placed in the variant directory while the source files stay in the source directory:

      % 
      % ls src
       SConscript
       hello.c
       % scons -Q
       cc -c src/hello.c -o build/hello.o
       cc -o build/hello build/hello.o
       % ls build
       hello
       hello.o
     

The BuildDir15.4. The VariantDir Function

Use the BuildDir + Use the VariantDir function to establish that target files should be built in a separate directory from the source files:

      BuildDir('build', 'src')
+CLASS="programlisting"
+>
      VariantDir('build', 'src')
       env = Environment()
       env.Program('build/hello.c')
     

Note that when you're not using +> + Note that when you're not using an SConscript file in the src subdirectory, you must actually specify that the program must be built from the build/hello.c - file that SConsSCons will duplicate in the build subdirectory.

When using the BuildDir + When using the VariantDir function directly, - SConsSCons still duplicates the source files - in the build directory by default: + in the variant directory by default:

      % 
      % ls src
       hello.c
       % scons -Q
       cc -o build/hello.o -c build/hello.c
       cc -o build/hello build/hello.o
       % ls build
       hello  hello.c  hello.o
     

You can specify the same + You can specify the same duplicate=0 argument that you can specify for an SConscript call:

      BuildDir('build', 'src', duplicate=0)
+CLASS="programlisting"
+>
      VariantDir('build', 'src', duplicate=0)
       env = Environment()
       env.Program('build/hello.c')
     

In which case SCons + In which case SCons will disable duplication of the source files:

      % 
      % ls src
       hello.c
       % scons -Q
       cc -o build/hello.o -c src/hello.c
       cc -o build/hello build/hello.o
       % ls build
       hello  hello.o
     

Using BuildDir15.5. Using VariantDir With an SConscript File

Even when using the BuildDir + Even when using the VariantDir function, it's much more natural to use it with a subsidiary SConscript file. For example, if the src/SConscript looks like this:

      env = Environment()
+CLASS="programlisting"
+>
      env = Environment()
       env.Program('hello.c')
     

Then our + Then our SConstruct file could look like:

      BuildDir('build', 'src')
+CLASS="programlisting"
+>
      VariantDir('build', 'src')
       SConscript('build/SConscript')
       

Yielding the following output: +> + Yielding the following output:

      % 
      % ls src
       SConscript  hello.c
       % scons -Q
       cc -o build/hello.o -c build/hello.c
       cc -o build/hello build/hello.o
       % ls build
       SConscript  hello  hello.c  hello.o
     

Notice that this is completely equivalent +> + Notice that this is completely equivalent to the use of SConscript that we learned about in the previous section.


15.6. Using Glob() with VariantDir

+ The Glob() file name pattern matching function + works just as usual when using VariantDir. + For example, if the + src/SConscript + looks like this: + +


      env = Environment()
+      env.Program('hello', Glob('*.c'))
+    

+ Then with the same SConstruct file as in the previous section, + and source files f1.c and f2.c in src, we would see the following + output: + +


      % ls src
+      SConscript  f1.c  f2.c  f2.h
+      % scons -Q
+      cc -o build/f1.o -c build/f1.c
+      cc -o build/f2.o -c build/f2.c
+      cc -o build/hello build/f1.o build/f2.o
+      % ls build
+      SConscript  f1.c  f1.o  f2.c  f2.h  f2.o  hello
+    

+ The Glob function returns Nodes in the build/ tree, as + you'd expect. + +


Variant Builds

Chapter 16. Variant Builds

The build_dir + The variant_dir keyword argument of the SConscript function provides everything we need to show how easy it is to create - variant builds using SConsSCons. Suppose, for example, that we want to build a program for both Windows and Linux platforms, @@ -15029,15 +13862,9 @@ CLASS="APPLICATION" for the Windows and Linux versions of the program.

    platform = ARGUMENTS.get('OS', Platform())
+CLASS="programlisting"
+>
    platform = ARGUMENTS.get('OS', Platform())
 
     include = "#export/$PLATFORM/include"
     lib = "#export/$PLATFORM/lib"
@@ -15053,26 +13880,18 @@ CLASS="PROGRAMLISTING"
 
     Export('env')
 
-    env.SConscript('src/SConscript', build_dir='build/$PLATFORM')
+    env.SConscript('src/SConscript', variant_dir='build/$PLATFORM')
   

This SConstruct file, +> + This SConstruct file, when run on a Linux system, yields:

    % 
    % scons -Q OS=linux
     Install file: "build/linux/world/world.h" as "export/linux/include/world.h"
@@ -15084,23 +13903,15 @@ CLASS="USERINPUT"
     cc -o build/linux/hello/hello build/linux/hello/hello.o -Lexport/linux/lib -lworld
     Install file: "build/linux/hello/hello" as "export/linux/bin/hello"
   

The same SConstruct file on Windows would build: +> + The same SConstruct file on Windows would build:

    C:\>
    C:\>scons -Q OS=windows
     Install file: "build/windows/world/world.h" as "export/windows/include/world.h"
@@ -15111,68 +13922,67 @@ CLASS="USERINPUT"
     link /nologo /OUT:build\windows\hello\hello.exe /LIBPATH:export\windows\lib world.lib build\windows\hello\hello.obj
     Install file: "build/windows/hello/hello.exe" as "export/windows/bin/hello.exe"
   

Writing Your Own Builders

Chapter 17. Writing Your Own Builders

Although SCons + Although SCons provides many useful methods for building common software products: programs, libraries, documents. you frequently want to be able to build some other type of file - not supported directly by SConsSCons - Fortunately, SConsSCons makes it very easy to define your own Builder objects for any custom file types you want to build. - (In fact, the SConsSCons interfaces for creating Builder objects are flexible enough and easy enough to use - that all of the the SConsSCons built-in Builder objects are created the mechanisms described in this section.)


Writing Builders That Execute External Commands17.1. Writing Builders That Execute External Commands

The simplest + The simplest Builder to create is one that executes an external command. @@ -15180,32 +13990,24 @@ CLASS="CLASSNAME" an output file by running the contents of the input file through a command named foobuild, creating that Builder might look like:

       bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
+CLASS="programlisting"
+>
       bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
     

All the above line does is create a free-standing +> + All the above line does is create a free-standing Builder object. The next section will show us how to actually use it. @@ -15213,462 +14015,374 @@ CLASS="CLASSNAME"


Attaching a Builder to a 17.2. Attaching a Builder to a Construction Environment

A + A Builder object isn't useful until it's attached to a construction environment so that we can call it to arrange for files to be built. This is done through the $BUILDERS$BUILDERS construction variable in an environment. - The $BUILDERS$BUILDERS variable is a Python dictionary that maps the names by which you want to call various Builder objects to the objects themselves. For example, if we want to call the Builder we just defined by the name - FooFoo, our SConstruct file might look like:

       bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
+CLASS="programlisting"
+>
       bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
        env = Environment(BUILDERS = {'Foo' : bld})
     

With the + With the Builder so attached to our construction environment we can now actually call it like so:

       env.Foo('file.foo', 'file.input')
+CLASS="programlisting"
+>
       env.Foo('file.foo', 'file.input')
     

Then when we run SCons + Then when we run SCons it looks like:

      % 
      % scons -Q
       foobuild < file.input > file.foo
     

Note, however, that the default $BUILDERS + Note, however, that the default $BUILDERS variable in a construction environment comes with a default set of Builder objects already defined: ProgramProgram, LibraryLibrary, etc. - And when we explicitly set the $BUILDERS$BUILDERS variable when we create the construction environment, the default Builders are no longer part of the environment:

       bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
+CLASS="programlisting"
+>
       bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
        env = Environment(BUILDERS = {'Foo' : bld})
        env.Foo('file.foo', 'file.input')
        env.Program('hello.c')
     
      % 
      % scons -Q
-      AttributeError: 'SConsEnvironment' object has no attribute 'Program':
-        File "SConstruct", line 4:
+      AttributeError: SConsEnvironment instance has no attribute 'Program':
+        File "/home/my/project/SConstruct", line 4:
           env.Program('hello.c')
     

To be able use both our own defined + To be able to use both our own defined Builder objects and the default Builder objects in the same construction environment, - you can either add to the $BUILDERS$BUILDERS variable - using the AppendAppend function:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
        env.Append(BUILDERS = {'Foo' : bld})
        env.Foo('file.foo', 'file.input')
        env.Program('hello.c')
     

Or you can explicitly set the appropriately-named - key in the $BUILDERS + Or you can explicitly set the appropriately-named + key in the $BUILDERS dictionary:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        bld = Builder(action = 'foobuild < $SOURCE > $TARGET')
        env['BUILDERS']['Foo'] = bld
        env.Foo('file.foo', 'file.input')
        env.Program('hello.c')
     

Either way, the same + Either way, the same construction environment can then use both the newly-defined - FooFoo Builder and the default ProgramProgram Builder:

      % 
      % scons -Q
       foobuild < file.input > file.foo
       cc -o hello.o -c hello.c
       cc -o hello hello.o
     

Letting SCons17.3. Letting SCons Handle The File Suffixes

By supplying additional information +> + By supplying additional information when you create a Builder, - you can let SConsSCons add appropriate file suffixes to the target and/or the source file. For example, rather than having to specify explicitly that you want the Foo Builder to build the file.foo target file from the file.input source file, you can give the .foo and .input suffixes to the Builder, making for more compact and readable calls to the Foo Builder:

       bld = Builder(action = 'foobuild < $SOURCE > $TARGET',
+CLASS="programlisting"
+>
       bld = Builder(action = 'foobuild < $SOURCE > $TARGET',
                      suffix = '.foo',
                      src_suffix = '.input')
        env = Environment(BUILDERS = {'Foo' : bld})
        env.Foo('file1')
        env.Foo('file2')
     
      % 
      % scons -Q
       foobuild < file1.input > file1.foo
       foobuild < file2.input > file2.foo
     

You can also supply a + You can also supply a prefix keyword argument - if it's appropriate to have SConsSCons append a prefix to the beginning of target file names.


Builders That Execute Python Functions17.4. Builders That Execute Python Functions

In SCons + In SCons, you don't have to call an external command to build a file. You can, instead, define a Python function that a Builder object can invoke to build your target file (or files). Such a builder function definition looks like:

       def build_function(target, source, env):
+CLASS="programlisting"
+>
       def build_function(target, source, env):
            # Code to build "target" from "source"
            return None
     

The arguments of a + The arguments of a builder function are: @@ -15676,19 +14390,20 @@ CLASS="LITERAL" >

target

A list of Node objects representing +> + A list of Node objects representing the target or targets to be built by this builder function. The file names of these target(s) - may be extracted using the Python strstr function.

source

A list of Node objects representing +> + A list of Node objects representing the sources to be used by this builder function to build the targets. The file names of these source(s) - may be extracted using the Python strstr function.

env

The + The construction environment used for building the target(s). The builder function may use any of the @@ -15725,12 +14442,13 @@ CLASS="LITERAL" >

The builder function must +> + The builder function must return a 0 or None value if the target(s) are built successfully. @@ -15741,34 +14459,29 @@ CLASS="LITERAL"

Once you've defined the Python function +> + Once you've defined the Python function that will build your target file, defining a Builder object for it is as simple as specifying the name of the function, instead of an external command, as the Builder's action argument:

       def build_function(target, source, env):
+CLASS="programlisting"
+>
       def build_function(target, source, env):
            # Code to build "target" from "source"
            return None
        bld = Builder(action = build_function,
@@ -15777,80 +14490,62 @@ CLASS="PROGRAMLISTING"
        env = Environment(BUILDERS = {'Foo' : bld})
        env.Foo('file')
     

And notice that the output changes slightly, +> + And notice that the output changes slightly, reflecting the fact that a Python function, not an external command, is now called to build the target file:

      % 
      % scons -Q
       build_function(["file.foo"], ["file.input"])
     

Builders That Create Actions Using a 17.5. Builders That Create Actions Using a Generator

SCons + SCons Builder objects can create an action "on the fly" by using a function called a generator. This provides a great deal of flexibility to construct just the right list of commands to build your target. A generator looks like:

       def generate_actions(source, target, env, for_signature):
+CLASS="programlisting"
+>
       def generate_actions(source, target, env, for_signature):
            return 'foobuild < %s > %s' % (target[0], source[0])
     

The arguments of a + The arguments of a generator are: @@ -15858,20 +14553,21 @@ CLASS="LITERAL" >

source

A list of Node objects representing +> + A list of Node objects representing the sources to be built by the command or other action generated by this function. The file names of these source(s) - may be extracted using the Python strstr function.

target

A list of Node objects representing +> + A list of Node objects representing the target or targets to be built by the command or other action generated by this function. The file names of these target(s) - may be extracted using the Python strstr function.

env

The + The construction environment used for building the target(s). The generator may use any of the @@ -15911,7 +14609,8 @@ CLASS="LITERAL" >for_signature

A flag that specifies whether the +> + A flag that specifies whether the generator is being called to contribute to a build signature, as opposed to actually executing the command. @@ -15922,8 +14621,9 @@ CLASS="LITERAL" >

The + The generator must return a command string or other action that will be used to @@ -15931,30 +14631,25 @@ CLASS="LITERAL"

Once you've defined a + Once you've defined a generator, you create a Builder to use it by specifying the generator keyword argument instead of action.

       def generate_actions(source, target, env, for_signature):
+CLASS="programlisting"
+>
       def generate_actions(source, target, env, for_signature):
            return 'foobuild < %s > %s' % (source[0], target[0])
        bld = Builder(generator = generate_actions,
                      suffix = '.foo',
@@ -15962,72 +14657,56 @@ CLASS="PROGRAMLISTING"
        env = Environment(BUILDERS = {'Foo' : bld})
        env.Foo('file')
     
      % 
      % scons -Q
       foobuild < file.input > file.foo
     

Note that it's illegal to specify both an +> + Note that it's illegal to specify both an action and a generator for a Builder.


Builders That Modify the Target or Source Lists Using an 17.6. Builders That Modify the Target or Source Lists Using an Emitter

SCons + SCons supports the ability for a Builder to modify the lists of target(s) from the specified source(s).

       def modify_targets(target, source, env):
+CLASS="programlisting"
+>
       def modify_targets(target, source, env):
            target.append('new_target')
            source.append('new_source')
            return target, source
@@ -16038,35 +14717,17 @@ CLASS="PROGRAMLISTING"
        env = Environment(BUILDERS = {'Foo' : bld})
        env.Foo('file')
     
      % 
      % scons -Q
       foobuild file.foo new_target - file.input new_source
     
       bld = Builder(action = 'my_command',
+CLASS="programlisting"
+>
       bld = Builder(action = 'my_command',
                      suffix = '.foo',
                      src_suffix = '.input',
                      emitter = 'MY_EMITTER')
@@ -16081,27 +14742,25 @@ CLASS="PROGRAMLISTING"
        env1.Foo('file1')
        env2.Foo('file2')
     

Not Writing a Builder: the CommandChapter 18. Not Writing a Builder: the Command Builder

Creating a + Creating a Builder and attaching it to a construction environment allows for a lot of flexibility when you @@ -16110,223 +14769,304 @@ CLASS="LITERAL" This can, however, be cumbersome if you only need to execute one specific command to build a single file (or group of files). - For these situations, SConsSCons supports a - CommandCommand Builder that arranges for a specific action to be executed to build a specific file or files. This looks a lot like the other builders (like ProgramProgram, ObjectObject, etc.), but takes as an additional argument the command to be executed to build the file:

     env = Environment()
+CLASS="programlisting"
+>
     env = Environment()
      env.Command('foo.out', 'foo.in', "sed 's/x/y/' < $SOURCE > $TARGET")
   

+ When executed, + SCons runs the specified command, + substituting $SOURCE and $TARGET + as expected: + +

    % 
    % scons -Q
     sed 's/x/y/' < foo.in > foo.out
   

This is often more convenient than +> + This is often more convenient than creating a Builder object and adding it to the $BUILDERS$BUILDERS variable of a construction environment

Note that the action you +> + Note that the action you specify to the + Command Builder can be any legal SCons Action, + such as a Python function:

     env = Environment()
+CLASS="programlisting"
+>
     env = Environment()
      def build(target, source, env):
          # Whatever it takes to build
          return None
      env.Command('foo.out', 'foo.in', build)
   

+ Which executes as follows: + +

    % 
    % scons -Q
     build(["foo.out"], ["foo.in"])
   

Writing Scanners

Chapter 19. Pseudo-Builders: the AddMethod function

SCons + The env.AddMethod(function, [name]) function is used to add a method + to an environment. It's typically used to add a "pseudo-builder" or + wrap up a call to multiple builders. In the first example, we want + to install the program into the standard bin dir, but also copy it + into a local install/bin dir that might be used to build a package + from. + +


     def install_in_bin_dirs(env, source):
+         """Install source in both bin dirs"""
+         i1 = env.Install("$BIN", source)
+         i2 = env.Install("$LOCALBIN", source)
+         return [i1[0], i2][0] # Return a list, like a normal builder
+     env = Environment(BIN='/usr/bin', LOCALBIN='#install/bin')
+     env.AddMethod(install_in_bin_dirs, "InstallInBinDirs")
+     env.InstallInBinDirs(Program('hello.c')) # installs hello in both bin dirs     
+  

This produces the following: +


    % scons -Q
+    cc -o hello.o -c hello.c
+    cc -o hello hello.o
+    Install file: "hello" as "install/bin/hello"
+  

+ It also gives more flexibility in parsing arguments than you can get + with a builder. The next example shows a pseudo-builder with a + named argument that modifies the filename, and a separate argument + for the resource file (rather than having the builder figure it out + by file extension). Also this example demonstrates using the global + AddMethod function to add a method to the global Environment class, + so it will be used in all subsequently created environments. + +


     import sys
+     def BuildTestProg(env, testfile, resourcefile, testdir="tests"):
+         """Build the test program;
+         prepends "test_" to src and target, and puts target into testdir."""
+         srcfile="test_%s.c"%testfile
+         if sys.platform=='win32':
+             target="%s/test_%s$EXESUFFIX"%(testdir,[testfile, resourcefile])
+         else:
+             target="%s/test_%s$EXESUFFIX"%(testdir,testfile)
+         p = env.Program(target, srcfile)
+         return p
+     AddMethod(Environment, BuildTestProg)
+
+     # Now use it
+     env=Environment()
+     env.BuildTestProg('stuff', resourcefile='res.rc')
+  

This produces the following (on Linux, anyway; Windows would include the + resource file): +


    % scons -Q
+    cc -o test_stuff.o -c test_stuff.c
+    cc -o tests/test_stuff test_stuff.o
+  

Chapter 20. Writing Scanners

+ SCons has built-in scanners that know how to look in C, Fortran and IDL source files for information about other files that targets built from those files depend on--for example, in the case of files that use the C preprocessor, the .h files that are specified using #include lines in the source. - You can use the same mechanisms that SConsSCons uses to create its built-in scanners to write scanners of your own for file types - that SConsSCons does not know how to scan "out of the box."


A Simple Scanner Example20.1. A Simple Scanner Example

Suppose, for example, that we want to create a simple scanner +> + Suppose, for example, that we want to create a simple scanner for .foo files. A .foo file contains some text that will be processed, and can include other files on lines that begin with include followed by a file name:

      include filename.foo
+CLASS="programlisting"
+>
      include filename.foo
     

Scanning a file will be handled by a Python function +> + Scanning a file will be handled by a Python function that you must supply. Here is a function that will use the Python re module to scan for the include lines in our example:

      import re
+CLASS="programlisting"
+>
      import re
       
       include_re = re.compile(r'^include\s+(\S+)$', re.M)
       
@@ -16334,11 +15074,9 @@ CLASS="PROGRAMLISTING"
           contents = node.get_contents()
           return include_re.findall(contents)
     

The scanner function must +> + The scanner function must accept the four specified arguments and return a list of implicit dependencies. Presumably, these would be dependencies found @@ -16351,27 +15089,28 @@ CLASS="PROGRAMLISTING" >

node

An SCons + An SCons node object representing the file being scanned. The path name to the file can be used by converting the node to a string using the str() function, - or an internal SConsSCons get_contents() object method can be used to fetch the contents. @@ -16382,7 +15121,8 @@ CLASS="LITERAL" >env

The construction environment in effect for this scan. +> + The construction environment in effect for this scan. The scanner function may choose to use construction variables from this environment to affect its behavior. @@ -16392,22 +15132,23 @@ CLASS="LITERAL" >path

A list of directories that form the search path for included files +> + A list of directories that form the search path for included files for this scanner. - This is how SConsSCons handles the $CPPPATH$CPPPATH and $LIBPATH$LIBPATH variables. @@ -16418,7 +15159,8 @@ CLASS="ENVAR" >arg

An optional argument that you can choose to +> + An optional argument that you can choose to have passed to this scanner function by various scanner instances. @@ -16427,57 +15169,44 @@ CLASS="ENVAR" >

A Scanner object is created using the + A Scanner object is created using the Scanner function, which typically takes an skeys argument to associate the type of file suffix with this scanner. The Scanner object must then be associated with the $SCANNERS$SCANNERS construction variable of a construction environment, - typically by using the AppendAppend method:

       kscan = Scanner(function = kfile_scan,
+CLASS="programlisting"
+>
       kscan = Scanner(function = kfile_scan,
                        skeys = ['.k'])
        env.Append(SCANNERS = kscan)
     

When we put it all together, it looks like: +> + When we put it all together, it looks like:

        import re
+CLASS="programlisting"
+>
        import re
 
         include_re = re.compile(r'^include\s+(\S+)$', re.M)
 
@@ -16494,45 +15223,44 @@ CLASS="PROGRAMLISTING"
 
         env.Command('foo', 'foo.k', 'kprocess < $SOURCES > $TARGET')
     

Building From Code Repositories

Chapter 21. Building From Code Repositories

Often, a software project will have +> + Often, a software project will have one or more central repositories, directory trees that contain source code, or derived files, or both. You can eliminate additional unnecessary - rebuilds of files by having SConsSCons use files from one or more code repositories to build files in your local build tree.


The Repository21.1. The Repository Method

It's often useful to allow multiple programmers working +> + It's often useful to allow multiple programmers working on a project to build software from source files and/or derived files that are stored in a centrally-accessible repository, @@ -16541,47 +15269,39 @@ CLASS="FUNCTION" maintained by a source code management system like BitKeeper, CVS, or Subversion.) - You use the RepositoryRepository method - to tell SConsSCons to search one or more central code repositories (in order) for any source files and derived files that are not present in the local build tree:

       env = Environment()
+CLASS="programlisting"
+>
       env = Environment()
        env.Program('hello.c')
        Repository('/usr/repository1', '/usr/repository2')
     

Multiple calls to the Repository + Multiple calls to the Repository method will simply add repositories to the global list - that SConsSCons maintains, - with the exception that SConsSCons will automatically eliminate the current directory and any non-existent directories from the list. @@ -16589,452 +15309,387 @@ CLASS="APPLICATION"


Finding source files in repositories21.2. Finding source files in repositories

The above example - specifies that SCons + The above example + specifies that SCons will first search for files under the /usr/repository1 tree and next under the /usr/repository2 tree. - SConsSCons expects that any files it searches for will be found in the same position relative to the top-level directory. In the above example, if the hello.c file is not found in the local build tree, - SConsSCons will search first for a /usr/repository1/hello.c file and then for a /usr/repository2/hello.c file to use in its place.

So given the + So given the SConstruct file above, if the hello.c file exists in the local build directory, - SCons will rebuild the helloSCons will rebuild the hello program as normal:

      % 
      % scons -Q
       cc -o hello.o -c hello.c
       cc -o hello hello.o
     

If, however, there is no local + If, however, there is no local hello.c file, but one exists in /usr/repository1, - SCons will recompile the helloSCons will recompile the hello program from the source file it finds in the repository:

      % 
      % scons -Q
       cc -o hello.o -c /usr/repository1/hello.c
       cc -o hello hello.o
     

And similarly, if there is no local + And similarly, if there is no local hello.c file and no /usr/repository1/hello.c, but one exists in /usr/repository2:

      % 
      % scons -Q
       cc -o hello.o -c /usr/repository2/hello.c
       cc -o hello hello.o
     

+


Finding 21.3. Finding #include files in repositories

We've already seen that SCons will scan the contents of +> + We've already seen that SCons will scan the contents of a source file for #include file names and realize that targets built from that source file also depend on the #include file(s). For each directory in the $CPPPATH$CPPPATH list, - SConsSCons will actually search the corresponding directories in any repository trees and establish the correct dependencies on any #include files that it finds in repository directory.

Unless the C compiler also knows about these directories +> + Unless the C compiler also knows about these directories in the repository trees, though, it will be unable to find the #include files. If, for example, the hello.c file in - our previous example includes the hellohello.h; in its current directory, - and the hellohello.h; only exists in the repository:

      % 
      % scons -Q
       cc -o hello.o -c hello.c
       hello.c:1: hello.h: No such file or directory
     

In order to inform the C compiler about the repositories, - SCons + In order to inform the C compiler about the repositories, + SCons will add appropriate -I flags to the compilation commands - for each directory in the $CPPPATH$CPPPATH list. So if we add the current directory to the - construction environment $CPPPATH$CPPPATH like so:

       env = Environment(CPPPATH = ['.'])
+CLASS="programlisting"
+>
       env = Environment(CPPPATH = ['.'])
        env.Program('hello.c')
        Repository('/usr/repository1')
     

Then re-executing SCons + Then re-executing SCons yields:

      % 
      % scons -Q
       cc -o hello.o -c -I. -I/usr/repository1 hello.c
       cc -o hello hello.o
     

The order of the + The order of the -I options replicates, for the C preprocessor, the same repository-directory search path - that SConsSCons uses for its own dependency analysis. - If there are multiple repositories and multiple $CPPPATH$CPPPATH - directories, SConsSCons will add the repository directories - to the beginning of each $CPPPATH$CPPPATH directory, rapidly multiplying the number of -I flags. - If, for example, the $CPPPATH$CPPPATH contains three directories (and shorter repository path names!):

       env = Environment(CPPPATH = ['dir1', 'dir2', 'dir3'])
+CLASS="programlisting"
+>
       env = Environment(CPPPATH = ['dir1', 'dir2', 'dir3'])
        env.Program('hello.c')
        Repository('/r1', '/r2')
     

Then we'll end up with nine + Then we'll end up with nine -I options on the command line, - three (for each of the $CPPPATH$CPPPATH directories) times three (for the local directory plus the two repositories):

      % 
      % scons -Q
       cc -o hello.o -c -Idir1 -I/r1/dir1 -I/r2/dir1 -Idir2 -I/r1/dir2 -I/r2/dir2 -Idir3 -I/r1/dir3 -I/r2/dir3 hello.c
       cc -o hello hello.o
     

Limitations on 21.3.1. Limitations on #include files in repositories

SCons + SCons relies on the C compiler's -I options to control the order in which the preprocessor will search the repository directories for #include files. This causes a problem, however, with how the C preprocessor handles #include lines with the file name included in double-quotes.

As we've seen, - SCons + As we've seen, + SCons will compile the hello.c file from the repository if it doesn't exist in the local directory. If, however, the hello.c file in the repository contains a #include line with the file name in double quotes:

        #include "hello.h"
+CLASS="programlisting"
+>
        #include "hello.h"
         int
         main(int argc, char *argv[])
         {
@@ -17042,56 +15697,49 @@ CLASS="PROGRAMLISTING"
             return (0);
         }
       

Then the C preprocessor will + Then the C preprocessor will always use a hello.h file from the repository directory first, even if there is a hello.h file in the local directory, despite the fact that the command line specifies -I as the first option:

        % 
        % scons -Q
         cc -o hello.o -c -I. -I/usr/repository1 /usr/repository1/hello.c
         cc -o hello hello.o
       

This behavior of the C preprocessor--always search +> + This behavior of the C preprocessor--always search for a #include file in double-quotes first in the same directory as the source file, and only then search the -I--can not, in general, be changed. @@ -17108,20 +15756,21 @@ CLASS="LITERAL" TYPE="1" >

  • Some modern versions of C compilers do have an option +> + Some modern versions of C compilers do have an option to disable or control this behavior. If so, add that option to $CFLAGS$CFLAGS (or $CXXFLAGS$CXXFLAGS or both) in your construction environment(s). Make sure the option is used for all construction @@ -17131,30 +15780,31 @@ CLASS="ENVAR" >

  • Change all occurrences of + Change all occurrences of #include "file.h" to #include <file.h>. Use of #include with angle brackets does not have the same behavior--the -I directories are searched first for #include files--which - gives SConsSCons direct control over the list of directories the C preprocessor will search. @@ -17162,7 +15812,8 @@ CLASS="APPLICATION" >

  • Require that everyone working with compilation from +> + Require that everyone working with compilation from repositories check out and work on entire directories of files, not individual files. (If you use local wrapper scripts around @@ -17175,149 +15826,138 @@ CLASS="APPLICATION" >


  • Finding the 21.4. Finding the SConstruct file in repositories

    SCons + SCons will also search in repositories for the SConstruct file and any specified SConscript files. - This poses a problem, though: how can SConsSCons search a repository tree for an SConstruct file if the SConstruct file itself contains the information about the pathname of the repository? - To solve this problem, SConsSCons allows you to specify repository directories on the command line using the -Y option:

          % 
      % scons -Q -Y /usr/repository1 -Y /usr/repository2
         

    When looking for source or derived files, - SCons + When looking for source or derived files, + SCons will first search the repositories specified on the command line, and then search the repositories specified in the SConstruct or SConscript files.


    Finding derived files in repositories21.5. Finding derived files in repositories

    If a repository contains not only source files, +> + If a repository contains not only source files, but also derived files (such as object files, - libraries, or executables), SConsSCons will perform its normal MD5 signature calculation to decide if a derived file in a repository is up-to-date, or the derived file must be rebuilt in the local build directory. - For the SConsSCons signature calculation to work correctly, a repository tree must contain the .sconsign files - that SConsSCons uses to keep track of signature information.

    Usually, this would be done by a build integrator - who would run SCons + Usually, this would be done by a build integrator + who would run SCons in the repository to create all of its derived files and .sconsign files, - or who would SConsSCons in a separate build directory - and copying the resulting tree to the desired repository: + and copy the resulting tree to the desired repository:

          % 
      % cd /usr/repository1
           % scons -Q
           cc -o file1.o -c file1.c
    @@ -17325,252 +15965,227 @@ CLASS="USERINPUT"
           cc -o hello.o -c hello.c
           cc -o hello hello.o file1.o file2.o
         

    +> (Note that this is safe even if the SConstruct file lists /usr/repository1 as a repository, - because SConsSCons will remove the current build directory from its repository list for that invocation.)

    Now, with the repository populated, +> + Now, with the repository populated, we only need to create the one local source file we're interested in working with at the moment, and use the -Y option to - tell SConsSCons to fetch any other files it needs from the repository:

          % 
      % cd $HOME/build
           % edit hello.c
           % scons -Q -Y /usr/repository1
           cc -c -o hello.o hello.c
           cc -o hello hello.o /usr/repository1/file1.o /usr/repository1/file2.o
         

    Notice that SCons + Notice that SCons realizes that it does not need to - rebuild local copies file1.o and file2.o files, + rebuild local copies file1.o and file2.o files, but instead uses the already-compiled files from the repository.


    Guaranteeing local copies of files21.6. Guaranteeing local copies of files

    If the repository tree contains the complete results of a build, +> + If the repository tree contains the complete results of a build, and we try to build from the repository without any files in our local tree, something moderately surprising happens:

          % 
      % mkdir $HOME/build2
           % cd $HOME/build2
           % scons -Q -Y /usr/all/repository hello
           scons: `hello' is up-to-date.
         

    Why does SCons say that the hello + Why does SCons say that the hello program - is up-to-date when there is no hellohello program in the local build directory? Because the repository (not the local directory) - contains the up-to-date hellohello program, - and SConsSCons correctly determines that nothing needs to be done to rebuild that up-to-date copy of the file.

    There are, however, many times when you want to ensure that a +> + There are, however, many times when you want to ensure that a local copy of a file always exists. A packaging or testing script, for example, may assume that certain generated files exist locally. - To tell SConsSCons to make a copy of any up-to-date repository file in the local build directory, - use the LocalLocal function:

           env = Environment()
    +CLASS="programlisting"
    +>
       env = Environment()
            hello = env.Program('hello.c')
            Local(hello)
         

    If we then run the same command, - SCons + If we then run the same command, + SCons will make a local copy of the program from the repository copy, and tell you that it is doing so:

          % 
      % scons -Y /usr/all/repository hello
           Local copy of hello from /usr/all/repository/hello
           scons: `hello' is up-to-date.
         

    (Notice that, because the act of making the local copy - is not considered a "build" of the hello + (Notice that, because the act of making the local copy + is not considered a "build" of the hello file, - SConsSCons still reports that it is up-to-date.)


    Multi-Platform Configuration (AutoconfChapter 22. Multi-Platform Configuration (Autoconf Functionality)

    SCons + SCons has integrated support for multi-platform build configuration - similar to that offered by GNU AutoconfAutoconf, such as figuring out what libraries or header files are available on the local system. This section describes how to use - this SConsSCons feature.

    Note

    This chapter is still under development, +> This chapter is still under development, so not everything is explained as well as it should be. - See the SConsSCons man page for additional information.


    22.1. Configure Contexts

    The basic framework for multi-platform build configuration - in SCons + The basic framework for multi-platform build configuration + in SCons is to attach a configure context to a - construction environment by calling the ConfigureConfigure function, perform a number of checks for libraries, functions, header files, etc., - and to then call the configure context's FinishFinish method to finish off the configuration:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         # Checks for libraries, header files, etc. go here!
         env = conf.Finish()
         

    SCons + SCons provides a number of basic checks, as well as a mechanism for adding your own custom checks.

    Note that SCons + Note that SCons uses its own dependency mechanism to determine when a check needs to be run--that is, - SConsSCons does not run the checks every time it is invoked, but caches the values returned by previous checks @@ -17674,42 +16283,38 @@ CLASS="APPLICATION"

    The next sections describe - the basic checks that SCons + The next sections describe + the basic checks that SCons supports, as well as how to add your own custom checks.


    Checking for the Existence of Header Files22.2. Checking for the Existence of Header Files

    Testing the existence of a header file +> + Testing the existence of a header file requires knowing what language the header file is. - A configure context has a CheckCHeaderCheckCHeader method that checks for the existence of a C header file:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckCHeader('math.h'):
             print 'Math.h must be installed!'
    @@ -17718,260 +16323,215 @@ CLASS="PROGRAMLISTING"
             conf.env.Append('-DHAS_FOO_H')
         env = conf.Finish()
         

    Note that you can choose to terminate +> + Note that you can choose to terminate the build if a given header file doesn't exist, - or you can modify the contstruction environment + or you can modify the construction environment based on the existence of a header file.

    If you need to check for the existence +> + If you need to check for the existence a C++ header file, - use the CheckCXXHeaderCheckCXXHeader method:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckCXXHeader('vector.h'):
             print 'vector.h must be installed!'
             Exit(1)
         env = conf.Finish()
         

    Checking for the Availability of a Function22.3. Checking for the Availability of a Function

    Check for the availability of a specific function - using the CheckFunc + Check for the availability of a specific function + using the CheckFunc method:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckFunc('strcpy'):
             print 'Did not find strcpy(), using local version'
             conf.env.Append('-Dstrcpy=my_local_strcpy')
         env = conf.Finish()
         

    Checking for the Availability of a Library22.4. Checking for the Availability of a Library

    Check for the availability of a library - using the CheckLib + Check for the availability of a library + using the CheckLib method. You only specify the basename of the library, you don't need to add a lib prefix or a .a or .lib suffix:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckLib('m'):
             print 'Did not find libm.a or m.lib, exiting!'
             Exit(1)
         env = conf.Finish()
         

    Because the ability to use a library successfully +> + Because the ability to use a library successfully often depends on having access to a header file that describes the library's interface, you can check for a library - and a header file at the same time by using the - CheckLibWithHeaderCheckLibWithHeader method:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckLibWithHeader('m', 'math.h'):
             print 'Did not find libm.a or m.lib, exiting!'
             Exit(1)
         env = conf.Finish()
         

    This is essentially shorthand for - separate calls to the CheckHeader and CheckLib + This is essentially shorthand for + separate calls to the CheckHeader and CheckLib functions.


    Checking for the Availability of a 22.5. Checking for the Availability of a typedef

    Check for the availability of a + Check for the availability of a typedef - by using the CheckTypeCheckType method:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckType('off_t'):
             print 'Did not find off_t typedef, assuming int'
             conf.env.Append(CCFLAGS = '-Doff_t=int')
         env = conf.Finish()
         

    You can also add a string that will be +> + You can also add a string that will be placed at the beginning of the test file that will be used to check for the typedef. This provide a way to specify files that must be included to find the typedef:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env)
         if not conf.CheckType('off_t', '#include <sys/types.h>\n'):
             print 'Did not find off_t typedef, assuming int'
             conf.env.Append(CCFLAGS = '-Doff_t=int')
         env = conf.Finish()
         

    Adding Your Own Custom Checks22.6. Adding Your Own Custom Checks

    A custom check is a Python function +> + A custom check is a Python function that checks for a certain condition to exist on the running system, - usually using methods that SConsSCons supplies to take care of the details of checking whether a compilation succeeds, @@ -17982,15 +16542,9 @@ CLASS="APPLICATION" a specific library might look as follows:

        mylib_test_source_file = """
    +CLASS="programlisting"
    +>
    mylib_test_source_file = """
         #include <mylib.h>
         int main(int argc, char **argv)
         {
    @@ -18005,39 +16559,37 @@ CLASS="PROGRAMLISTING"
             context.Result(result)
             return result
         

    The Message and Result + The Message and Result methods should typically begin and end a custom check to let the user know what's going on: - the MessageMessage call prints the specified message (with no trailing newline) - and the ResultResult call prints ok if the check succeeds and failed if it doesn't. - The TryLinkTryLink method actually tests for whether the specified program text @@ -18045,70 +16597,59 @@ CLASS="FUNCTION"

    (Note that a custom check can modify +> + (Note that a custom check can modify its check based on any arguments you choose to pass it, or by using or modifying the configure context environment in the context.env attribute.)

    This custom check function is +> + This custom check function is then attached to the configure context by passing a dictionary - to the ConfigureConfigure call that maps a name of the check to the underlying function:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         conf = Configure(env, custom_tests = {'CheckMyLibrary' : CheckMyLibrary})
         

    You'll typically want to make +> + You'll typically want to make the check and the function name the same, as we've done here, to avoid potential confusion.

    We can then put these pieces together +> + We can then put these pieces together and actually call the CheckMyLibrary check as follows:

        mylib_test_source_file = """
    +CLASS="programlisting"
    +>
    mylib_test_source_file = """
         #include <mylib.h>
         int main(int argc, char **argv)
         {
    @@ -18133,48 +16674,32 @@ CLASS="PROGRAMLISTING"
         # We would then add actual calls like Program() to build
         # something using the "env" construction environment.
         

    If MyLibrary is not installed on the system, +> + If MyLibrary is not installed on the system, the output will look like:

        % 
    % scons
         scons: Reading SConscript file ...
         Checking for MyLibrary... failed
         MyLibrary is not installed!
         

    If MyLibrary is installed, +> + If MyLibrary is installed, the output will look like:

        % 
    % scons
         scons: Reading SConscript file ...
    @@ -18185,74 +16710,58 @@ CLASS="USERINPUT"
             .
             .
         

    Not Configuring When Cleaning Targets22.7. Not Configuring When Cleaning Targets

    Using multi-platform configuration +> + Using multi-platform configuration as described in the previous sections will run the configuration commands even when invoking scons -c to clean targets:

        % 
    % scons -Q -c
         Checking for MyLibrary... ok
         Removed foo.o
         Removed foo
         

    Although running the platform checks +> + Although running the platform checks when removing targets doesn't hurt anything, it's usually unnecessary. You can avoid this by using the - GetOptionGetOption(); method to - check whether the -c-c (clean) option has been invoked on the command line:

        env = Environment()
    +CLASS="programlisting"
    +>
    env = Environment()
         if not env.GetOption('clean'):
             conf = Configure(env, custom_tests = {'CheckMyLibrary' : CheckMyLibrary})
             if not conf.CheckMyLibrary():
    @@ -18260,81 +16769,63 @@ CLASS="PROGRAMLISTING"
                 Exit(1)
             env = conf.Finish()
         
        % 
    % scons -Q -c
         Removed foo.o
         Removed foo
         

    Caching Built Files

    Chapter 23. Caching Built Files

    On multi-developer software projects, +> + On multi-developer software projects, you can sometimes speed up every developer's builds a lot by allowing them to share the derived files that they build. - SConsSCons makes this easy, as well as reliable.


    Specifying the Shared Cache Directory23.1. Specifying the Shared Cache Directory

    To enable sharing of derived files, - use the CacheDir + To enable sharing of derived files, + use the CacheDir function in any SConscript file:

           CacheDir('/usr/local/build_cache')
    +CLASS="programlisting"
    +>
       CacheDir('/usr/local/build_cache')
         

    Note that the directory you specify must already exist +> + Note that the directory you specify must already exist and be readable and writable by all developers who will be sharing derived files. It should also be in some central location @@ -18346,27 +16837,28 @@ CLASS="PROGRAMLISTING"

    Here's what happens: - When a build has a CacheDir + Here's what happens: + When a build has a CacheDir specified, every time a file is built, it is stored in the shared cache directory along with its MD5 build signature. [2][3] On subsequent builds, before an action is invoked to build a file, - SConsSCons will check the shared cache directory to see if a file with the exact same build signature already exists. @@ -18376,50 +16868,42 @@ CLASS="APPLICATION" like so:

          % 
      % scons -Q
           cc -o hello.o -c hello.c
           cc -o hello hello.o
           % scons -Q -c
           Removed hello.o
           Removed hello
           % scons -Q
           Retrieved `hello.o' from cache
           Retrieved `hello' from cache
         

    Keeping Build Output Consistent23.2. Keeping Build Output Consistent

    One potential drawback to using a shared cache - is that the output printed by SCons + One potential drawback to using a shared cache + is that the output printed by SCons can be inconsistent from invocation to invocation, because any given file may be rebuilt one time @@ -18430,17 +16914,21 @@ CLASS="APPLICATION"

    If, however, you use the + If, however, you use the --cache-show option, - SConsSCons will print the command line that it - would have executed to build the file, even when it is retrieving the file from the shared cache. @@ -18448,41 +16936,33 @@ CLASS="EMPHASIS" every time the build is run:

          % 
      % scons -Q
           cc -o hello.o -c hello.c
           cc -o hello hello.o
           % scons -Q -c
           Removed hello.o
           Removed hello
           % scons -Q --cache-show
           cc -o hello.o -c hello.c
           cc -o hello hello.o
         

    The trade-off, of course, is that you no longer - know whether or not SCons + The trade-off, of course, is that you no longer + know whether or not SCons has retrieved a derived file from cache or has rebuilt it locally. @@ -18490,48 +16970,41 @@ CLASS="APPLICATION"


    Not Using the Shared Cache for Specific Files23.3. Not Using the Shared Cache for Specific Files

    You may want to disable caching for certain +> + You may want to disable caching for certain specific files in your configuration. For example, if you only want to put executable files in a central cache, but not the intermediate object files, - you can use the NoCacheNoCache function to specify that the object files should not be cached:

           env = Environment()
    +CLASS="programlisting"
    +>
       env = Environment()
            obj = env.Object('hello.c')
            env.Program('hello.c')
            CacheDir('cache')
            NoCache('hello.o')
         

    Then when you run scons + Then when you run scons after cleaning the built targets, it will recompile the object file locally @@ -18541,47 +17014,39 @@ CLASS="APPLICATION" that can be retrieved instead of re-linking:

          % 
      % scons -Q
           cc -o hello.o -c hello.c
           cc -o hello hello.o
           % scons -Q -c
           Removed hello.o
           Removed hello
           % scons -Q
           cc -o hello.o -c hello.c
           Retrieved `hello' from cache
         

    Disabling the Shared Cache23.4. Disabling the Shared Cache

    Retrieving an already-built file +> + Retrieving an already-built file from the shared cache is usually a significant time-savings over rebuilding the file, @@ -18596,72 +17061,65 @@ NAME="AEN2953"

    In these cases, you can specify +> + In these cases, you can specify the --cache-disable - command-line option to tell SConsSCons to not retrieve already-built files from the shared cache directory:

          % 
      % scons -Q
           cc -o hello.o -c hello.c
           cc -o hello hello.o
           % scons -Q -c
           Removed hello.o
           Removed hello
           % scons -Q
           Retrieved `hello.o' from cache
           Retrieved `hello' from cache
           % scons -Q -c
           Removed hello.o
           Removed hello
           % scons -Q --cache-disable
           cc -o hello.o -c hello.c
           cc -o hello hello.o
         

    Populating a Shared Cache With Already-Built Files23.5. Populating a Shared Cache With Already-Built Files

    Sometimes, you may have one or more derived files +> + Sometimes, you may have one or more derived files already built in your local build tree that you wish to make available to other people doing builds. For example, you may find it more effective to perform @@ -18677,77 +17135,70 @@ NAME="AEN2965"

    In this case, you can use the +> + In this case, you can use the the --cache-force option - to tell SConsSCons to put all derived files in the cache, even if the files already exist in your local tree from having been built by a previous invocation:

          % 
      % scons -Q --cache-disable
           cc -o hello.o -c hello.c
           cc -o hello hello.o
           % scons -Q -c
           Removed hello.o
           Removed hello
           % scons -Q --cache-disable
           cc -o hello.o -c hello.c
           cc -o hello hello.o
           % scons -Q --cache-force
           scons: `.' is up to date.
           % scons -Q
           scons: `.' is up to date.
         

    Notice how the above sample run +> + Notice how the above sample run demonstrates that the --cache-disable option avoids putting the built hello.o and hello files in the cache, but after using the --cache-force option, the files have been put in the cache @@ -18756,18 +17207,19 @@ CLASS="LITERAL"


    Minimizing Cache Contention: the 23.6. Minimizing Cache Contention: the --random Option

    If you allow multiple builds to update the +> + If you allow multiple builds to update the shared cache directory simultaneously, two builds that occur at the same time can sometimes start "racing" @@ -18777,38 +17229,24 @@ CLASS="LITERAL" you are linking multiple files into an executable program:

           Program('prog',
    +CLASS="programlisting"
    +>
       Program('prog',
                    ['f1.c', 'f2.c', 'f3.c', 'f4.c', 'f5.c'])
         

    SCons + SCons will normally build the input object files on which the program depends in their normal, sorted order:

          % 
      % scons -Q
           cc -o f1.o -c f1.c
    @@ -18818,24 +17256,22 @@ CLASS="USERINPUT"
           cc -o f5.o -c f5.c
           cc -o prog f1.o f2.o f3.o f4.o f5.o
         

    But if two such builds take place simultaneously, +> + But if two such builds take place simultaneously, they may each look in the cache at nearly the same time and both decide that f1.o must be rebuilt and pushed into the shared cache directory, then both decide that f2.o must be rebuilt (and pushed into the shared cache directory), then both decide that f3.o must be rebuilt... @@ -18847,28 +17283,23 @@ CLASS="FILENAME"

    To alleviate such contention for the cache, +> + To alleviate such contention for the cache, you can use the --random command-line option - to tell SConsSCons to build dependencies in a random order:

          % 
      % scons -Q --random
           cc -o f3.o -c f3.c
    @@ -18878,12 +17309,10 @@ CLASS="USERINPUT"
           cc -o f4.o -c f4.c
           cc -o prog f1.o f2.o f3.o f4.o f5.o
         

    Multiple builds using the + Multiple builds using the --random option will usually build their dependencies in different, @@ -18898,118 +17327,129 @@ CLASS="LITERAL"

    Note, of course, +> + Note, of course, the --random option - will cause the output that SConsSCons prints to be inconsistent from invocation to invocation, which may be an issue when trying to compare output from different build runs.

    + If you want to make sure dependencies will be built + in a random order without having to specify + the --random on very command line, + you can use the SetOption function to + set the random option + within any SConscript file: + +

    
       Program('prog',
    +               ['f1.c', 'f2.c', 'f3.c', 'f4.c', 'f5.c'])
    +
    +       SetOption('random', 1)
    +       Program('prog',
    +               ['f1.c', 'f2.c', 'f3.c', 'f4.c', 'f5.c'])
    +    

    Alias Targets

    Chapter 24. Alias Targets

    We've already seen how you can use the Alias + We've already seen how you can use the Alias function to create a target named install:

         env = Environment()
    +CLASS="programlisting"
    +>
     env = Environment()
          hello = env.Program('hello.c')
          env.Install('/usr/bin', hello)
          env.Alias('install', '/usr/bin')
       

    You can then use this alias on the command line - to tell SCons + You can then use this alias on the command line + to tell SCons more naturally that you want to install files:

         % 
     % scons -Q install
          cc -o hello.o -c hello.c
          cc -o hello hello.o
          Install file: "hello" as "/usr/bin/hello"
       

    Like other + Like other Builder methods, though, - the AliasAlias method returns an object representing the alias being built. You can then use this object as input to anothother Builder. This is especially useful if you use such an object - as input to another call to the AliasAlias Builder, allowing you to create a hierarchy of nested aliases:

         env = Environment()
    +CLASS="programlisting"
    +>
     env = Environment()
          p = env.Program('foo.c')
          l = env.Library('bar.c')
          env.Install('/usr/bin', p)
    @@ -19018,42 +17458,34 @@ CLASS="PROGRAMLISTING"
          il = env.Alias('install-lib', '/usr/lib')
          env.Alias('install', [ib, il])
       

    This example defines separate + This example defines separate install, install-bin, and install-lib aliases, allowing you finer control over what gets installed:

         % 
     % scons -Q install-bin
          cc -o foo.o -c foo.c
          cc -o foo foo.o
          Install file: "foo" as "/usr/bin/foo"
          % scons -Q install-lib
          cc -o bar.o -c bar.c
    @@ -19061,7 +17493,7 @@ CLASS="USERINPUT"
          ranlib libbar.a
          Install file: "libbar.a" as "/usr/lib/libbar.a"
          % scons -Q -c /
          Removed foo.o
    @@ -19071,7 +17503,7 @@ CLASS="USERINPUT"
          Removed libbar.a
          Removed /usr/lib/libbar.a
          % scons -Q install
          cc -o foo.o -c foo.c
    @@ -19082,27 +17514,25 @@ CLASS="USERINPUT"
          ranlib libbar.a
          Install file: "libbar.a" as "/usr/lib/libbar.a"
       

    Java Builds

    Chapter 25. Java Builds

    So far, we've been using examples of +> + So far, we've been using examples of building C and C++ programs - to demonstrate the features of SConsSCons. - SConsSCons also supports building Java programs, but Java builds are handled slightly differently, which reflects the ways in which @@ -19112,261 +17542,225 @@ CLASS="APPLICATION"


    Building Java Class Files: the Java25.1. Building Java Class Files: the Java Builder

    The basic activity when programming in Java, +> + The basic activity when programming in Java, of course, is to take one or more .java files containing Java source code and to call the Java compiler to turn them into one or more .class files. - In SConsSCons, you do this by giving the JavaJava Builder a target directory in which to put the .class files, and a source directory that contains the .java files:

          Java('classes', 'src')
    +CLASS="programlisting"
    +>
      Java('classes', 'src')
         

    If the + If the src directory contains three .java source files, - then running SConsSCons might look like this:

          % 
      % scons -Q
           javac -d classes -sourcepath src src/Example1.java src/Example2.java src/Example3.java
         

    SCons + SCons will actually search the src directory tree for all of the .java files. The Java compiler will then create the necessary class files in the classes subdirectory, based on the class names found in the .java files.


    How SCons25.2. How SCons Handles Java Dependencies

    In addition to searching the source directory for +> + In addition to searching the source directory for .java files, - SConsSCons actually runs the .java files through a stripped-down Java parser that figures out what classes are defined. - In other words, SConsSCons knows, without you having to tell it, what .class files - will be produced by the javacjavac call. So our one-liner example from the preceding section:

          Java('classes', 'src')
    +CLASS="programlisting"
    +>
      Java('classes', 'src')
         

    Will not only tell you reliably +> + Will not only tell you reliably that the .class files in the classes subdirectory are up-to-date:

          % 
      % scons -Q
           javac -d classes -sourcepath src src/Example1.java src/Example2.java src/Example3.java
           % scons -Q classes
           scons: `classes' is up to date.
         

    But it will also remove all of the generated +> + But it will also remove all of the generated .class files, even for inner classes, without you having to specify them manually. For example, if our Example1.java and Example3.java files both define additional classes, and the class defined in Example2.java has an inner class, running scons -c will clean up all of those .class files as well:

          % 
      % scons -Q
           javac -d classes -sourcepath src src/Example1.java src/Example2.java src/Example3.java
           % scons -Q -c classes
           Removed classes/Example1.class
    @@ -19376,583 +17770,489 @@ CLASS="USERINPUT"
           Removed classes/Example3.class
           Removed classes/AdditionalClass3.class
         

    Building Java Archive (25.3. Building Java Archive (.jar) Files: the Jar) Files: the Jar Builder

    After building the class files, +> + After building the class files, it's common to collect them into a Java archive (.jar) file, which you do by calling the JarJar Builder method. If you want to just collect all of the class files within a subdirectory, you can just specify that subdirectory - as the JarJar source:

          Java(target = 'classes', source = 'src')
    +CLASS="programlisting"
    +>
      Java(target = 'classes', source = 'src')
           Jar(target = 'test.jar', source = 'classes')
         

    SCons + SCons will then pass that directory - to the jarjar command, which will collect all of the underlying .class files:

          % 
      % scons -Q
           javac -d classes -sourcepath src src/Example1.java src/Example2.java src/Example3.java
           jar cf test.jar classes
         

    If you want to keep all of the +> + If you want to keep all of the .class files for multiple programs in one location, and only archive some of them in each .jar file, - you can pass the JarJar builder a list of files as its source. It's extremely simple to create multiple .jar files this way, using the lists of target class files created by calls to the JavaJava builder - as sources to the various JarJar calls:

          prog1_class_files = Java(target = 'classes', source = 'prog1')
    +CLASS="programlisting"
    +>
      prog1_class_files = Java(target = 'classes', source = 'prog1')
           prog2_class_files = Java(target = 'classes', source = 'prog2')
           Jar(target = 'prog1.jar', source = prog1_class_files)
           Jar(target = 'prog2.jar', source = prog2_class_files)
         

    This will then create +> + This will then create prog1.jar and prog2.jar next to the subdirectories that contain their .java files:

          % 
      % scons -Q
           javac -d classes -sourcepath prog1 prog1/Example1.java prog1/Example2.java
           javac -d classes -sourcepath prog2 prog2/Example3.java prog2/Example4.java
    -      jar cf prog1.jar classes/Example1.class classes/Example2.class
    -      jar cf prog2.jar classes/Example3.class classes/Example4.class
    +      jar cf prog1.jar -C classes Example1.class -C classes Example2.class
    +      jar cf prog2.jar -C classes Example3.class -C classes Example4.class
         

    Building C Header and Stub Files: the JavaH25.4. Building C Header and Stub Files: the JavaH Builder

    You can generate C header and source files +> + You can generate C header and source files for implementing native methods, by using the JavaHJavaH Builder. - There are several ways of using the JavaHJavaH Builder. One typical invocation might look like:

          classes = Java(target = 'classes', source = 'src/pkg/sub')
    +CLASS="programlisting"
    +>
      classes = Java(target = 'classes', source = 'src/pkg/sub')
           JavaH(target = 'native', source = classes)
         

    The source is a list of class files generated by the +> + The source is a list of class files generated by the call to the JavaJava Builder, and the target is the output directory in which we want the C header files placed. The target - gets converted into the -d-d - when SCons runs javahSCons runs javah:

          % 
      % scons -Q
           javac -d classes -sourcepath src/pkg/sub src/pkg/sub/Example1.java src/pkg/sub/Example2.java src/pkg/sub/Example3.java
           javah -d native -classpath classes pkg.sub.Example1 pkg.sub.Example2 pkg.sub.Example3
         

    In this case, - the call to javah + In this case, + the call to javah will generate the header files native/pkg_sub_Example1.h, native/pkg_sub_Example2.h and native/pkg_sub_Example3.h. - Notice that SConsSCons remembered that the class files were generated with a target directory of classes, and that it then specified that target directory - as the -classpath-classpath option - to the call to javahjavah.

    Although it's more convenient to use +> + Although it's more convenient to use the list of class files returned by - the JavaJava Builder - as the source of a call to the JavaHJavaH Builder, - you can specify the list of class files by hand, if you prefer. If you do, you need to set the $JAVACLASSDIR$JAVACLASSDIR construction variable - when calling JavaHJavaH:

          Java(target = 'classes', source = 'src/pkg/sub')
    +CLASS="programlisting"
    +>
      Java(target = 'classes', source = 'src/pkg/sub')
           class_file_list = ['classes/pkg/sub/Example1.class',
                              'classes/pkg/sub/Example2.class',
                              'classes/pkg/sub/Example3.class']
           JavaH(target = 'native', source = class_file_list, JAVACLASSDIR = 'classes')
         

    The $JAVACLASSDIR + The $JAVACLASSDIR value then - gets converted into the -classpath-classpath - when SCons runs javahSCons runs javah:

          % 
      % scons -Q
           javac -d classes -sourcepath src/pkg/sub src/pkg/sub/Example1.java src/pkg/sub/Example2.java src/pkg/sub/Example3.java
           javah -d native -classpath classes pkg.sub.Example1 pkg.sub.Example2 pkg.sub.Example3
         

    Lastly, if you don't want a separate header file +> + Lastly, if you don't want a separate header file generated for each source file, you can specify an explicit File Node - as the target of the JavaHJavaH Builder:

          classes = Java(target = 'classes', source = 'src/pkg/sub')
    +CLASS="programlisting"
    +>
      classes = Java(target = 'classes', source = 'src/pkg/sub')
           JavaH(target = File('native.h'), source = classes)
         

    Because SCons + Because SCons assumes by default - that the target of the JavaHJavaH builder is a directory, - you need to use the FileFile function - to make sure that SConsSCons doesn't create a directory named native.h. When a file is used, though, - SConsSCons correctly converts the file name - into the javah -ojavah -o option:

          % 
      % scons -Q
           javac -d classes -sourcepath src/pkg/sub src/pkg/sub/Example1.java src/pkg/sub/Example2.java src/pkg/sub/Example3.java
           javah -o native.h -classpath classes pkg.sub.Example1 pkg.sub.Example2 pkg.sub.Example3
         

    Building RMI Stub and Skeleton Class Files: the RMIC25.5. Building RMI Stub and Skeleton Class Files: the RMIC Builder

    You can generate Remote Method Invocation stubs +> + You can generate Remote Method Invocation stubs by using the RMICRMIC Builder. The source is a list of directories, typically returned by a call to the JavaJava Builder, and the target is an output directory where the _Stub.class and _Skel.class files will be placed:

          classes = Java(target = 'classes', source = 'src/pkg/sub')
    +CLASS="programlisting"
    +>
      classes = Java(target = 'classes', source = 'src/pkg/sub')
           RMIC(target = 'outdir', source = classes)
         

    As it did with the JavaH + As it did with the JavaH Builder, - SConsSCons remembers the class directory - and passes it as the -classpath-classpath option - to rmicrmic:

          % 
      % scons -Q
           javac -d classes -sourcepath src/pkg/sub src/pkg/sub/Example1.java src/pkg/sub/Example2.java
           rmic -d outdir -classpath classes pkg.sub.Example1 pkg.sub.Example2
         

    This example would generate the files +> + This example would generate the files outdir/pkg/sub/Example1_Skel.class, outdir/pkg/sub/Example1_Stub.class, outdir/pkg/sub/Example2_Skel.class and outdir/pkg/sub/Example2_Stub.class. @@ -19960,33 +18260,35 @@ CLASS="FILENAME" >


    Troubleshooting

    Chapter 26. Troubleshooting

    The experience of configuring any +> + The experience of configuring any software build tool to build a large code base usually, at some point, involves trying to figure out why the tool is behaving a certain way, and how to get it to behave the way you want. - SConsSCons is no different. This appendix contains a number of different ways in which you can - get some additional insight into SConsSCons' behavior.

    Note that we're always interested in trying to +> + Note that we're always interested in trying to improve how you can troubleshoot configuration problems. If you run into a problem that has you scratching your head, @@ -19998,159 +18300,137 @@ CLASS="APPLICATION" or feature request at our project pages at tigris.org) so that we can use your feedback to try to come up with a better way to help you, - and others, get the necessary insight into SConsSCons behavior to help identify and fix configuration issues.


    Why is That Target Being Rebuilt? the 26.1. Why is That Target Being Rebuilt? the --debug=explain Option

    Let's look at a simple example of +> + Let's look at a simple example of a misconfigured build that causes a target to be rebuilt - every time SConsSCons is run:

          # Intentionally misspell the output file name in the
    +CLASS="programlisting"
    +>
      # Intentionally misspell the output file name in the
           # command used to create the file:
           Command('file.out', 'file.in', 'cp $SOURCE file.oout')
         

    (Note to Windows users: The POSIX cp + (Note to Windows users: The POSIX cp command copies the first file named on the command line to the second file. In our example, it copies the file.in file to the file.out file.)

    Now if we run SCons + Now if we run SCons multiple times on this example, - we see that it re-runs the cpcp command every time:

          % 
      % scons -Q
           cp file.in file.oout
           % scons -Q
           cp file.in file.oout
           % scons -Q
           cp file.in file.oout
         

    In this example, +> + In this example, the underlying cause is obvious: we've intentionally misspelled the output file name - in the cpcp command, so the command doesn't actually build the file.out file that we've told SCons file that we've told SCons to expect. But if the problem weren't obvious, it would be helpful to specify the --debug=explain option on the command line - to have SConsSCons tell us very specifically why it's decided to rebuild the target:

          % 
      % scons -Q --debug=explain
           scons: building `file.out' because it doesn't exist
           cp file.in file.oout
         

    If this had been a more complicated example +> + If this had been a more complicated example involving a lot of build output, - having SConsSCons tell us that it's trying to rebuild the target file because it doesn't exist @@ -20160,8 +18440,9 @@ CLASS="APPLICATION"

    The + The --debug=explain option also comes in handy to help figure out what input file changed. @@ -20169,26 +18450,20 @@ CLASS="LITERAL" a program from three source files, changing one of the source files and rebuilding with the --debug=explain option shows very specifically - why SConsSCons rebuilds the files that it does:

          % 
      % scons -Q
           cc -o file1.o -c file1.c
    @@ -20196,12 +18471,12 @@ CLASS="USERINPUT"
           cc -o file3.o -c file3.c
           cc -o prog file1.o file2.o file3.o
           % edit file2.c
               [CHANGE THE CONTENTS OF file2.c]
           % scons -Q --debug=explain
           scons: rebuilding `file2.o' because `file2.c' changed
    @@ -20209,52 +18484,44 @@ CLASS="USERINPUT"
           scons: rebuilding `prog' because `file2.o' changed
           cc -o prog file1.o file2.o file3.o
         

    This becomes even more helpful +> + This becomes even more helpful in identifying when a file is rebuilt due to a change in an implicit dependency, such as an incuded .h file. If the file1.c and file3.c files in our example both included a hello.h file, then changing that included file - and re-running SConsSCons with the --debug=explain option will pinpoint that it's the change to the included file that starts the chain of rebuilds:

          % 
      % scons -Q
           cc -o file1.o -c -I. file1.c
    @@ -20262,12 +18529,12 @@ CLASS="USERINPUT"
           cc -o file3.o -c -I. file3.c
           cc -o prog file1.o file2.o file3.o
           % edit hello.h
               [CHANGE THE CONTENTS OF hello.h]
           % scons -Q --debug=explain
           scons: rebuilding `file1.o' because `hello.h' changed
    @@ -20279,22 +18546,23 @@ CLASS="USERINPUT"
                      `file3.o' changed
           cc -o prog file1.o file2.o file3.o
         

    (Note that the + (Note that the --debug=explain option will only tell you - why SConsSCons decided to rebuild necessary targets. It does not tell you what files it examined - when deciding not to rebuild a target file, which is often a more valuable question to answer.) @@ -20302,86 +18570,76 @@ CLASS="EMPHASIS"


    What's in That Construction Environment? the Dump26.2. What's in That Construction Environment? the Dump Method

    When you create a construction environment, - SCons + When you create a construction environment, + SCons populates it with construction variables that are set up for various compilers, linkers and utilities that it finds on your system. Although this is usually helpful and what you want, - it might be frustrating if SConsSCons doesn't set certain variables that you - expect to be sit. + expect to be set. In situations like this, it's sometimes helpful to use the - construction environment DumpDump method to print all or some of the construction variables. - Note that the DumpDump method - returns the representation of the variables in the environment for you to print (or otherwise manipulate):

             env = Environment()
    +CLASS="programlisting"
    +>
         env = Environment()
              print env.Dump()
         

    On a POSIX system with gcc installed, +> + On a POSIX system with gcc installed, this might generate:

          % 
      % scons
           scons: Reading SConscript files ...
    -      { 'BUILDERS': {},
    +      { 'BUILDERS': {'_InternalInstall': <function InstallBuilderWrapper at 0x700000>, '_InternalInstallAs': <function InstallAsBuilderWrapper at 0x700000>},
             'CONFIGUREDIR': '#/.sconf_temp',
             'CONFIGURELOG': '#/config.log',
             'CPPSUFFIXES': [ '.c',
    @@ -20404,17 +18662,16 @@ CLASS="USERINPUT"
                              '.spp',
                              '.SPP'],
             'DSUFFIXES': ['.d'],
    -        'Dir': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c3fdac>,
    -        'Dirs': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c3fdcc>,
    +        'Dir': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
    +        'Dirs': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
             'ENV': {'PATH': '/usr/local/bin:/opt/bin:/bin:/usr/bin'},
    -        'ESCAPE': <function escape at 0xb7ba1f0c>,
    -        'File': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c3fdec>,
    +        'ESCAPE': <function escape at 0x700000>,
    +        'File': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
             'IDLSUFFIXES': ['.idl', '.IDL'],
    -        'INSTALL': <function installFunc at 0xb7c4317c>,
    -        'INSTALLSTR': <function installStr at 0xb7c431b4>,
    +        'INSTALL': <function copyFunc at 0x700000>,
             'LATEXSUFFIXES': ['.tex', '.ltx', '.latex'],
             'LIBPREFIX': 'lib',
    -        'LIBPREFIXES': '$LIBPREFIX',
    +        'LIBPREFIXES': ['$LIBPREFIX'],
             'LIBSUFFIX': '.a',
             'LIBSUFFIXES': ['$LIBSUFFIX', '$SHLIBSUFFIX'],
             'MAXLINELENGTH': 128072,
    @@ -20423,56 +18680,47 @@ CLASS="USERINPUT"
             'PLATFORM': 'posix',
             'PROGPREFIX': '',
             'PROGSUFFIX': '',
    -        'PSPAWN': <function piped_env_spawn at 0xb7bb12cc>,
    -        'RDirs': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c3fe0c>,
    +        'PSPAWN': <function piped_env_spawn at 0x700000>,
    +        'RDirs': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
             'SCANNERS': [],
             'SHELL': 'sh',
             'SHLIBPREFIX': '$LIBPREFIX',
             'SHLIBSUFFIX': '.so',
             'SHOBJPREFIX': '$OBJPREFIX',
             'SHOBJSUFFIX': '$OBJSUFFIX',
    -        'SPAWN': <function spawnvpe_spawn at 0xb7ba1d4c>,
    -        'TEMPFILE': <class SCons.Platform.TempFileMunge at 0xb7bce89c>,
    +        'SPAWN': <function spawnvpe_spawn at 0x700000>,
    +        'TEMPFILE': <class SCons.Platform.TempFileMunge at 0x700000>,
             'TEMPFILEPREFIX': '@',
    -        'TOOLS': [],
    +        'TOOLS': ['install', 'install'],
             '_CPPDEFFLAGS': '${_defines(CPPDEFPREFIX, CPPDEFINES, CPPDEFSUFFIX, __env__)}',
             '_CPPINCFLAGS': '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)',
             '_LIBDIRFLAGS': '$( ${_concat(LIBDIRPREFIX, LIBPATH, LIBDIRSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)',
             '_LIBFLAGS': '${_concat(LIBLINKPREFIX, LIBS, LIBLINKSUFFIX, __env__)}',
             '__RPATH': '$_RPATH',
    -        '_concat': <function _concat at 0xb7c43224>,
    -        '_defines': <function _defines at 0xb7c432cc>,
    -        '_installStr': <function installStr at 0xb7c431b4>,
    -        '_stripixes': <function _stripixes at 0xb7c43294>}
    +        '_concat': <function _concat at 0x700000>,
    +        '_defines': <function _defines at 0x700000>,
    +        '_stripixes': <function _stripixes at 0x700000>}
           scons: done reading SConscript files.
           scons: Building targets ...
           scons: `.' is up to date.
           scons: done building targets.
         

    On a Windows system with Visual C++ +> + On a Windows system with Visual C++ the output might look like:

          C:\>
      C:\>scons
           scons: Reading SConscript files ...
    -      { 'BUILDERS': {'Object': <SCons.Builder.CompositeBuilder instance at 0xb7b6354c>, 'SharedObject': <SCons.Builder.CompositeBuilder instance at 0xb7b636cc>, 'StaticObject': <SCons.Builder.CompositeBuilder instance at 0xb7b6354c>, 'PCH': <SCons.Builder.BuilderBase instance at 0xb7bd6e8c>, 'RES': <SCons.Builder.BuilderBase instance at 0xb7b5b9ec>},
    +      { 'BUILDERS': {'_InternalInstall': <function InstallBuilderWrapper at 0x700000>, 'Object': <SCons.Builder.CompositeBuilder instance at 0x700000>, 'PCH': <SCons.Builder.BuilderBase instance at 0x700000>, 'RES': <SCons.Builder.BuilderBase instance at 0x700000>, 'SharedObject': <SCons.Builder.CompositeBuilder instance at 0x700000>, 'StaticObject': <SCons.Builder.CompositeBuilder instance at 0x700000>, '_InternalInstallAs': <function InstallAsBuilderWrapper at 0x700000>},
             'CC': 'cl',
    -        'CCCOM': <SCons.Action.FunctionAction instance at 0xb7b63b6c>,
    +        'CCCOM': <SCons.Action.FunctionAction instance at 0x700000>,
             'CCCOMFLAGS': '$CPPFLAGS $_CPPDEFFLAGS $_CPPINCFLAGS /c $SOURCES /Fo$TARGET $CCPCHFLAGS $CCPDBFLAGS',
             'CCFLAGS': ['/nologo'],
             'CCPCHFLAGS': ['${(PCH and "/Yu%s /Fp%s"%(PCHSTOP or "",File(PCH))) or ""}'],
    @@ -20507,20 +18755,19 @@ CLASS="USERINPUT"
             'CXXFILESUFFIX': '.cc',
             'CXXFLAGS': ['$CCFLAGS', '$(', '/TP', '$)'],
             'DSUFFIXES': ['.d'],
    -        'Dir': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c5adac>,
    -        'Dirs': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c5adcc>,
    +        'Dir': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
    +        'Dirs': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
             'ENV': { 'INCLUDE': 'C:\\Program Files\\Microsoft Visual Studio/VC98\\include',
                      'LIB': 'C:\\Program Files\\Microsoft Visual Studio/VC98\\lib',
                      'PATH': 'C:\\Program Files\\Microsoft Visual Studio\\Common\\tools\\WIN95;C:\\Program Files\\Microsoft Visual Studio\\Common\\MSDev98\\bin;C:\\Program Files\\Microsoft Visual Studio\\Common\\tools;C:\\Program Files\\Microsoft Visual Studio/VC98\\bin',
                      'PATHEXT': '.COM;.EXE;.BAT;.CMD',
                      'SystemRoot': 'C:/WINDOWS'},
    -        'ESCAPE': <function escape at 0xb7bcf454>,
    -        'File': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c5adec>,
    +        'ESCAPE': <function escape at 0x700000>,
    +        'File': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
             'IDLSUFFIXES': ['.idl', '.IDL'],
             'INCPREFIX': '/I',
             'INCSUFFIX': '',
    -        'INSTALL': <function installFunc at 0xb7c5e17c>,
    -        'INSTALLSTR': <function installStr at 0xb7c5e1b4>,
    +        'INSTALL': <function copyFunc at 0x700000>,
             'LATEXSUFFIXES': ['.tex', '.ltx', '.latex'],
             'LIBPREFIX': '',
             'LIBPREFIXES': ['$LIBPREFIX'],
    @@ -20536,14 +18783,14 @@ CLASS="USERINPUT"
             'PLATFORM': 'win32',
             'PROGPREFIX': '',
             'PROGSUFFIX': '.exe',
    -        'PSPAWN': <function piped_spawn at 0xb7bcf3ac>,
    +        'PSPAWN': <function piped_spawn at 0x700000>,
             'RC': 'rc',
             'RCCOM': '$RC $_CPPDEFFLAGS $_CPPINCFLAGS $RCFLAGS /fo$TARGET $SOURCES',
             'RCFLAGS': [],
    -        'RDirs': <SCons.Defaults.Variable_Method_Caller instance at 0xb7c5ae0c>,
    +        'RDirs': <SCons.Defaults.Variable_Method_Caller instance at 0x700000>,
             'SCANNERS': [],
             'SHCC': '$CC',
    -        'SHCCCOM': <SCons.Action.FunctionAction instance at 0xb7b63bcc>,
    +        'SHCCCOM': <SCons.Action.FunctionAction instance at 0x700000>,
             'SHCCFLAGS': ['$CCFLAGS'],
             'SHCFLAGS': ['$CFLAGS'],
             'SHCXX': '$CXX',
    @@ -20554,42 +18801,44 @@ CLASS="USERINPUT"
             'SHLIBSUFFIX': '.dll',
             'SHOBJPREFIX': '$OBJPREFIX',
             'SHOBJSUFFIX': '$OBJSUFFIX',
    -        'SPAWN': <function spawn at 0xb7bcf41c>,
    +        'SPAWN': <function spawn at 0x700000>,
             'STATIC_AND_SHARED_OBJECTS_ARE_THE_SAME': 1,
    -        'TEMPFILE': <class SCons.Platform.TempFileMunge at 0xb7be989c>,
    +        'TEMPFILE': <class SCons.Platform.TempFileMunge at 0x700000>,
             'TEMPFILEPREFIX': '@',
    -        'TOOLS': ['msvc'],
    +        'TOOLS': ['msvc', 'install', 'install'],
             '_CPPDEFFLAGS': '${_defines(CPPDEFPREFIX, CPPDEFINES, CPPDEFSUFFIX, __env__)}',
             '_CPPINCFLAGS': '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)',
             '_LIBDIRFLAGS': '$( ${_concat(LIBDIRPREFIX, LIBPATH, LIBDIRSUFFIX, __env__, RDirs, TARGET, SOURCE)} $)',
             '_LIBFLAGS': '${_concat(LIBLINKPREFIX, LIBS, LIBLINKSUFFIX, __env__)}',
    -        '_concat': <function _concat at 0xb7c5e224>,
    -        '_defines': <function _defines at 0xb7c5e2cc>,
    -        '_installStr': <function installStr at 0xb7c5e1b4>,
    -        '_stripixes': <function _stripixes at 0xb7c5e294>}
    +        '_concat': <function _concat at 0x700000>,
    +        '_defines': <function _defines at 0x700000>,
    +        '_stripixes': <function _stripixes at 0x700000>}
           scons: done reading SConscript files.
           scons: Building targets ...
           scons: `.' is up to date.
           scons: done building targets.
         

    The construction environments in these examples have +> + The construction environments in these examples have actually been restricted to just gcc and Visual C++, respectively. In a real-life situation, the construction environments will likely contain a great many more variables. + Also note that we've massaged the example output above + to make the memory address of all objects a constant 0x700000. + In reality, you would see a different hexadecimal + number for each object.

    To make it easier to see just what you're +> + To make it easier to see just what you're interested in, - the DumpDump method allows you to specify a specific constrcution variable that you want to disply. @@ -20601,34 +18850,20 @@ CLASS="FUNCTION" You can do this as follows:

             env = Environment()
    +CLASS="programlisting"
    +>
         env = Environment()
              print env.Dump('ENV')
         

    Which might display the following when executed on a POSIX system: +> + Which might display the following when executed on a POSIX system:

          % 
      % scons
           scons: Reading SConscript files ...
    @@ -20638,23 +18873,15 @@ CLASS="USERINPUT"
           scons: `.' is up to date.
           scons: done building targets.
         

    And the following when executed on a Windows system: +> + And the following when executed on a Windows system:

          C:\>
      C:\>scons
           scons: Reading SConscript files ...
    @@ -20668,90 +18895,75 @@ CLASS="USERINPUT"
           scons: `.' is up to date.
           scons: done building targets.
         

    What Dependencies Does SCons26.3. What Dependencies Does SCons Know About? the --tree Option

    Sometimes the best way to try to figure out what - SCons + Sometimes the best way to try to figure out what + SCons is doing is simply to take a look at the dependency graph that it constructs based on your SConscript files. The --tree option will display all or part of the - SConsSCons dependency graph in an "ASCII art" graphical format that shows the dependency hierarchy.

    For example, given the following input + For example, given the following input SConstruct file:

             env = Environment(CPPPATH = ['.'])
    +CLASS="programlisting"
    +>
         env = Environment(CPPPATH = ['.'])
              env.Program('prog', ['f1.c', 'f2.c', 'f3.c'])
         

    Running SCons + Running SCons with the --tree=all option yields:

          % 
      % scons -Q --tree=all
           cc -o f1.o -c -I. f1.c
    @@ -20759,7 +18971,6 @@ CLASS="USERINPUT"
           cc -o f3.o -c -I. f3.c
           cc -o prog f1.o f2.o f3.o
           +-.
    -        +--
             +-SConstruct
             +-f1.c
             +-f1.o
    @@ -20785,13 +18996,11 @@ CLASS="USERINPUT"
                 +-f3.c
                 +-inc.h
         

    The tree will also be printed when the +> + The tree will also be printed when the -n (no execute) option is used, which allows you to examine the dependency graph @@ -20800,34 +19009,29 @@ CLASS="LITERAL"

    The + The --tree option only prints the dependency graph for the specified targets (or the default target(s) if none are specified on the command line). So if you specify a target like f2.o on the command line, the --tree option will only print the dependency graph for that file:

          % 
      % scons -Q --tree=all f2.o
           cc -o f2.o -c -I. f2.c
    @@ -20835,11 +19039,9 @@ CLASS="USERINPUT"
             +-f2.c
             +-inc.h
         

    This is, of course, useful for +> + This is, of course, useful for restricting the output from a very large build configuration to just a portion in which you're interested. @@ -20848,16 +19050,10 @@ CLASS="USERINPUT" for each specified target:

          % 
      % scons -Q --tree=all f1.o f3.o
           cc -o f1.o -c -I. f1.c
    @@ -20869,31 +19065,23 @@ CLASS="USERINPUT"
             +-f3.c
             +-inc.h
         

    The + The status argument may be used - to tell SConsSCons to print status information about each file in the dependency graph:

          % 
      % scons -Q --tree=status
           cc -o f1.o -c -I. f1.c
    @@ -20912,81 +19100,72 @@ CLASS="USERINPUT"
                    H = no cache
           
           [E b      ]+-.
    -      [         ]  +--
    -      [E        ]  +-SConstruct
    -      [E        ]  +-f1.c
    +      [E     C  ]  +-SConstruct
    +      [E     C  ]  +-f1.c
           [E B   C  ]  +-f1.o
    -      [E        ]  | +-f1.c
    -      [E        ]  | +-inc.h
    -      [E        ]  +-f2.c
    +      [E     C  ]  | +-f1.c
    +      [E     C  ]  | +-inc.h
    +      [E     C  ]  +-f2.c
           [E B   C  ]  +-f2.o
    -      [E        ]  | +-f2.c
    -      [E        ]  | +-inc.h
    -      [E        ]  +-f3.c
    +      [E     C  ]  | +-f2.c
    +      [E     C  ]  | +-inc.h
    +      [E     C  ]  +-f3.c
           [E B   C  ]  +-f3.o
    -      [E        ]  | +-f3.c
    -      [E        ]  | +-inc.h
    -      [E        ]  +-inc.h
    +      [E     C  ]  | +-f3.c
    +      [E     C  ]  | +-inc.h
    +      [E     C  ]  +-inc.h
           [E B   C  ]  +-prog
           [E B   C  ]    +-f1.o
    -      [E        ]    | +-f1.c
    -      [E        ]    | +-inc.h
    +      [E     C  ]    | +-f1.c
    +      [E     C  ]    | +-inc.h
           [E B   C  ]    +-f2.o
    -      [E        ]    | +-f2.c
    -      [E        ]    | +-inc.h
    +      [E     C  ]    | +-f2.c
    +      [E     C  ]    | +-inc.h
           [E B   C  ]    +-f3.o
    -      [E        ]      +-f3.c
    -      [E        ]      +-inc.h
    +      [E     C  ]      +-f3.c
    +      [E     C  ]      +-inc.h
         

    Note that + Note that --tree=all,status is equivalent; the all is assumed if only status is present. As an alternative to all, you can specify --tree=derived - to have SConsSCons only print derived targets in the tree output, skipping source files (like .c and .h files):

          % 
      % scons -Q --tree=derived
           cc -o f1.o -c -I. f1.c
    @@ -20994,31 +19173,30 @@ CLASS="USERINPUT"
           cc -o f3.o -c -I. f3.c
           cc -o prog f1.o f2.o f3.o
           +-.
    +        +-f1.o
    +        +-f2.o
    +        +-f3.o
    +        +-prog
    +          +-f1.o
    +          +-f2.o
    +          +-f3.o
         

    You can use the + You can use the status modifier with derived as well:

          % 
      % scons -Q --tree=derived,status
           cc -o f1.o -c -I. f1.c
    @@ -21045,25 +19223,24 @@ CLASS="USERINPUT"
           [E B   C  ]    +-f2.o
           [E B   C  ]    +-f3.o
         

    Note that the order of the + Note that the order of the --tree= arguments doesn't matter; --tree=status,derived is completely equivalent.

    The default behavior of the + The default behavior of the --tree option is to repeat all of the dependencies each time the library dependency @@ -21072,45 +19249,34 @@ CLASS="LITERAL" such as two programs that use the same library:

             env = Environment(CPPPATH = ['.'],
    +CLASS="programlisting"
    +>
         env = Environment(CPPPATH = ['.'],
                                LIBS = ['foo'],
                                LIBPATH = ['.'])
              env.Library('foo', ['f1.c', 'f2.c', 'f3.c'])
              env.Program('prog1.c')
              env.Program('prog2.c')
         

    Then there can be a + Then there can be a lot of repetition in the --tree= output:

          % 
      % scons -Q --tree=all
           cc -o f1.o -c -I. f1.c
    @@ -21123,7 +19289,6 @@ CLASS="USERINPUT"
           cc -o prog2.o -c -I. prog2.c
           cc -o prog2 prog2.o -L. -lfoo
           +-.
    -        +--
             +-SConstruct
             +-f1.c
             +-f1.o
    @@ -21185,27 +19350,25 @@ CLASS="USERINPUT"
               +-prog2.c
               +-inc.h
         

    In a large configuration with many internal libraries +> + In a large configuration with many internal libraries and include files, this can very quickly lead to huge output trees. To help make this more manageable, a prune modifier may be added to the option list, - in which case SConsSCons will print the name of a target that has already been visited during the tree-printing in [square brackets] as an indication that the dependencies @@ -21213,16 +19376,10 @@ CLASS="LITERAL" by looking farther up the tree:

          % 
      % scons -Q --tree=prune
           cc -o f1.o -c -I. f1.c
    @@ -21235,21 +19392,20 @@ CLASS="USERINPUT"
           cc -o prog2.o -c -I. prog2.c
           cc -o prog2 prog2.o -L. -lfoo
           +-.
    -        +--
             +-SConstruct
             +-f1.c
             +-f1.o
    -        | +-[f1.c]
    +        | +-f1.c
             | +-inc.h
             +-f2.c
             +-f2.o
    -        | +-[f2.c]
    -        | +-[inc.h]
    +        | +-f2.c
    +        | +-inc.h
             +-f3.c
             +-f3.o
    -        | +-[f3.c]
    -        | +-[inc.h]
    -        +-[inc.h]
    +        | +-f3.c
    +        | +-inc.h
    +        +-inc.h
             +-libfoo.a
             | +-[f1.o]
             | +-[f2.o]
    @@ -21257,75 +19413,68 @@ CLASS="USERINPUT"
             +-prog1
             | +-prog1.o
             | | +-prog1.c
    -        | | +-[inc.h]
    +        | | +-inc.h
             | +-[libfoo.a]
    -        +-[prog1.c]
    +        +-prog1.c
             +-[prog1.o]
             +-prog2
             | +-prog2.o
             | | +-prog2.c
    -        | | +-[inc.h]
    +        | | +-inc.h
             | +-[libfoo.a]
    -        +-[prog2.c]
    +        +-prog2.c
             +-[prog2.o]
         

    Like the + Like the status keyword, the prune argument by itself is equivalent to --tree=all,prune.


    How is SCons26.4. How is SCons Constructing the Command Lines It Executes? the --debug=presub Option

    Sometimes it's useful to look at the +> + Sometimes it's useful to look at the pre-substitution string - that SConsSCons uses to generate the command lines it executes. This can be done with the --debug=presub option:

          % 
      % scons -Q --debug=presub
           Building prog.o with action:
    @@ -21335,88 +19484,72 @@ CLASS="USERINPUT"
             $SMART_LINKCOM
           cc -o prog prog.o
         

    Where is SCons26.5. Where is SCons Searching for Libraries? the --debug=findlibs Option

    To get some insight into what library names - SCons + To get some insight into what library names + SCons is searching for, and in which directories it is searching, Use the --debug=findlibs option. Given the following input SConstruct file:

            env = Environment(LIBPATH = ['libs1', 'libs2'])
    +CLASS="programlisting"
    +>
        env = Environment(LIBPATH = ['libs1', 'libs2'])
             env.Program('prog.c', LIBS=['foo', 'bar'])
         

    And the libraries + And the libraries libfoo.a and libbar.a in libs1 and libs2, respectively, use of the --debug=findlibs option yields:

          % 
      % scons -Q --debug=findlibs
             findlibs: looking for 'libfoo.a' in 'libs1' ...
    @@ -21431,28 +19564,26 @@ CLASS="USERINPUT"
           cc -o prog.o -c prog.c
           cc -o prog prog.o -Llibs1 -Llibs2 -lfoo -lbar
         

    Where is SCons26.6. Where is SCons Blowing Up? the --debug=stacktrace Option

    In general, SCons + In general, SCons tries to keep its error messages short and informative. That means we usually try to avoid showing @@ -21463,142 +19594,116 @@ CLASS="APPLICATION"

    For example, the following + For example, the following SConstruct file:

             Program('prog.c')
    +CLASS="programlisting"
    +>
         Program('prog.c')
         

    Generates the following error if the +> + Generates the following error if the prog.c file does not exist:

          % 
      % scons -Q
           scons: *** Source `prog.c' not found, needed by target `prog.o'.  Stop.
         

    In this case, +> + In this case, the error is pretty obvious. But if it weren't, and you wanted to try to get more information about the error, the --debug=stacktrace option - would show you exactly where in the SConsSCons source code the problem occurs:

          % 
      % scons -Q --debug=stacktrace
           scons: *** Source `prog.c' not found, needed by target `prog.o'.  Stop.
           scons: internal stack trace:
    -        File "/home/knight/SCons/scons.0.96.C763/bootstrap/src/engine/SCons/Job.py", line 111, in start
    -          task.prepare()
    -        File "/home/knight/SCons/scons.0.96.C763/bootstrap/src/engine/SCons/Taskmaster.py", line 166, in prepare
    -          t.prepare()
    -        File "/home/knight/SCons/scons.0.96.C763/bootstrap/src/engine/SCons/Node/FS.py", line 2137, in prepare
    -          SCons.Node.Node.prepare(self)
    -        File "/home/knight/SCons/scons.0.96.C763/bootstrap/src/engine/SCons/Node/__init__.py", line 806, in prepare
    -          raise SCons.Errors.StopError, desc
    +        File "bootstrap/src/engine/SCons/Job.py", line 187, in start
    +        File "bootstrap/src/engine/SCons/Script/Main.py", line 169, in prepare
    +        File "bootstrap/src/engine/SCons/Taskmaster.py", line 184, in prepare
    +        File "bootstrap/src/engine/SCons/Executor.py", line 171, in prepare
         

    Of course, if you do need to dive into the SCons + Of course, if you do need to dive into the SCons source code, we'd like to know if, or how, the error messages or troubleshooting options could have been improved to avoid that. Not everyone has the necessary time or Python skill to dive into the source code, - and we'd like to improve SConsSCons for those people as well...


    How is SCons26.7. How is SCons Making Its Decisions? the --taskmastertrace Option

    The internal SCons + The internal SCons subsystem that handles walking the dependency graph and controls the decision-making about what to rebuild is the Taskmaster. - SConsSCons supports a --taskmastertrace option that tells the Taskmaster to print @@ -21609,66 +19714,66 @@ CLASS="LITERAL"

    The + The --taskmastertrace option takes as an argument the name of a file in which to put the trace output, with - (a single hyphen) indicating that the trace messages should be printed to the standard output:

          env = Environment(CPPPATH = ['.'])
    +CLASS="programlisting"
    +>
      env = Environment(CPPPATH = ['.'])
           env.Program('prog.c')
         
          % 
      % scons -Q --taskmastertrace=- prog
    -      Taskmaster: 'prog': children:
    -          ['prog.o']
    -          waiting on unstarted children:
    -          ['prog.o']
    -      Taskmaster: 'prog.o': children:
    -          ['inc.h', 'prog.c']
    -          evaluating prog.o
    +      
    +      Taskmaster: Looking for a node to evaluate
    +      Taskmaster:     Considering node <no_state   'prog'> and its children:
    +      Taskmaster:        <no_state   'prog.o'>
    +      Taskmaster:     Considering node <no_state   'prog.o'> and its children:
    +      Taskmaster:        <no_state   'prog.c'>
    +      Taskmaster:        <no_state   'inc.h'>
    +      Taskmaster:     Considering node <no_state   'prog.c'> and its children:
    +      Taskmaster: Evaluating <pending    'prog.c'>
    +      
    +      Taskmaster: Looking for a node to evaluate
    +      Taskmaster:     Considering node <no_state   'inc.h'> and its children:
    +      Taskmaster: Evaluating <pending    'inc.h'>
    +      
    +      Taskmaster: Looking for a node to evaluate
    +      Taskmaster:     Considering node <pending    'prog.o'> and its children:
    +      Taskmaster:        <up_to_date 'prog.c'>
    +      Taskmaster:        <up_to_date 'inc.h'>
    +      Taskmaster: Evaluating <pending    'prog.o'>
           cc -o prog.o -c -I. prog.c
    -      Taskmaster: 'prog': children:
    -          ['prog.o']
    -          evaluating prog
    +      
    +      Taskmaster: Looking for a node to evaluate
    +      Taskmaster:     Considering node <pending    'prog'> and its children:
    +      Taskmaster:        <executed   'prog.o'>
    +      Taskmaster: Evaluating <pending    'prog'>
           cc -o prog prog.o
    -      Taskmaster: 'prog': already handled (executed)
    +      
    +      Taskmaster: Looking for a node to evaluate
    +      Taskmaster: No candidate anymore.
         

    The + The --taskmastertrace option doesn't provide information about the actual @@ -21677,9 +19782,9 @@ CLASS="LITERAL" it knows about for each Node, and the order in which those dependencies are evaluated. This can be useful as an alternate way to determine - whether or not your SConsSCons configuration, or the implicit dependency scan, has actually identified all the correct dependencies @@ -21689,17 +19794,21 @@ CLASS="APPLICATION" >


    Construction Variables

    Appendix A. Construction Variables

    This appendix contains descriptions of all of the -construction variables that are +This appendix contains descriptions of all of the +construction variables that are potentially available "out of the box" in this version of SCons. Whether or not setting a construction variable @@ -21707,929 +19816,948 @@ in a construction environment will actually have an effect depends on whether any of the Tools and/or Builders that use the variable have been -included in the construction environment.

    In this appendix, we have -appended the initial $ +In this appendix, we have +appended the initial $ (dollar sign) to the beginning of each variable name when it appears in the text, but left off the dollar sign in the left-hand column -where the name appears for each entry.

    ARAR

    The static library archiver.

    The static library archiver. +

    ARCOMARCHITECTURE

    The command line used to generate a static library from object files.

    Specifies the system architecture for which +the package is being built. +The default is the system architecture +of the machine on which SCons is running. +This is used to fill in the +Architecture: +field in an Ipkg +control file, +and as part of the name of a generated RPM file. +

    ARCOMSTRARCOM

    The string displayed when an object file +> The command line used to generate a static library from object files. +

    ARCOMSTR

    The string displayed when an object file is generated from an assembly-language source file. If this is not set, then $ARCOM$ARCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(ARCOMSTR = "Archiving $TARGET")
    env = Environment(ARCOMSTR = "Archiving $TARGET") +
    ARFLAGSARFLAGS

    General options passed to the static library archiver.

    General options passed to the static library archiver. +

    ASAS

    The assembler.

    The assembler. +

    ASCOMASCOM

    The command line used to generate an object file -from an assembly-language source file.

    The command line used to generate an object file +from an assembly-language source file. +

    ASCOMSTRASCOMSTR

    The string displayed when an object file +> The string displayed when an object file is generated from an assembly-language source file. If this is not set, then $ASCOM$ASCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(ASCOMSTR = "Assembling $TARGET")
    env = Environment(ASCOMSTR = "Assembling $TARGET") +
    ASFLAGSASFLAGS

    General options passed to the assembler.

    General options passed to the assembler. +

    ASPPCOMASPPCOM

    The command line used to assemble an assembly-language +> The command line used to assemble an assembly-language source file into an object file after first running the file through the C preprocessor. Any options specified in the $ASFLAGS$ASFLAGS and $CPPFLAGS$CPPFLAGS construction variables -are included on this command line.

    ASPPCOMSTRASPPCOMSTR

    The string displayed when an object file +> The string displayed when an object file is generated from an assembly-language source file after first running the file through the C preprocessor. If this is not set, then $ASPPCOM$ASPPCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(ASPPCOMSTR = "Assembling $TARGET")
    env = Environment(ASPPCOMSTR = "Assembling $TARGET") +
    ASPPFLAGSASPPFLAGS

    General options when an assembling an assembly-language +> General options when an assembling an assembly-language source file into an object file after first running the file through the C preprocessor. The default is to use the value of $ASFLAGS$ASFLAGS.

    . +

    BIBTEXBIBTEX

    The bibliography generator for the TeX formatter and typesetter and the -LaTeX structured formatter and typesetter.

    The bibliography generator for the TeX formatter and typesetter and the +LaTeX structured formatter and typesetter. +

    BIBTEXCOMBIBTEXCOM

    The command line used to call the bibliography generator for the +> The command line used to call the bibliography generator for the TeX formatter and typesetter and the LaTeX structured formatter and -typesetter.

    BIBTEXCOMSTRBIBTEXCOMSTR

    The string displayed when generating a bibliography +> The string displayed when generating a bibliography for TeX or LaTeX. If this is not set, then $BIBTEXCOM$BIBTEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(BIBTEXCOMSTR = "Generating bibliography $TARGET")
    env = Environment(BIBTEXCOMSTR = "Generating bibliography $TARGET") +
    BIBTEXFLAGSBIBTEXFLAGS

    General options passed to the bibliography generator for the TeX formatter -and typesetter and the LaTeX structured formatter and typesetter.

    General options passed to the bibliography generator for the TeX formatter +and typesetter and the LaTeX structured formatter and typesetter. +

    BITKEEPERBITKEEPER

    The BitKeeper executable.

    The BitKeeper executable. +

    BITKEEPERCOMBITKEEPERCOM

    The command line for -fetching source files using BitKeeper.

    The command line for +fetching source files using BitKeeper. +

    BITKEEPERCOMSTRBITKEEPERCOMSTR

    The string displayed when fetching +> The string displayed when fetching a source file using BitKeeper. If this is not set, then $BITKEEPERCOM$BITKEEPERCOM -(the command line) is displayed.

    BITKEEPERGETBITKEEPERGET

    The command ($BITKEEPER The command ($BITKEEPER) and subcommand -for fetching source files using BitKeeper.

    BITKEEPERGETFLAGSBITKEEPERGETFLAGS

    Options that are passed to the BitKeeper +> Options that are passed to the BitKeeper get -subcommand.

    BUILDERSBUILDERS

    A dictionary mapping the names of the builders +> A dictionary mapping the names of the builders available through this environment to underlying Builder objects. Builders named Alias, CFile, CXXFile, DVI, Library, Object, PDF, PostScript, and Program are available by default. If you initialize this variable when an -Environment is created:

    env = Environment(BUILDERS = {'NewBuilder' : foo})
    env = Environment(BUILDERS = {'NewBuilder' : foo}) +

    the default Builders will no longer be available. +> the default Builders will no longer be available. To use a new Builder object in addition to the default Builders, -add your new Builder object like this:

    env = Environment()
    -env.Append(BUILDERS = {'NewBuilder' : foo})
    env = Environment() +env.Append(BUILDERS = {'NewBuilder' : foo}) +

    or this:

    or this: +

    env = Environment()
    -env['BUILDERS]['NewBuilder'] = foo
    env = Environment() +env['BUILDERS]['NewBuilder'] = foo +
    CCCC

    The C compiler.

    The C compiler. +

    CCCOMCCCOM

    The command line used to compile a C source file to a (static) object +> The command line used to compile a C source file to a (static) object file. Any options specified in the $CFLAGS$CFLAGS, $CCFLAGS$CCFLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command -line.

    CCCOMSTRCCCOMSTR

    The string displayed when a C source file +> The string displayed when a C source file is compiled to a (static) object file. If this is not set, then $CCCOM$CCCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(CCCOMSTR = "Compiling static object $TARGET")
    env = Environment(CCCOMSTR = "Compiling static object $TARGET") +
    CCFLAGSCCFLAGS

    General options that are passed to the C and C++ compilers.

    General options that are passed to the C and C++ compilers. +

    CCPCHFLAGSCCPCHFLAGS

    Options added to the compiler command line +> Options added to the compiler command line to support building with precompiled headers. The default value expands expands to the appropriate Microsoft Visual C++ command-line options when the $PCH$PCH construction variable is set.

    construction variable is set. +

    CCPDBFLAGSCCPDBFLAGS

    Options added to the compiler command line +> Options added to the compiler command line to support storing debugging information in a Microsoft Visual C++ PDB file. The default value expands expands to appropriate Microsoft Visual C++ command-line options when the $PDB$PDB construction variable is set.

    The Visual C++ compiler option that SCons uses by default -to generate PDB information is /Z7/Z7. -This works correctly with parallel (-j-j) builds because it embeds the debug information in the intermediate object files, as opposed to sharing a single PDB file between multiple object files. This is also the only way to get debug information embedded into a static library. -Using the /Zi/Zi instead may yield improved link-time performance, although parallel builds will no longer work.

    You can generate PDB files with the /ZiYou can generate PDB files with the /Zi switch by overriding the default $CCPDBFLAGS$CCPDBFLAGS variable as follows:

    variable as follows: +

    import SCons.Util
    -env['CCPDBFLAGS'] = SCons.Util.CLVar(['${(PDB and "/Zi /Fd%s" % File(PDB)) or ""}'])
    import SCons.Util +env['CCPDBFLAGS'] = SCons.Util.CLVar(['${(PDB and "/Zi /Fd%s" % File(PDB)) or ""}']) +

    An alternative would be to use the /Zi An alternative would be to use the /Zi to put the debugging information in a separate .pdb file for each object file by overriding the $CCPDBFLAGS$CCPDBFLAGS variable as follows:

    variable as follows: +

    env['CCPDBFLAGS'] = '/Zi /Fd${TARGET}.pdb'
    env['CCPDBFLAGS'] = '/Zi /Fd${TARGET}.pdb' +
    CCVERSIONCCVERSION

    The version number of the C compiler. +> The version number of the C compiler. This may or may not be set, -depending on the specific C compiler being used.

    CFILESUFFIXCFILESUFFIX

    The suffix for C source files. +> The suffix for C source files. This is used by the internal CFile builder when generating C files from Lex (.l) or YACC (.y) input files. The default suffix, of course, is .c (lower case). On case-insensitive systems (like Windows), SCons also treats .C (upper case) files -as C files.

    CFLAGSCFLAGS

    General options that are passed to the C compiler (C only; not C++).

    General options that are passed to the C compiler (C only; not C++). +

    _concatCHANGE_SPECFILE

    A function used to produce variables like $_CPPINCFLAGS A hook for modifying the file that controls the packaging build +(the .spec for RPM, +the control for Ipkg, +the .wxs for MSI). +If set, the function will be called +after the SCons template for the file has been written. +XXX +

    CHANGELOG

    The name of a file containing the change log text +to be included in the package. +This is included as the +%changelog +section of the RPM +.spec file. +

    _concat

    A function used to produce variables like $_CPPINCFLAGS. It takes four or five arguments: a prefix to concatenate onto each element, a list of elements, a suffix to concatenate onto each element, an environment for variable interpolation, and an optional function that will be -called to transform the list before concatenation.

    env['_CPPINCFLAGS'] = '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs)} $)',
    env['_CPPINCFLAGS'] = '$( ${_concat(INCPREFIX, CPPPATH, INCSUFFIX, __env__, RDirs)} $)', +
    CONFIGUREDIRCONFIGUREDIR

    The name of the directory in which +> The name of the directory in which Configure context test files are written. The default is .sconf_temp in the top-level directory containing the SConstruct -file.

    CONFIGURELOGCONFIGURELOG

    The name of the Configure context log file. +> The name of the Configure context log file. The default is config.log in the top-level directory containing the SConstruct -file.

    _CPPDEFFLAGS_CPPDEFFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the C preprocessor command-line options to define values. -The value of $_CPPDEFFLAGS$_CPPDEFFLAGS is created -by appending $CPPDEFPREFIX and $CPPDEFSUFFIX$CPPDEFPREFIX and $CPPDEFSUFFIX to the beginning and end -of each directory in $CPPDEFINES.

    $CPPDEFINES. +

    CPPDEFINESCPPDEFINES

    A platform independent specification of C preprocessor definitions. +> A platform independent specification of C preprocessor definitions. The definitions will be added to command lines through the automatically-generated -$_CPPDEFFLAGS$_CPPDEFFLAGS construction variable (see above), which is constructed according to -the type of value of $CPPDEFINES$CPPDEFINES:

    If $CPPDEFINESIf $CPPDEFINES is a string, the values of the -$CPPDEFPREFIX and $CPPDEFSUFFIX$CPPDEFPREFIX and $CPPDEFSUFFIX construction variables -will be added to the beginning and end.

    # Will add -Dxyz to POSIX compiler command lines,
    +CLASS="programlisting"
    +>
# Will add -Dxyz to POSIX compiler command lines,
     # and /Dxyz to Microsoft Visual C++ command lines.
    -env = Environment(CPPDEFINES='xyz')

    If $CPPDEFINES If $CPPDEFINES is a list, the values of the -$CPPDEFPREFIX and $CPPDEFSUFFIX$CPPDEFPREFIX and $CPPDEFSUFFIX construction variables will be appended to the beginning and end of each element in the list. If any element is a list or tuple, then the first item is the name being -defined and the second item is its value:

    # Will add -DB=2 -DA to POSIX compiler command lines,
    +CLASS="programlisting"
    +>
# Will add -DB=2 -DA to POSIX compiler command lines,
     # and /DB=2 /DA to Microsoft Visual C++ command lines.
    -env = Environment(CPPDEFINES=[('B', 2), 'A'])

    If $CPPDEFINES If $CPPDEFINES is a dictionary, the values of the -$CPPDEFPREFIX and $CPPDEFSUFFIX$CPPDEFPREFIX and $CPPDEFSUFFIX construction variables will be appended to the beginning and end @@ -22639,777 +20767,799 @@ is a name being defined to the dictionary item's corresponding value; if the value is None, then the name is defined without an explicit value. Note that the resulting flags are sorted by keyword to ensure that the order of the options on the command line is consistent each time -sconsscons -is run.

    # Will add -DA -DB=2 to POSIX compiler command lines,
    +CLASS="programlisting"
    +>
# Will add -DA -DB=2 to POSIX compiler command lines,
     # and /DA /DB=2 to Microsoft Visual C++ command lines.
    -env = Environment(CPPDEFINES={'B':2, 'A':None})
    CPPDEFPREFIXCPPDEFPREFIX

    The prefix used to specify preprocessor definitions +> The prefix used to specify preprocessor definitions on the C compiler command line. This will be appended to the beginning of each definition -in the $CPPDEFINES$CPPDEFINES construction variable -when the $_CPPDEFFLAGS variable is automatically generated.

    $_CPPDEFFLAGS variable is automatically generated. +

    CPPDEFSUFFIXCPPDEFSUFFIX

    The suffix used to specify preprocessor definitions +> The suffix used to specify preprocessor definitions on the C compiler command line. This will be appended to the end of each definition -in the $CPPDEFINES$CPPDEFINES construction variable -when the $_CPPDEFFLAGS variable is automatically generated.

    $_CPPDEFFLAGS variable is automatically generated. +

    CPPFLAGSCPPFLAGS

    User-specified C preprocessor options. +> User-specified C preprocessor options. These will be included in any command that uses the C preprocessor, including not just compilation of C and C++ source files via the $CCCOM$CCCOM, $SHCCCOM$SHCCCOM, $CXXCOM$CXXCOM and $SHCXXCOM$SHCXXCOM command lines, but also the $FORTRANPPCOM$FORTRANPPCOM, $SHFORTRANPPCOM$SHFORTRANPPCOM, $F77PPCOM$F77PPCOM and $SHF77PPCOM$SHF77PPCOM command lines used to compile a Fortran source file, and the $ASPPCOM$ASPPCOM command line used to assemble an assembly language source file, after first running each file through the C preprocessor. Note that this variable does -not contain --I-I (or similar) include search path options that scons generates automatically from $CPPPATH$CPPPATH. See $_CPPINCFLAGS$_CPPINCFLAGS, below, -for the variable that expands to those options.

    _CPPINCFLAGS_CPPINCFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the C preprocessor command-line options for specifying directories to be searched for include files. -The value of $_CPPINCFLAGS$_CPPINCFLAGS is created -by appending $INCPREFIX and $INCSUFFIX$INCPREFIX and $INCSUFFIX to the beginning and end -of each directory in $CPPPATH.

    $CPPPATH. +

    CPPPATHCPPPATH

    The list of directories that the C preprocessor will search for include +> The list of directories that the C preprocessor will search for include directories. The C/C++ implicit dependency scanner will search these directories for include files. Don't explicitly put include directory arguments in CCFLAGS or CXXFLAGS because the result will be non-portable and the directories will not be searched by the dependency scanner. Note: directory names in CPPPATH will be looked-up relative to the SConscript directory when they are used in a command. To force -sconsscons -to look-up a directory relative to the root of the source tree use #:

    env = Environment(CPPPATH='#/include')
    env = Environment(CPPPATH='#/include') +

    The directory look-up can also be forced using the -Dir The directory look-up can also be forced using the +Dir() -function:

    include = Dir('include')
    -env = Environment(CPPPATH=include)
    include = Dir('include') +env = Environment(CPPPATH=include) +

    The directory list will be added to command lines +> The directory list will be added to command lines through the automatically-generated -$_CPPINCFLAGS$_CPPINCFLAGS construction variable, which is constructed by appending the values of the -$INCPREFIX and $INCSUFFIX$INCPREFIX and $INCSUFFIX construction variables to the beginning and end -of each directory in $CPPPATH$CPPPATH. Any command lines you define that need the CPPPATH directory list should -include $_CPPINCFLAGS:

    $_CPPINCFLAGS: +

    env = Environment(CCCOM="my_compiler $_CPPINCFLAGS -c -o $TARGET $SOURCE")
    env = Environment(CCCOM="my_compiler $_CPPINCFLAGS -c -o $TARGET $SOURCE") +
    CPPSUFFIXESCPPSUFFIXES

    The list of suffixes of files that will be scanned +> The list of suffixes of files that will be scanned for C preprocessor implicit dependencies (#include lines). -The default list is:

    [".c", ".C", ".cxx", ".cpp", ".c++", ".cc",
    +CLASS="programlisting"
    +>
[".c", ".C", ".cxx", ".cpp", ".c++", ".cc",
      ".h", ".H", ".hxx", ".hpp", ".hh",
      ".F", ".fpp", ".FPP",
      ".m", ".mm",
    - ".S", ".spp", ".SPP"]
    CVSCVS

    The CVS executable.

    The CVS executable. +

    CVSCOFLAGSCVSCOFLAGS

    Options that are passed to the CVS checkout subcommand.

    Options that are passed to the CVS checkout subcommand. +

    CVSCOMCVSCOM

    The command line used to -fetch source files from a CVS repository.

    The command line used to +fetch source files from a CVS repository. +

    CVSCOMSTRCVSCOMSTR

    The string displayed when fetching +> The string displayed when fetching a source file from a CVS repository. If this is not set, then $CVSCOM$CVSCOM -(the command line) is displayed.

    CVSFLAGSCVSFLAGS

    General options that are passed to CVS. +> General options that are passed to CVS. By default, this is set to -d $CVSREPOSITORY -to specify from where the files must be fetched.

    CVSREPOSITORYCVSREPOSITORY

    The path to the CVS repository. +> The path to the CVS repository. This is referenced in the default $CVSFLAGS$CVSFLAGS value.

    value. +

    CXXCXX

    The C++ compiler.

    The C++ compiler. +

    CXXCOMCXXCOM

    The command line used to compile a C++ source file to an object file. +> The command line used to compile a C++ source file to an object file. Any options specified in the $CXXFLAGS$CXXFLAGS and $CPPFLAGS$CPPFLAGS construction variables -are included on this command line.

    CXXCOMSTRCXXCOMSTR

    The string displayed when a C++ source file +> The string displayed when a C++ source file is compiled to a (static) object file. If this is not set, then $CXXCOM$CXXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(CXXCOMSTR = "Compiling static object $TARGET")
    env = Environment(CXXCOMSTR = "Compiling static object $TARGET") +
    CXXFILESUFFIXCXXFILESUFFIX

    The suffix for C++ source files. +> The suffix for C++ source files. This is used by the internal CXXFile builder when generating C++ files from Lex (.ll) or YACC (.yy) input files. The default suffix is .cc. SCons also treats files with the suffixes .cpp, .cxx, .c++, and .C++ as C++ files, and files with .mm suffixes as Objective C++ files. On case-sensitive systems (Linux, UNIX, and other POSIX-alikes), SCons also treats .C (upper case) files -as C++ files.

    CXXFLAGSCXXFLAGS

    General options that are passed to the C++ compiler. +> General options that are passed to the C++ compiler. By default, this includes the value of $CCFLAGS$CCFLAGS, -so that setting $CCFLAGS$CCFLAGS affects both C and C++ compilation. If you want to add C++-specific flags, you must set or override the value of $CXXFLAGS$CXXFLAGS.

    . +

    CXXVERSIONCXXVERSION

    The version number of the C++ compiler. +> The version number of the C++ compiler. This may or may not be set, -depending on the specific C++ compiler being used.

    DirDESCRIPTION

    A function that converts a string -into a Dir instance relative to the target being built.

    A long description of the project being packaged. +This is included in the relevant section +of the file that controls the packaging build. +

    DirsDESCRIPTION_lang

    A function that converts a list of strings -into a list of Dir instances relative to the target being built.

    A language-specific long description for +the specified lang. +This is used to populate a +%description -l +section of an RPM +.spec file. +

    DSUFFIXESDir

    The list of suffixes of files that will be scanned +> A function that converts a string +into a Dir instance relative to the target being built. +

    Dirs

    A function that converts a list of strings +into a list of Dir instances relative to the target being built. +

    DSUFFIXES

    The list of suffixes of files that will be scanned for imported D package files. -The default list is:

    ['.d']
    ['.d'] +
    DVIPDFDVIPDF

    The TeX DVI file to PDF file converter.

    The TeX DVI file to PDF file converter. +

    DVIPDFCOMDVIPDFCOM

    The command line used to convert TeX DVI files into a PDF file.

    The command line used to convert TeX DVI files into a PDF file. +

    DVIPDFCOMSTRDVIPDFCOMSTR

    The string displayed when a TeX DVI file +> The string displayed when a TeX DVI file is converted into a PDF file. If this is not set, then $DVIPDFCOM$DVIPDFCOM (the command line) is displayed.

    (the command line) is displayed. +

    DVIPDFFLAGSDVIPDFFLAGS

    General options passed to the TeX DVI file to PDF file converter.

    General options passed to the TeX DVI file to PDF file converter. +

    DVIPSDVIPS

    The TeX DVI file to PostScript converter.

    The TeX DVI file to PostScript converter. +

    DVIPSFLAGSDVIPSFLAGS

    General options passed to the TeX DVI file to PostScript converter.

    General options passed to the TeX DVI file to PostScript converter. +

    ENVENV

    A dictionary of environment variables +> A dictionary of environment variables to use when invoking commands. When -$ENV$ENV is used in a command all list values will be joined using the path separator and any other non-string values will simply be coerced to a string. Note that, by default, -sconsscons does -not propagate the environment in force when you execute -sconsscons to the commands used to build target files. This is so that builds will be guaranteed repeatable regardless of the environment variables set at the time -sconsscons is invoked.

    import os
    -env = Environment(ENV = os.environ)
    import os +env = Environment(ENV = os.environ) +

    Note that you can choose only to propagate +> Note that you can choose only to propagate certain environment variables. A common example is the system -PATHPATH environment variable, so that -sconsscons uses the same utilities -as the invoking shell (or other process):

    import os
    -env = Environment(ENV = {'PATH' : os.environ['PATH']})
    import os +env = Environment(ENV = {'PATH' : os.environ['PATH']}) +
    ESCAPEESCAPE

    A function that will be called to escape shell special characters in +> A function that will be called to escape shell special characters in command lines. The function should take one argument: the command line -string to escape; and should return the escaped command line.

    F77F77

    The Fortran 77 compiler. +> The Fortran 77 compiler. You should normally set the $FORTRAN$FORTRAN variable, which specifies the default Fortran compiler for all Fortran versions. You only need to set $F77$F77 if you need to use a specific compiler -or compiler version for Fortran 77 files.

    F77COMF77COM

    The command line used to compile a Fortran 77 source file to an object file. +> The command line used to compile a Fortran 77 source file to an object file. You only need to set $F77COM$F77COM if you need to use a specific command line for Fortran 77 files. You should normally set the $FORTRANCOM$FORTRANCOM variable, which specifies the default command line -for all Fortran versions.

    F77COMSTRF77COMSTR

    The string displayed when a Fortran 77 source file +> The string displayed when a Fortran 77 source file is compiled to an object file. If this is not set, then $F77COM$F77COM or $FORTRANCOM$FORTRANCOM -(the command line) is displayed.

    F77FLAGSF77FILESUFFIXES

    General user-specified options that are passed to the Fortran 77 compiler. +> The list of file extensions for which the F77 dialect will be used. By +default, this is ['.f77'] +

    F77FLAGS

    General user-specified options that are passed to the Fortran 77 compiler. Note that this variable does -not contain --I-I (or similar) include search path options that scons generates automatically from $F77PATH$F77PATH. See $_F77INCFLAGS$_F77INCFLAGS below, for the variable that expands to those options. You only need to set $F77FLAGS$F77FLAGS if you need to define specific user options for Fortran 77 files. You should normally set the $FORTRANFLAGS$FORTRANFLAGS variable, which specifies the user-specified options passed to the default Fortran compiler -for all Fortran versions.

    _F77INCFLAGS_F77INCFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the Fortran 77 compiler command-line options for specifying directories to be searched for include files. The value of $_F77INCFLAGS$_F77INCFLAGS is created by appending $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX to the beginning and end of each directory in $F77PATH$F77PATH.

    . +

    F77PATHF77PATH

    The list of directories that the Fortran 77 compiler will search for include +> The list of directories that the Fortran 77 compiler will search for include directories. The implicit dependency scanner will search these directories for include files. Don't explicitly put include directory arguments in $F77FLAGS$F77FLAGS because the result will be non-portable and the directories will not be searched by the dependency scanner. Note: directory names in $F77PATH$F77PATH will be looked-up relative to the SConscript directory when they are used in a command. To force -sconsscons to look-up a directory relative to the root of the source tree use #: You only need to set $F77PATH$F77PATH if you need to define a specific include path for Fortran 77 files. You should normally set the $FORTRANPATH$FORTRANPATH variable, which specifies the include path for the default Fortran compiler -for all Fortran versions.

    env = Environment(F77PATH='#/include')
    env = Environment(F77PATH='#/include') +

    The directory look-up can also be forced using the -Dir The directory look-up can also be forced using the +Dir() -function:

    include = Dir('include')
    -env = Environment(F77PATH=include)
    include = Dir('include') +env = Environment(F77PATH=include) +

    The directory list will be added to command lines +> The directory list will be added to command lines through the automatically-generated $_F77INCFLAGS$_F77INCFLAGS construction variable, which is constructed by appending the values of the $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX construction variables to the beginning and end of each directory in $F77PATH$F77PATH. Any command lines you define that need the F77PATH directory list should include $_F77INCFLAGS$_F77INCFLAGS:

    : +

    env = Environment(F77COM="my_compiler $_F77INCFLAGS -c -o $TARGET $SOURCE")
    env = Environment(F77COM="my_compiler $_F77INCFLAGS -c -o $TARGET $SOURCE") +
    F77PPCOMF77PPCOM

    The command line used to compile a Fortran 77 source file to an object file +> The command line used to compile a Fortran 77 source file to an object file after first running the file through the C preprocessor. Any options specified in the $F77FLAGS$F77FLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command line. You only need to set $F77PPCOM$F77PPCOM if you need to use a specific C-preprocessor command line for Fortran 77 files. You should normally set the $FORTRANPPCOM$FORTRANPPCOM variable, which specifies the default C-preprocessor command line -for all Fortran versions.

    F77PPCOMSTRF77PPCOMSTR

    The string displayed when a Fortran 77 source file +> The string displayed when a Fortran 77 source file is compiled to an object file after first running the file through the C preprocessor. If this is not set, then $F77PPCOM$F77PPCOM or $FORTRANPPCOM$FORTRANPPCOM -(the command line) is displayed.

    F90F77PPFILESUFFIXES

    The Fortran 90 compiler. +> The list of file extensions for which the compilation + preprocessor pass for +F77 dialect will be used. By default, this is empty +

    F90

    The Fortran 90 compiler. You should normally set the $FORTRAN$FORTRAN variable, which specifies the default Fortran compiler for all Fortran versions. You only need to set $F90$F90 if you need to use a specific compiler -or compiler version for Fortran 90 files.

    F90COMF90COM

    The command line used to compile a Fortran 90 source file to an object file. +> The command line used to compile a Fortran 90 source file to an object file. You only need to set $F90COM$F90COM if you need to use a specific command line for Fortran 90 files. You should normally set the $FORTRANCOM$FORTRANCOM variable, which specifies the default command line -for all Fortran versions.

    F90COMSTRF90COMSTR

    The string displayed when a Fortran 90 source file +> The string displayed when a Fortran 90 source file is compiled to an object file. If this is not set, then $F90COM$F90COM or $FORTRANCOM$FORTRANCOM -(the command line) is displayed.

    F90FLAGSF90FILESUFFIXES

    General user-specified options that are passed to the Fortran 90 compiler. +> The list of file extensions for which the F90 dialect will be used. By +default, this is ['.f90'] +

    F90FLAGS

    General user-specified options that are passed to the Fortran 90 compiler. Note that this variable does -not contain --I-I (or similar) include search path options that scons generates automatically from $F90PATH$F90PATH. See $_F90INCFLAGS$_F90INCFLAGS below, for the variable that expands to those options. You only need to set $F90FLAGS$F90FLAGS if you need to define specific user options for Fortran 90 files. You should normally set the $FORTRANFLAGS$FORTRANFLAGS variable, which specifies the user-specified options passed to the default Fortran compiler -for all Fortran versions.

    _F90INCFLAGS_F90INCFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the Fortran 90 compiler command-line options for specifying directories to be searched for include files. The value of $_F90INCFLAGS$_F90INCFLAGS is created by appending $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX to the beginning and end of each directory in $F90PATH$F90PATH.

    . +

    F90PATHF90PATH

    The list of directories that the Fortran 90 compiler will search for include +> The list of directories that the Fortran 90 compiler will search for include directories. The implicit dependency scanner will search these directories for include files. Don't explicitly put include directory arguments in $F90FLAGS$F90FLAGS because the result will be non-portable and the directories will not be searched by the dependency scanner. Note: directory names in $F90PATH$F90PATH will be looked-up relative to the SConscript directory when they are used in a command. To force -sconsscons to look-up a directory relative to the root of the source tree use #: You only need to set $F90PATH$F90PATH if you need to define a specific include path for Fortran 90 files. You should normally set the $FORTRANPATH$FORTRANPATH variable, which specifies the include path for the default Fortran compiler -for all Fortran versions.

    env = Environment(F90PATH='#/include')
    env = Environment(F90PATH='#/include') +

    The directory look-up can also be forced using the -Dir The directory look-up can also be forced using the +Dir() -function:

    include = Dir('include')
    -env = Environment(F90PATH=include)
    include = Dir('include') +env = Environment(F90PATH=include) +

    The directory list will be added to command lines +> The directory list will be added to command lines through the automatically-generated $_F90INCFLAGS$_F90INCFLAGS construction variable, which is constructed by appending the values of the $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX construction variables to the beginning and end of each directory in $F90PATH$F90PATH. Any command lines you define that need the F90PATH directory list should include $_F90INCFLAGS$_F90INCFLAGS:

    : +

    env = Environment(F90COM="my_compiler $_F90INCFLAGS -c -o $TARGET $SOURCE")
    env = Environment(F90COM="my_compiler $_F90INCFLAGS -c -o $TARGET $SOURCE") +
    F90PPCOMF90PPCOM

    The command line used to compile a Fortran 90 source file to an object file +> The command line used to compile a Fortran 90 source file to an object file after first running the file through the C preprocessor. Any options specified in the $F90FLAGS$F90FLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command line. You only need to set $F90PPCOM$F90PPCOM if you need to use a specific C-preprocessor command line for Fortran 90 files. You should normally set the $FORTRANPPCOM$FORTRANPPCOM variable, which specifies the default C-preprocessor command line -for all Fortran versions.

    F90PPCOMSTRF90PPCOMSTR

    The string displayed when a Fortran 90 source file +> The string displayed when a Fortran 90 source file is compiled after first running the file through the C preprocessor. If this is not set, then $F90PPCOM$F90PPCOM or $FORTRANPPCOM$FORTRANPPCOM -(the command line) is displayed.

    F95F90PPFILESUFFIXES

    The Fortran 95 compiler. +> The list of file extensions for which the compilation + preprocessor pass for +F90 dialect will be used. By default, this is empty +

    F95

    The Fortran 95 compiler. You should normally set the $FORTRAN$FORTRAN variable, which specifies the default Fortran compiler for all Fortran versions. You only need to set $F95$F95 if you need to use a specific compiler -or compiler version for Fortran 95 files.

    F95COMF95COM

    The command line used to compile a Fortran 95 source file to an object file. +> The command line used to compile a Fortran 95 source file to an object file. You only need to set $F95COM$F95COM if you need to use a specific command line for Fortran 95 files. You should normally set the $FORTRANCOM$FORTRANCOM variable, which specifies the default command line -for all Fortran versions.

    F95COMSTRF95COMSTR

    The string displayed when a Fortran 95 source file +> The string displayed when a Fortran 95 source file is compiled to an object file. If this is not set, then $F95COM$F95COM or $FORTRANCOM$FORTRANCOM -(the command line) is displayed.

    F95FLAGSF95FILESUFFIXES

    General user-specified options that are passed to the Fortran 95 compiler. +> The list of file extensions for which the F95 dialect will be used. By +default, this is ['.f95'] +

    F95FLAGS

    General user-specified options that are passed to the Fortran 95 compiler. Note that this variable does -not contain --I-I (or similar) include search path options that scons generates automatically from $F95PATH$F95PATH. See $_F95INCFLAGS$_F95INCFLAGS below, for the variable that expands to those options. You only need to set $F95FLAGS$F95FLAGS if you need to define specific user options for Fortran 95 files. You should normally set the $FORTRANFLAGS$FORTRANFLAGS variable, which specifies the user-specified options passed to the default Fortran compiler -for all Fortran versions.

    _F95INCFLAGS_F95INCFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the Fortran 95 compiler command-line options for specifying directories to be searched for include files. The value of $_F95INCFLAGS$_F95INCFLAGS is created by appending $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX to the beginning and end of each directory in $F95PATH$F95PATH.

    . +

    F95PATHF95PATH

    The list of directories that the Fortran 95 compiler will search for include +> The list of directories that the Fortran 95 compiler will search for include directories. The implicit dependency scanner will search these directories for include files. Don't explicitly put include directory arguments in $F95FLAGS$F95FLAGS because the result will be non-portable and the directories will not be searched by the dependency scanner. Note: directory names in $F95PATH$F95PATH will be looked-up relative to the SConscript directory when they are used in a command. To force -sconsscons to look-up a directory relative to the root of the source tree use #: You only need to set $F95PATH$F95PATH if you need to define a specific include path for Fortran 95 files. You should normally set the $FORTRANPATH$FORTRANPATH variable, which specifies the include path for the default Fortran compiler -for all Fortran versions.

    env = Environment(F95PATH='#/include')
    env = Environment(F95PATH='#/include') +

    The directory look-up can also be forced using the -Dir The directory look-up can also be forced using the +Dir() -function:

    include = Dir('include')
    -env = Environment(F95PATH=include)
    include = Dir('include') +env = Environment(F95PATH=include) +

    The directory list will be added to command lines +> The directory list will be added to command lines through the automatically-generated $_F95INCFLAGS$_F95INCFLAGS construction variable, which is constructed by appending the values of the $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX construction variables to the beginning and end of each directory in $F95PATH$F95PATH. Any command lines you define that need the F95PATH directory list should include $_F95INCFLAGS$_F95INCFLAGS:

    : +

    env = Environment(F95COM="my_compiler $_F95INCFLAGS -c -o $TARGET $SOURCE")
    env = Environment(F95COM="my_compiler $_F95INCFLAGS -c -o $TARGET $SOURCE") +
    F95PPCOMF95PPCOM

    The command line used to compile a Fortran 95 source file to an object file +> The command line used to compile a Fortran 95 source file to an object file after first running the file through the C preprocessor. Any options specified in the $F95FLAGS$F95FLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command line. You only need to set $F95PPCOM$F95PPCOM if you need to use a specific C-preprocessor command line for Fortran 95 files. You should normally set the $FORTRANPPCOM$FORTRANPPCOM variable, which specifies the default C-preprocessor command line -for all Fortran versions.

    F95PPCOMSTRF95PPCOMSTR

    The string displayed when a Fortran 95 source file +> The string displayed when a Fortran 95 source file is compiled to an object file after first running the file through the C preprocessor. If this is not set, then $F95PPCOM$F95PPCOM or $FORTRANPPCOM$FORTRANPPCOM -(the command line) is displayed.

    FileF95PPFILESUFFIXES

    A function that converts a string into a File instance relative to the -target being built.

    The list of file extensions for which the compilation + preprocessor pass for +F95 dialect will be used. By default, this is empty +

    FORTRANFile

    The default Fortran compiler -for all versions of Fortran.

    A function that converts a string into a File instance relative to the +target being built. +

    FORTRANCOMFORTRAN

    The command line used to compile a Fortran source file to an object file. +> The default Fortran compiler +for all versions of Fortran. +

    FORTRANCOM

    The command line used to compile a Fortran source file to an object file. By default, any options specified in the $FORTRANFLAGS$FORTRANFLAGS, $CPPFLAGS$CPPFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_FORTRANMODFLAG$_FORTRANMODFLAG, and $_FORTRANINCFLAGS$_FORTRANINCFLAGS construction variables -are included on this command line.

    FORTRANCOMSTRFORTRANCOMSTR

    The string displayed when a Fortran source file +> The string displayed when a Fortran source file is compiled to an object file. If this is not set, then $FORTRANCOM$FORTRANCOM -(the command line) is displayed.

    FORTRANFLAGSFORTRANFILESUFFIXES

    General user-specified options that are passed to the Fortran compiler. +> The list of file extensions for which the FORTRAN dialect will be used. By +default, this is ['.f', '.for', '.ftn'] +

    FORTRANFLAGS

    General user-specified options that are passed to the Fortran compiler. Note that this variable does -not contain --I-I (or similar) include or module search path options that scons generates automatically from $FORTRANPATH$FORTRANPATH. See $_FORTRANINCFLAGS$_FORTRANINCFLAGS and $_FORTRANMODFLAG$_FORTRANMODFLAG, below, -for the variables that expand those options.

    _FORTRANINCFLAGS_FORTRANINCFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the Fortran compiler command-line options for specifying directories to be searched for include files and module files. The value of $_FORTRANINCFLAGS$_FORTRANINCFLAGS is created by prepending/appending $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX to the beginning and end of each directory in $FORTRANPATH$FORTRANPATH.

    . +

    FORTRANMODDIRFORTRANMODDIR

    Directory location where the Fortran compiler should place +> Directory location where the Fortran compiler should place any module files it generates. This variable is empty, by default. Some Fortran compilers will internally append this directory in the search path -for module files, as well.

    FORTRANMODDIRPREFIXFORTRANMODDIRPREFIX

    The prefix used to specify a module directory on the Fortran compiler command +> The prefix used to specify a module directory on the Fortran compiler command line. This will be appended to the beginning of the directory in the $FORTRANMODDIR$FORTRANMODDIR construction variables when the $_FORTRANMODFLAG$_FORTRANMODFLAG variables is automatically generated.

    variables is automatically generated. +

    FORTRANMODDIRSUFFIXFORTRANMODDIRSUFFIX

    The suffix used to specify a module directory on the Fortran compiler command +> The suffix used to specify a module directory on the Fortran compiler command line. This will be appended to the beginning of the directory in the $FORTRANMODDIR$FORTRANMODDIR construction variables when the $_FORTRANMODFLAG$_FORTRANMODFLAG variables is automatically generated.

    variables is automatically generated. +

    _FORTRANMODFLAG_FORTRANMODFLAG

    An automatically-generated construction variable +> An automatically-generated construction variable containing the Fortran compiler command-line option for specifying the directory location where the Fortran compiler should place any module files that happen to get generated during compilation. The value of $_FORTRANMODFLAG$_FORTRANMODFLAG is created by prepending/appending $FORTRANMODDIRPREFIX$FORTRANMODDIRPREFIX and $FORTRANMODDIRSUFFIX$FORTRANMODDIRSUFFIX to the beginning and end of the directory in $FORTRANMODDIR$FORTRANMODDIR.

    . +

    FORTRANMODPREFIXFORTRANMODPREFIX

    The module file prefix used by the Fortran compiler. SCons assumes that +> The module file prefix used by the Fortran compiler. SCons assumes that the Fortran compiler follows the quasi-standard naming convention for module files of module_name.mod. As a result, this variable is left empty, by default. For situations in which the compiler does not necessarily follow the normal convention, the user may use this variable. Its value will be appended to every -module file name as scons attempts to resolve dependencies.

    FORTRANMODSUFFIXFORTRANMODSUFFIX

    The module file suffix used by the Fortran compiler. SCons assumes that +> The module file suffix used by the Fortran compiler. SCons assumes that the Fortran compiler follows the quasi-standard naming convention for module files of module_name.mod. As a result, this variable is set to ".mod", by default. For situations in which the compiler does not necessarily follow the normal convention, the user may use this variable. Its value will be appended to every -module file name as scons attempts to resolve dependencies.

    FORTRANPATHFORTRANPATH

    The list of directories that the Fortran compiler will search for +> The list of directories that the Fortran compiler will search for include files and (for some compilers) module files. The Fortran implicit dependency scanner will search these directories for include files (but not module files since they are autogenerated and, as such, may not @@ -25032,2492 +23249,2699 @@ include directory arguments in FORTRANFLAGS because the result will be non-portable and the directories will not be searched by the dependency scanner. Note: directory names in FORTRANPATH will be looked-up relative to the SConscript directory when they are used in a command. To force -sconsscons -to look-up a directory relative to the root of the source tree use #:

    env = Environment(FORTRANPATH='#/include')
    env = Environment(FORTRANPATH='#/include') +

    The directory look-up can also be forced using the -Dir The directory look-up can also be forced using the +Dir() -function:

    include = Dir('include')
    -env = Environment(FORTRANPATH=include)
    include = Dir('include') +env = Environment(FORTRANPATH=include) +

    The directory list will be added to command lines +> The directory list will be added to command lines through the automatically-generated $_FORTRANINCFLAGS$_FORTRANINCFLAGS construction variable, which is constructed by appending the values of the $INCPREFIX$INCPREFIX and $INCSUFFIX$INCSUFFIX construction variables to the beginning and end of each directory in $FORTRANPATH$FORTRANPATH. Any command lines you define that need the FORTRANPATH directory list should include $_FORTRANINCFLAGS$_FORTRANINCFLAGS:

    : +

    env = Environment(FORTRANCOM="my_compiler $_FORTRANINCFLAGS -c -o $TARGET $SOURCE")
    env = Environment(FORTRANCOM="my_compiler $_FORTRANINCFLAGS -c -o $TARGET $SOURCE") +
    FORTRANPPCOMFORTRANPPCOM

    The command line used to compile a Fortran source file to an object file +> The command line used to compile a Fortran source file to an object file after first running the file through the C preprocessor. By default, any options specified in the $FORTRANFLAGS$FORTRANFLAGS, $CPPFLAGS$CPPFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_FORTRANMODFLAG$_FORTRANMODFLAG, and $_FORTRANINCFLAGS$_FORTRANINCFLAGS -construction variables are included on this command line.

    FORTRANPPCOMSTRFORTRANPPCOMSTR

    The string displayed when a Fortran source file +> The string displayed when a Fortran source file is compiled to an object file after first running the file throught the C preprocessor. If this is not set, then $FORTRANPPCOM$FORTRANPPCOM -(the command line) is displayed.

    FORTRANSUFFIXESFORTRANPPFILESUFFIXES

    The list of suffixes of files that will be scanned +> The list of file extensions for which the compilation + preprocessor pass for +FORTRAN dialect will be used. By default, this is ['.fpp', '.FPP'] +

    FORTRANSUFFIXES

    The list of suffixes of files that will be scanned for Fortran implicit dependencies (INCLUDE lines and USE statements). -The default list is:

    [".f", ".F", ".for", ".FOR", ".ftn", ".FTN", ".fpp", ".FPP",
    -".f77", ".F77", ".f90", ".F90", ".f95", ".F95"]
    [".f", ".F", ".for", ".FOR", ".ftn", ".FTN", ".fpp", ".FPP", +".f77", ".F77", ".f90", ".F90", ".f95", ".F95"] +
    FRAMEWORKPATHFRAMEWORKPATH

    On Mac OS X with gcc, +> On Mac OS X with gcc, a list containing the paths to search for frameworks. Used by the compiler to find framework-style includes like #include <Fmwk/Header.h>. Used by the linker to find user-specified frameworks when linking (see $FRAMEWORKS$FRAMEWORKS). -For example:

     env.AppendUnique(FRAMEWORKPATH='#myframeworkdir')
    env.AppendUnique(FRAMEWORKPATH='#myframeworkdir') +

    will add

    will add +

      ... -Fmyframeworkdir
    ... -Fmyframeworkdir +

    to the compiler and linker command lines.

    to the compiler and linker command lines. +

    _FRAMEWORKPATH_FRAMEWORKPATH

    On Mac OS X with gcc, an automatically-generated construction variable +> On Mac OS X with gcc, an automatically-generated construction variable containing the linker command-line options corresponding to $FRAMEWORKPATH$FRAMEWORKPATH.

    . +

    FRAMEWORKPATHPREFIXFRAMEWORKPATHPREFIX

    On Mac OS X with gcc, the prefix to be used for the FRAMEWORKPATH entries. +> On Mac OS X with gcc, the prefix to be used for the FRAMEWORKPATH entries. (see $FRAMEWORKPATH$FRAMEWORKPATH). The default value is --F.

    -F. +

    FRAMEWORKPREFIXFRAMEWORKPREFIX

    On Mac OS X with gcc, +> On Mac OS X with gcc, the prefix to be used for linking in frameworks (see $FRAMEWORKS$FRAMEWORKS). The default value is --framework.

    -framework. +

    FRAMEWORKS_FRAMEWORKS

    On Mac OS X with gcc, a list of the framework names to be linked into a -program or shared library or bundle. -The default value is the empty list. -For example:

     env.AppendUnique(FRAMEWORKS=Split('System Cocoa SystemConfiguration'))

    _FRAMEWORKS

    On Mac OS X with gcc, +> On Mac OS X with gcc, an automatically-generated construction variable containing the linker command-line options -for linking with FRAMEWORKS.

    FRAMEWORKSFLAGSFRAMEWORKS

    On Mac OS X with gcc, +> On Mac OS X with gcc, a list of the framework names to be linked into a +program or shared library or bundle. +The default value is the empty list. +For example: +

    
 env.AppendUnique(FRAMEWORKS=Split('System Cocoa SystemConfiguration'))
    +

    FRAMEWORKSFLAGS

    On Mac OS X with gcc, general user-supplied frameworks options to be added at the end of a command line building a loadable module. (This has been largely superceded by the $FRAMEWORKPATH$FRAMEWORKPATH, $FRAMEWORKPATHPREFIX$FRAMEWORKPATHPREFIX, $FRAMEWORKPREFIX$FRAMEWORKPREFIX and $FRAMEWORKS$FRAMEWORKS variables -described above.)

    GSGS

    The Ghostscript program used to convert PostScript to PDF files.

    The Ghostscript program used to convert PostScript to PDF files. +

    GSCOMGSCOM

    The Ghostscript command line used to convert PostScript to PDF files.

    The Ghostscript command line used to convert PostScript to PDF files. +

    GSCOMSTRGSCOMSTR

    The string displayed when +> The string displayed when Ghostscript is used to convert a PostScript file to a PDF file. If this is not set, then $GSCOM$GSCOM (the command line) is displayed.

    (the command line) is displayed. +

    GSFLAGSGSFLAGS

    General options passed to the Ghostscript program -when converting PostScript to PDF files.

    General options passed to the Ghostscript program +when converting PostScript to PDF files. +

    IDLSUFFIXESIDLSUFFIXES

    The list of suffixes of files that will be scanned +> The list of suffixes of files that will be scanned for IDL implicit dependencies (#include or import lines). -The default list is:

    [".idl", ".IDL"]
    [".idl", ".IDL"] +
    INCPREFIXIMPLICIT_COMMAND_DEPENDENCIES

    The prefix used to specify an include directory on the C compiler command +> Controls whether or not SCons will +add implicit dependencies for the commands +executed to build targets.

    By default, SCons will add +to each target +an implicit dependency on the command +represented by the first argument on any +command line it executes. +The specific file for the dependency is +found by searching the +PATH +variable in the +ENV +environment used to execute the command.

    If the construction variable +$IMPLICIT_COMMAND_DEPENDENCIES +is set to a false value +(None, +False, +0, +etc.), +then the implicit dependency will +not be added to the targets +built with that construction environment. +

    
env = Environment(IMPLICIT_COMMAND_DEPENDENCIES = 0)
    +
    INCPREFIX

    The prefix used to specify an include directory on the C compiler command line. This will be appended to the beginning of each directory -in the $CPPPATH and $FORTRANPATH$CPPPATH and $FORTRANPATH construction variables -when the $_CPPINCFLAGS and $_FORTRANINCFLAGS$_CPPINCFLAGS and $_FORTRANINCFLAGS -variables are automatically generated.

    INCSUFFIXINCSUFFIX

    The suffix used to specify an include directory on the C compiler command +> The suffix used to specify an include directory on the C compiler command line. This will be appended to the end of each directory -in the $CPPPATH and $FORTRANPATH$CPPPATH and $FORTRANPATH construction variables -when the $_CPPINCFLAGS and $_FORTRANINCFLAGS$_CPPINCFLAGS and $_FORTRANINCFLAGS -variables are automatically generated.

    INSTALLINSTALL

    A function to be called to install a file into a +> A function to be called to install a file into a destination file name. The default function copies the file into the destination (and sets the destination file's mode and permission bits to match the source file's). -The function takes the following arguments:

    def install(dest, source, env):
    def install(dest, source, env): +

    dest dest is the path name of the destination file. -sourcesource is the path name of the source file. -envenv is the construction environment (a dictionary of construction values) -in force for this file installation.

    INSTALLSTRINSTALLSTR

    The string displayed when a file is +> The string displayed when a file is installed into a destination file name. -The default is:

    Install file: "$SOURCE" as "$TARGET"
    Install file: "$SOURCE" as "$TARGET" +
    INTEL_C_COMPILER_VERSIONINTEL_C_COMPILER_VERSION

    Set by the "intelc" Tool +> Set by the "intelc" Tool to the major version number of the Intel C compiler -selected for use.

    JARJAR

    The Java archive tool.

    The Java archive tool. +

    JARCHDIRJARCHDIR

    The directory to which the Java archive tool should change +> The directory to which the Java archive tool should change (using the --C-C -option).

    JARCOMJARCOM

    The command line used to call the Java archive tool.

    The command line used to call the Java archive tool. +

    JARCOMSTRJARCOMSTR

    The string displayed when the Java archive tool +> The string displayed when the Java archive tool is called -If this is not set, then $JARCOM (the command line) is displayed.

    $JARCOM (the command line) is displayed. +

    env = Environment(JARCOMSTR = "JARchiving $SOURCES into $TARGET")
    env = Environment(JARCOMSTR = "JARchiving $SOURCES into $TARGET") +
    JARFLAGSJARFLAGS

    General options passed to the Java archive tool. +> General options passed to the Java archive tool. By default this is set to -cfcf to create the necessary jar -file.

    JARSUFFIXJARSUFFIX

    The suffix for Java archives: +> The suffix for Java archives: .jar -by default.

    JAVACJAVABOOTCLASSPATH

    The Java compiler.

    Specifies the list of directories that +will be added to the +javac command line +via the -bootclasspath option. +The individual directory names will be +separated by the operating system's path separate character +(: on UNIX/Linux/POSIX, +; on Windows). +

    JAVACCOMJAVAC

    The command line used to compile a directory tree containing +> The Java compiler. +

    JAVACCOM

    The command line used to compile a directory tree containing Java source files to corresponding Java class files. Any options specified in the $JAVACFLAGS$JAVACFLAGS construction variable -are included on this command line.

    JAVACCOMSTRJAVACCOMSTR

    The string displayed when compiling +> The string displayed when compiling a directory tree of Java source files to corresponding Java class files. If this is not set, then $JAVACCOM$JAVACCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(JAVACCOMSTR = "Compiling class files $TARGETS from $SOURCES")
    env = Environment(JAVACCOMSTR = "Compiling class files $TARGETS from $SOURCES") +
    JAVACFLAGSJAVACFLAGS

    General options that are passed to the Java compiler.

    General options that are passed to the Java compiler. +

    JAVACLASSDIRJAVACLASSDIR

    The directory in which Java class files may be found. +> The directory in which Java class files may be found. This is stripped from the beginning of any Java .class file names supplied to the JavaH -builder.

    JAVACLASSSUFFIXJAVACLASSPATH

    The suffix for Java class files; +> Specifies the list of directories that +will be searched for Java .class file. +The directories in this list will be added to the +javac and javah command lines +via the -classpath option. +The individual directory names will be +separated by the operating system's path separate character +(: on UNIX/Linux/POSIX, +; on Windows).

    Note that this currently just adds the specified +directory via the -classpath option. +SCons does not currently search the +$JAVACLASSPATH directories for dependency +.class files. +

    JAVACLASSSUFFIX

    The suffix for Java class files; +.class -by default.

    JAVAHJAVAH

    The Java generator for C header and stub files.

    The Java generator for C header and stub files. +

    JAVAHCOMJAVAHCOM

    The command line used to generate C header and stub files +> The command line used to generate C header and stub files from Java classes. Any options specified in the $JAVAHFLAGS$JAVAHFLAGS construction variable -are included on this command line.

    JAVAHCOMSTRJAVAHCOMSTR

    The string displayed when C header and stub files +> The string displayed when C header and stub files are generated from Java classes. If this is not set, then $JAVAHCOM$JAVAHCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(JAVAHCOMSTR = "Generating header/stub file(s) $TARGETS from $SOURCES")
    env = Environment(JAVAHCOMSTR = "Generating header/stub file(s) $TARGETS from $SOURCES") +
    JAVAHFLAGSJAVAHFLAGS

    General options passed to the C header and stub file generator -for Java classes.

    General options passed to the C header and stub file generator +for Java classes. +

    JAVASUFFIXJAVASOURCEPATH

    The suffix for Java files; +> Specifies the list of directories that +will be searched for input .java file. +The directories in this list will be added to the +javac command line +via the -sourcepath option. +The individual directory names will be +separated by the operating system's path separate character +(: on UNIX/Linux/POSIX, +; on Windows).

    Note that this currently just adds the specified +directory via the -sourcepath option. +SCons does not currently search the +$JAVASOURCEPATH directories for dependency +.java files. +

    JAVASUFFIX

    The suffix for Java files; +.java -by default.

    LATEXJAVAVERSION

    The LaTeX structured formatter and typesetter.

    Specifies the Java version being used by the Java builder. +This is not currently used to select one +version of the Java compiler vs. another. +Instead, you should set this to specify the version of Java +supported by your javac compiler. +The default is 1.4.

    This is sometimes necessary because +Java 1.5 changed the file names that are created +for nested anonymous inner classes, +which can cause a mismatch with the files +that SCons expects will be generated by the javac compiler. +Setting $JAVAVERSION to 1.5 +(or 1.6, as appropriate) +can make SCons realize that a Java 1.5 or 1.6 +build is actually up to date. +

    LATEXCOMLATEX

    The command line used to call the LaTeX structured formatter and typesetter.

    The LaTeX structured formatter and typesetter. +

    LATEXCOMSTRLATEXCOM

    The string displayed when calling +> The command line used to call the LaTeX structured formatter and typesetter. +

    LATEXCOMSTR

    The string displayed when calling the LaTeX structured formatter and typesetter. If this is not set, then $LATEXCOM$LATEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(LATEXCOMSTR = "Building $TARGET from LaTeX input $SOURCES")
    env = Environment(LATEXCOMSTR = "Building $TARGET from LaTeX input $SOURCES") +
    LATEXFLAGSLATEXFLAGS

    General options passed to the LaTeX structured formatter and typesetter.

    General options passed to the LaTeX structured formatter and typesetter. +

    LATEXRETRIESLATEXRETRIES

    The maximum number of times that LaTeX +> The maximum number of times that LaTeX will be re-run if the .log generated by the $LATEXCOM$LATEXCOM command indicates that there are undefined references. The default is to try to resolve undefined references -by re-running LaTeX up to three times.

    LATEXSUFFIXESLATEXSUFFIXES

    The list of suffixes of files that will be scanned +> The list of suffixes of files that will be scanned for LaTeX implicit dependencies (\include or \import files). -The default list is:

    [".tex", ".ltx", ".latex"]
    [".tex", ".ltx", ".latex"] +
    LDMODULELDMODULE

    The linker for building loadable modules. +> The linker for building loadable modules. By default, this is the same as $SHLINK$SHLINK.

    . +

    LDMODULECOMLDMODULECOM

    The command line for building loadable modules. +> The command line for building loadable modules. On Mac OS X, this uses the $LDMODULE$LDMODULE, $LDMODULEFLAGS$LDMODULEFLAGS and $FRAMEWORKSFLAGS$FRAMEWORKSFLAGS variables. On other systems, this is the same as $SHLINK$SHLINK.

    . +

    LDMODULECOMSTRLDMODULECOMSTR

    The string displayed when building loadable modules. +> The string displayed when building loadable modules. If this is not set, then $LDMODULECOM$LDMODULECOM (the command line) is displayed.

    (the command line) is displayed. +

    LDMODULEFLAGSLDMODULEFLAGS

    General user options passed to the linker for building loadable modules.

    General user options passed to the linker for building loadable modules. +

    LDMODULEPREFIXLDMODULEPREFIX

    The prefix used for loadable module file names. +> The prefix used for loadable module file names. On Mac OS X, this is null; on other systems, this is the same as $SHLIBPREFIX$SHLIBPREFIX.

    . +

    LDMODULESUFFIXLDMODULESUFFIX

    The suffix used for loadable module file names. +> The suffix used for loadable module file names. On Mac OS X, this is null; on other systems, this is -the same as $SHLIBSUFFIX.

    LEXLEX

    The lexical analyzer generator.

    The lexical analyzer generator. +

    LEXCOMLEXCOM

    The command line used to call the lexical analyzer generator -to generate a source file.

    The command line used to call the lexical analyzer generator +to generate a source file. +

    LEXCOMSTRLEXCOMSTR

    The string displayed when generating a source file +> The string displayed when generating a source file using the lexical analyzer generator. If this is not set, then $LEXCOM$LEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(LEXCOMSTR = "Lex'ing $TARGET from $SOURCES")
    env = Environment(LEXCOMSTR = "Lex'ing $TARGET from $SOURCES") +
    LEXFLAGSLEXFLAGS

    General options passed to the lexical analyzer generator.

    General options passed to the lexical analyzer generator. +

    _LIBDIRFLAGS_LIBDIRFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the linker command-line options for specifying directories to be searched for library. -The value of $_LIBDIRFLAGS$_LIBDIRFLAGS is created -by appending $LIBDIRPREFIX and $LIBDIRSUFFIX$LIBDIRPREFIX and $LIBDIRSUFFIX to the beginning and end -of each directory in $LIBPATH.

    $LIBPATH. +

    LIBDIRPREFIXLIBDIRPREFIX

    The prefix used to specify a library directory on the linker command line. +> The prefix used to specify a library directory on the linker command line. This will be appended to the beginning of each directory -in the $LIBPATH$LIBPATH construction variable -when the $_LIBDIRFLAGS variable is automatically generated.

    $_LIBDIRFLAGS variable is automatically generated. +

    LIBDIRSUFFIXLIBDIRSUFFIX

    The suffix used to specify a library directory on the linker command line. +> The suffix used to specify a library directory on the linker command line. This will be appended to the end of each directory -in the $LIBPATH$LIBPATH construction variable -when the $_LIBDIRFLAGS variable is automatically generated.

    $_LIBDIRFLAGS variable is automatically generated. +

    _LIBFLAGS_LIBFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the linker command-line options for specifying libraries to be linked with the resulting target. -The value of $_LIBFLAGS$_LIBFLAGS is created -by appending $LIBLINKPREFIX and $LIBLINKSUFFIX$LIBLINKPREFIX and $LIBLINKSUFFIX to the beginning and end -of each filename in $LIBS.

    $LIBS. +

    LIBLINKPREFIXLIBLINKPREFIX

    The prefix used to specify a library to link on the linker command line. +> The prefix used to specify a library to link on the linker command line. This will be appended to the beginning of each library -in the $LIBS$LIBS construction variable -when the $_LIBFLAGS variable is automatically generated.

    $_LIBFLAGS variable is automatically generated. +

    LIBLINKSUFFIXLIBLINKSUFFIX

    The suffix used to specify a library to link on the linker command line. +> The suffix used to specify a library to link on the linker command line. This will be appended to the end of each library -in the $LIBS$LIBS construction variable -when the $_LIBFLAGS variable is automatically generated.

    $_LIBFLAGS variable is automatically generated. +

    LIBPATHLIBPATH

    The list of directories that will be searched for libraries. +> The list of directories that will be searched for libraries. The implicit dependency scanner will search these directories for include files. Don't explicitly put include directory -arguments in $LINKFLAGS or $SHLINKFLAGS$LINKFLAGS or $SHLINKFLAGS because the result will be non-portable and the directories will not be searched by the dependency scanner. Note: directory names in LIBPATH will be looked-up relative to the SConscript directory when they are used in a command. To force -sconsscons -to look-up a directory relative to the root of the source tree use #:

    env = Environment(LIBPATH='#/libs')
    env = Environment(LIBPATH='#/libs') +

    The directory look-up can also be forced using the -Dir The directory look-up can also be forced using the +Dir() -function:

    libs = Dir('libs')
    -env = Environment(LIBPATH=libs)
    libs = Dir('libs') +env = Environment(LIBPATH=libs) +

    The directory list will be added to command lines +> The directory list will be added to command lines through the automatically-generated -$_LIBDIRFLAGS$_LIBDIRFLAGS construction variable, which is constructed by appending the values of the -$LIBDIRPREFIX and $LIBDIRSUFFIX$LIBDIRPREFIX and $LIBDIRSUFFIX construction variables to the beginning and end -of each directory in $LIBPATH$LIBPATH. Any command lines you define that need the LIBPATH directory list should -include $_LIBDIRFLAGS:

    $_LIBDIRFLAGS: +

    env = Environment(LINKCOM="my_linker $_LIBDIRFLAGS $_LIBFLAGS -o $TARGET $SOURCE")
    env = Environment(LINKCOM="my_linker $_LIBDIRFLAGS $_LIBFLAGS -o $TARGET $SOURCE") +
    LIBPREFIXLIBPREFIX

    The prefix used for (static) library file names. +> The prefix used for (static) library file names. A default value is set for each platform (posix, win32, os2, etc.), but the value is overridden by individual tools (ar, mslib, sgiar, sunar, tlib, etc.) -to reflect the names of the libraries they create.

    LIBPREFIXESLIBPREFIXES

    A list of all legal prefixes for library file names. +> A list of all legal prefixes for library file names. When searching for library dependencies, SCons will look for files with these prefixes, the base library name, -and suffixes in the $LIBSUFFIXES list.

    $LIBSUFFIXES list. +

    LIBSLIBS

    A list of one or more libraries +> A list of one or more libraries that will be linked with any executable programs created by this environment.

    The library list will be added to command lines through the automatically-generated -$_LIBFLAGS$_LIBFLAGS construction variable, which is constructed by appending the values of the -$LIBLINKPREFIX and $LIBLINKSUFFIX$LIBLINKPREFIX and $LIBLINKSUFFIX construction variables to the beginning and end -of each filename in $LIBS$LIBS. Any command lines you define that need the LIBS library list should -include $_LIBFLAGS:

    $_LIBFLAGS: +

    env = Environment(LINKCOM="my_linker $_LIBDIRFLAGS $_LIBFLAGS -o $TARGET $SOURCE")
    env = Environment(LINKCOM="my_linker $_LIBDIRFLAGS $_LIBFLAGS -o $TARGET $SOURCE") +

    If you add a +> If you add a File object to the -$LIBS$LIBS list, the name of that file will be added to -$_LIBFLAGS$_LIBFLAGS, and thus the link line, as is, without -$LIBLINKPREFIX$LIBLINKPREFIX or -$LIBLINKSUFFIX$LIBLINKSUFFIX. -For example:

    env.Append(LIBS=File('/tmp/mylib.so'))
    env.Append(LIBS=File('/tmp/mylib.so')) +

    In all cases, scons will add dependencies from the executable program to -all the libraries in this list.

    In all cases, scons will add dependencies from the executable program to +all the libraries in this list. +

    LIBSUFFIXLIBSUFFIX

    The suffix used for (static) library file names. +> The suffix used for (static) library file names. A default value is set for each platform (posix, win32, os2, etc.), but the value is overridden by individual tools (ar, mslib, sgiar, sunar, tlib, etc.) -to reflect the names of the libraries they create.

    LIBSUFFIXESLIBSUFFIXES

    A list of all legal suffixes for library file names. +> A list of all legal suffixes for library file names. When searching for library dependencies, -SCons will look for files with prefixes, in the $LIBPREFIXES$LIBPREFIXES list, the base library name, -and these suffixes.

    LINKLICENSE

    The linker.

    The abbreviated name of the license under which +this project is released (gpl, lpgl, bsd etc.). +See http://www.opensource.org/licenses/alphabetical +for a list of license names. +

    LINKCOMLINK

    The command line used to link object files into an executable.

    The linker. +

    LINKCOMSTRLINKCOM

    The string displayed when object files +> The command line used to link object files into an executable. +

    LINKCOMSTR

    The string displayed when object files are linked into an executable. If this is not set, then $LINKCOM$LINKCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(LINKCOMSTR = "Linking $TARGET")
    env = Environment(LINKCOMSTR = "Linking $TARGET") +
    LINKFLAGSLINKFLAGS

    General user options passed to the linker. +> General user options passed to the linker. Note that this variable should -not contain --l-l (or similar) options for linking with the libraries listed in $LIBS$LIBS, nor --L-L (or similar) library search path options that scons generates automatically from $LIBPATH$LIBPATH. See $_LIBFLAGS$_LIBFLAGS above, for the variable that expands to library-link options, and $_LIBDIRFLAGS$_LIBDIRFLAGS above, -for the variable that expands to library search path options.

    M4M4

    The M4 macro preprocessor.

    The M4 macro preprocessor. +

    M4COMM4COM

    The command line used to pass files through the M4 macro preprocessor.

    The command line used to pass files through the M4 macro preprocessor. +

    M4COMSTRM4COMSTR

    The string displayed when +> The string displayed when a file is passed through the M4 macro preprocessor. If this is not set, then $M4COM$M4COM (the command line) is displayed.

    (the command line) is displayed. +

    M4FLAGSM4FLAGS

    General options passed to the M4 macro preprocessor.

    General options passed to the M4 macro preprocessor. +

    MAKEINDEXMAKEINDEX

    The makeindex generator for the TeX formatter and typesetter and the -LaTeX structured formatter and typesetter.

    The makeindex generator for the TeX formatter and typesetter and the +LaTeX structured formatter and typesetter. +

    MAKEINDEXCOMMAKEINDEXCOM

    The command line used to call the makeindex generator for the +> The command line used to call the makeindex generator for the TeX formatter and typesetter and the LaTeX structured formatter and -typesetter.

    MAKEINDEXCOMSTRMAKEINDEXCOMSTR

    The string displayed when calling the makeindex generator for the +> The string displayed when calling the makeindex generator for the TeX formatter and typesetter and the LaTeX structured formatter and typesetter. If this is not set, then $MAKEINDEXCOM$MAKEINDEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    MAKEINDEXFLAGSMAKEINDEXFLAGS

    General options passed to the makeindex generator for the TeX formatter -and typesetter and the LaTeX structured formatter and typesetter.

    General options passed to the makeindex generator for the TeX formatter +and typesetter and the LaTeX structured formatter and typesetter. +

    MAXLINELENGTHMAXLINELENGTH

    The maximum number of characters allowed on an external command line. +> The maximum number of characters allowed on an external command line. On Win32 systems, link lines longer than this many characters -are linked via a temporary file name.

    MIDLMIDL

    The Microsoft IDL compiler.

    The Microsoft IDL compiler. +

    MIDLCOMMIDLCOM

    The command line used to pass files to the Microsoft IDL compiler.

    The command line used to pass files to the Microsoft IDL compiler. +

    MIDLCOMSTRMIDLCOMSTR

    The string displayed when +> The string displayed when the Microsoft IDL copmiler is called. If this is not set, then $MIDLCOM$MIDLCOM (the command line) is displayed.

    (the command line) is displayed. +

    MIDLFLAGSMIDLFLAGS

    General options passed to the Microsoft IDL compiler.

    General options passed to the Microsoft IDL compiler. +

    MSVSMSVS

    When the Microsoft Visual Studio tools are initialized, they set up +> When the Microsoft Visual Studio tools are initialized, they set up this dictionary with the following keys:

    VERSIONVERSION: the version of MSVS being used (can be set via MSVS_VERSION)

    VERSIONSVERSIONS: the available versions of MSVS installed

    VCINSTALLDIRVCINSTALLDIR: installed directory of Visual C++

    VSINSTALLDIRVSINSTALLDIR: installed directory of Visual Studio

    FRAMEWORKDIRFRAMEWORKDIR: installed directory of the .NET framework

    FRAMEWORKVERSIONSFRAMEWORKVERSIONS: list of installed versions of the .NET framework, sorted latest to oldest.

    FRAMEWORKVERSIONFRAMEWORKVERSION: latest installed version of the .NET framework

    FRAMEWORKSDKDIRFRAMEWORKSDKDIR: installed location of the .NET SDK.

    PLATFORMSDKDIRPLATFORMSDKDIR: installed location of the Platform SDK.

    PLATFORMSDK_MODULESPLATFORMSDK_MODULES: dictionary of installed Platform SDK modules, where the dictionary keys are keywords for the various modules, and the values are 2-tuples where the first is the release date, and the second is the version number.

    If a value isn't set, it wasn't available in the registry.

    If a value isn't set, it wasn't available in the registry. +

    MSVS_IGNORE_IDE_PATHSMSVS_IGNORE_IDE_PATHS

    Tells the MS Visual Studio tools to use minimal INCLUDE, LIB, and PATH settings, +> Tells the MS Visual Studio tools to use minimal INCLUDE, LIB, and PATH settings, instead of the settings from the IDE.

    For Visual Studio, SCons will (by default) automatically determine where MSVS is installed, and use the LIB, INCLUDE, and PATH variables set by the IDE. You can override this behavior by setting these variables after Environment initialization, or by setting -MSVS_IGNORE_IDE_PATHS = 1MSVS_IGNORE_IDE_PATHS = 1 in the Environment initialization. Specifying this will not leave these unset, but will set them to a minimal set of paths needed to run the tools successfully.

    For VS6, the mininimal set is:

    For VS6, the mininimal set is: +

       INCLUDE:'<VSDir>\VC98\ATL\include;<VSDir>\VC98\MFC\include;<VSDir>\VC98\include'
    +CLASS="programlisting"
    +>
   INCLUDE:'<VSDir>\VC98\ATL\include;<VSDir>\VC98\MFC\include;<VSDir>\VC98\include'
        LIB:'<VSDir>\VC98\MFC\lib;<VSDir>\VC98\lib'
    -   PATH:'<VSDir>\Common\MSDev98\bin;<VSDir>\VC98\bin'

    For VS7, it is:

    For VS7, it is: +

       INCLUDE:'<VSDir>\Vc7\atlmfc\include;<VSDir>\Vc7\include'
    +CLASS="programlisting"
    +>
   INCLUDE:'<VSDir>\Vc7\atlmfc\include;<VSDir>\Vc7\include'
        LIB:'<VSDir>\Vc7\atlmfc\lib;<VSDir>\Vc7\lib'
    -   PATH:'<VSDir>\Common7\Tools\bin;<VSDir>\Common7\Tools;<VSDir>\Vc7\bin'

    Where '<VSDir>' is the installed location of Visual Studio.

    Where '<VSDir>' is the installed location of Visual Studio. +

    MSVS_PROJECT_BASE_PATHMSVS_PROJECT_BASE_PATH

    The string +> The string placed in a generated Microsoft Visual Studio solution file as the value of the SccProjectFilePathRelativizedFromConnection0 and SccProjectFilePathRelativizedFromConnection1 attributes of the GlobalSection(SourceCodeControl) section. -There is no default value.

    MSVS_PROJECT_GUIDMSVS_PROJECT_GUID

    The string +> The string placed in a generated Microsoft Visual Studio project file as the value of the ProjectGUID attribute. The string is also placed in the SolutionUniqueID attribute of the GlobalSection(SourceCodeControl) section of the Microsoft Visual Studio solution file. -There is no default value.

    MSVS_SCC_AUX_PATHMSVS_SCC_AUX_PATH

    The path name +> The path name placed in a generated Microsoft Visual Studio project file as the value of the SccAuxPath attribute if the -MSVS_SCC_PROVIDERMSVS_SCC_PROVIDER construction variable is also set. -There is no default value.

    MSVS_SCC_LOCAL_PATHMSVS_SCC_LOCAL_PATH

    The path name +> The path name placed in a generated Microsoft Visual Studio project file as the value of the SccLocalPath attribute if the -MSVS_SCC_PROVIDERMSVS_SCC_PROVIDER construction variable is also set. The path name is also placed in the SccLocalPath0 and SccLocalPath1 attributes of the GlobalSection(SourceCodeControl) section of the Microsoft Visual Studio solution file. -There is no default value.

    MSVS_SCC_PROJECT_NAMEMSVS_SCC_PROJECT_NAME

    The project name +> The project name placed in a generated Microsoft Visual Studio project file as the value of the SccProjectName attribute. -There is no default value.

    MSVS_SCC_PROVIDERMSVS_SCC_PROVIDER

    The string +> The string placed in a generated Microsoft Visual Studio project file as the value of the SccProvider attribute. The string is also placed in the SccProvider1 attribute of the GlobalSection(SourceCodeControl) section of the Microsoft Visual Studio solution file. -There is no default value.

    MSVS_USE_MFC_DIRSMSVS_USE_MFC_DIRS

    Tells the MS Visual Studio tool(s) to use +> Tells the MS Visual Studio tool(s) to use the MFC directories in its default paths for compiling and linking. -The $MSVS_USE_MFC_DIRS$MSVS_USE_MFC_DIRS variable has no effect if the -INCLUDEINCLUDE or -LIBLIB environment variables are set explictly.

    Under Visual Studio version 6, setting -$MSVS_USE_MFC_DIRS$MSVS_USE_MFC_DIRS to a non-zero value adds the ATL\include and MFC\include directories to the default -INCLUDEINCLUDE external environment variable, and adds the MFC\lib directory to the default -LIBLIB external environment variable.

    Under Visual Studio version 7, setting -$MSVS_USE_MFC_DIRS$MSVS_USE_MFC_DIRS to a non-zero value adds the atlmfc\include directory to the default -INCLUDEINCLUDE external environment variable, and adds the atlmfc\lib directory to the default -LIBLIB external environment variable.

    Under Visual Studio version 8, setting -$MSVS_USE_MFC_DIRS$MSVS_USE_MFC_DIRS to a non-zero value will, by default, add the atlmfc\include directory to the default -INCLUDEINCLUDE external environment variable, and the atlmfc\lib directory to the default -LIBLIB external environment variable. If, however, the -['MSVS']['PLATFORMSDKDIR']['MSVS']['PLATFORMSDKDIR'] variable is set, then the mfc and the atl subdirectories of the -PLATFORMSDKDIRPLATFORMSDKDIR are added to the default value of the -INCLUDEINCLUDE external environment variable, and the default value of the -LIBLIB -external environment variable is left untouched.

    MSVS_VERSIONMSVS_VERSION

    Sets the preferred version of MSVS to use.

    Sets the preferred version of MSVS to use.

    SCons will (by default) select the latest version of MSVS installed on your machine. @@ -27525,160 +25949,169 @@ So, if you have version 6 and version 7 (MSVS .NET) installed, it will prefer version 7. You can override this by specifying the -MSVS_VERSIONMSVS_VERSION variable in the Environment initialization, setting it to the appropriate version ('6.0' or '7.0', for example). -If the given version isn't installed, tool initialization will fail.

    MSVSBUILDCOMMSVSBUILDCOM

    The build command line placed in +> The build command line placed in a generated Microsoft Visual Studio project file. The default is to have Visual Studio invoke SCons with any specified -build targets.

    MSVSCLEANCOMMSVSCLEANCOM

    The clean command line placed in +> The clean command line placed in a generated Microsoft Visual Studio project file. The default is to have Visual Studio invoke SCons with the -c option -to remove any specified targets.

    MSVSENCODINGMSVSENCODING

    The encoding string placed in +> The encoding string placed in a generated Microsoft Visual Studio project file. The default is encoding Windows-1252.

    . +

    MSVSPROJECTCOMMSVSPROJECTCOM

    The action used to generate Microsoft Visual Studio project files.

    The action used to generate Microsoft Visual Studio project files. +

    MSVSPROJECTSUFFIXMSVSPROJECTSUFFIX

    The suffix used for Microsoft Visual Studio project (DSP) files. +> The suffix used for Microsoft Visual Studio project (DSP) files. The default value is .vcproj when using Visual Studio version 7.x (.NET) or later version, and .dsp -when using earlier versions of Visual Studio.

    MSVSREBUILDCOMMSVSREBUILDCOM

    The rebuild command line placed in +> The rebuild command line placed in a generated Microsoft Visual Studio project file. The default is to have Visual Studio invoke SCons with any specified -rebuild targets.

    MSVSSCONSMSVSSCONS

    The SCons used in generated Microsoft Visual Studio project files. +> The SCons used in generated Microsoft Visual Studio project files. The default is the version of SCons being -used to generate the project file.

    MSVSSCONSCOMMSVSSCONSCOM

    The default SCons command used in generated Microsoft Visual Studio -project files.

    The default SCons command used in generated Microsoft Visual Studio +project files. +

    MSVSSCONSCRIPTMSVSSCONSCRIPT

    The sconscript file +> The sconscript file (that is, SConstruct or SConscript file) @@ -27686,1263 +26119,1337 @@ that will be invoked by Visual Studio project files (through the $MSVSSCONSCOM$MSVSSCONSCOM variable). The default is the same sconscript file that contains the call to -MSVSProjectMSVSProject -to build the project file.

    MSVSSCONSFLAGSMSVSSCONSFLAGS

    The SCons flags used in generated Microsoft Visual Studio -project files.

    The SCons flags used in generated Microsoft Visual Studio +project files. +

    MSVSSOLUTIONCOMMSVSSOLUTIONCOM

    The action used to generate Microsoft Visual Studio solution files.

    The action used to generate Microsoft Visual Studio solution files. +

    MSVSSOLUTIONSUFFIXMSVSSOLUTIONSUFFIX

    The suffix used for Microsoft Visual Studio solution (DSW) files. +> The suffix used for Microsoft Visual Studio solution (DSW) files. The default value is .sln when using Visual Studio version 7.x (.NET), and .dsw -when using earlier versions of Visual Studio.

    MWCW_VERSIONMWCW_VERSION

    The version number of the MetroWerks CodeWarrior C compiler -to be used.

    The version number of the MetroWerks CodeWarrior C compiler +to be used. +

    MWCW_VERSIONSMWCW_VERSIONS

    A list of installed versions of the MetroWerks CodeWarrior C compiler -on this system.

    A list of installed versions of the MetroWerks CodeWarrior C compiler +on this system. +

    no_import_libNAME

    When set to non-zero, +> Specfies the name of the project to package. +

    no_import_lib

    When set to non-zero, suppresses creation of a corresponding Windows static import lib by the SharedLibrary builder when used with MinGW, Microsoft Visual Studio or Metrowerks. This also suppresses creation of an export (.exp) file -when using Microsoft Visual Studio.

    OBJPREFIXOBJPREFIX

    The prefix used for (static) object file names.

    The prefix used for (static) object file names. +

    OBJSUFFIXOBJSUFFIX

    The suffix used for (static) object file names.

    The suffix used for (static) object file names. +

    P4P4

    The Perforce executable.

    The Perforce executable. +

    P4COMP4COM

    The command line used to -fetch source files from Perforce.

    The command line used to +fetch source files from Perforce. +

    P4COMSTRP4COMSTR

    The string displayed when +> The string displayed when fetching a source file from Perforce. If this is not set, then $P4COM$P4COM (the command line) is displayed.

    (the command line) is displayed. +

    P4FLAGSP4FLAGS

    General options that are passed to Perforce.

    General options that are passed to Perforce. +

    PCHPACKAGEROOT

    The Microsoft Visual C++ precompiled header that will be used when compiling +> Specifies the directory where all files in resulting archive will be +placed if applicable. The default value is "$NAME-$VERSION". +

    PACKAGETYPE

    Selects the package type to build. Currently these are available:

    * msi - Microsoft Installer + * rpm - Redhat Package Manger + * ipkg - Itsy Package Management System + * tarbz2 - compressed tar + * targz - compressed tar + * zip - zip file + * src_tarbz2 - compressed tar source + * src_targz - compressed tar source + * src_zip - zip file source

    This may be overridden with the "package_type" command line option. +

    PACKAGEVERSION

    The version of the package (not the underlying project). +This is currently only used by the rpm packager +and should reflect changes in the packaging, +not the underlying project code itself. +

    PCH

    The Microsoft Visual C++ precompiled header that will be used when compiling object files. This variable is ignored by tools other than Microsoft Visual C++. When this variable is defined SCons will add options to the compiler command line to cause it to use the precompiled header, and will also set up the dependencies for the PCH file. -Example:

    env['PCH'] = 'StdAfx.pch'
    env['PCH'] = 'StdAfx.pch' +
    PCHCOMPCHCOM

    The command line used by the -PCH The command line used by the +PCH -builder to generated a precompiled header.

    PCHCOMSTRPCHCOMSTR

    The string displayed when generating a precompiled header. +> The string displayed when generating a precompiled header. If this is not set, then $PCHCOM$PCHCOM (the command line) is displayed.

    (the command line) is displayed. +

    PCHPDBFLAGSPCHPDBFLAGS

    A construction variable that, when expanded, +> A construction variable that, when expanded, adds the /yD flag to the command line -only if the $PDB construction variable is set.

    $PDB construction variable is set. +

    PCHSTOPPCHSTOP

    This variable specifies how much of a source file is precompiled. This +> This variable specifies how much of a source file is precompiled. This variable is ignored by tools other than Microsoft Visual C++, or when the PCH variable is not being used. When this variable is define it must be a string that is the name of the header that is included at the end of the precompiled portion of the source files, or -the empty string if the "#pragma hrdstop" construct is being used:

    env['PCHSTOP'] = 'StdAfx.h'
    env['PCHSTOP'] = 'StdAfx.h' +
    PDBPDB

    The Microsoft Visual C++ PDB file that will store debugging information for +> The Microsoft Visual C++ PDB file that will store debugging information for object files, shared libraries, and programs. This variable is ignored by tools other than Microsoft Visual C++. When this variable is defined SCons will add options to the compiler and linker command line to cause them to generate external debugging information, and will also set up the dependencies for the PDB file. -Example:

    env['PDB'] = 'hello.pdb'
    env['PDB'] = 'hello.pdb' +

    The Visual C++ compiler switch that SCons uses by default -to generate PDB information is /Z7 The Visual C++ compiler switch that SCons uses by default +to generate PDB information is /Z7. -This works correctly with parallel (-j-j) builds because it embeds the debug information in the intermediate object files, as opposed to sharing a single PDB file between multiple object files. This is also the only way to get debug information embedded into a static library. -Using the /Zi/Zi instead may yield improved link-time performance, although parallel builds will no longer work. -You can generate PDB files with the /Zi/Zi switch by overriding the default $CCPDBFLAGS$CCPDBFLAGS variable; -see the entry for that variable for specific examples.

    PDFCOMPDFCOM

    A deprecated synonym for $DVIPDFCOM A deprecated synonym for $DVIPDFCOM.

    . +

    PDFLATEXPDFLATEX

    The pdflatex utility.

    The pdflatex utility. +

    PDFLATEXCOMPDFLATEXCOM

    The command line used to call the pdflatex utility.

    The command line used to call the pdflatex utility. +

    PDFLATEXCOMSTRPDFLATEXCOMSTR

    The string displayed when calling the pdflatex The string displayed when calling the pdflatex utility. If this is not set, then $PDFLATEXCOM$PDFLATEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(PDFLATEX;COMSTR = "Building $TARGET from LaTeX input $SOURCES")
    env = Environment(PDFLATEX;COMSTR = "Building $TARGET from LaTeX input $SOURCES") +
    PDFLATEXFLAGSPDFLATEXFLAGS

    General options passed to the pdflatex utility.

    General options passed to the pdflatex utility. +

    PDFPREFIXPDFPREFIX

    The prefix used for PDF file names.

    The prefix used for PDF file names. +

    PDFSUFFIXPDFSUFFIX

    The suffix used for PDF file names.

    The suffix used for PDF file names. +

    PDFTEXPDFTEX

    The pdftex utility.

    The pdftex utility. +

    PDFTEXCOMPDFTEXCOM

    The command line used to call the pdftex utility.

    The command line used to call the pdftex utility. +

    PDFTEXCOMSTRPDFTEXCOMSTR

    The string displayed when calling the pdftex The string displayed when calling the pdftex utility. If this is not set, then $PDFTEXCOM$PDFTEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(PDFTEXCOMSTR = "Building $TARGET from TeX input $SOURCES")
    env = Environment(PDFTEXCOMSTR = "Building $TARGET from TeX input $SOURCES") +
    PDFTEXFLAGSPDFTEXFLAGS

    General options passed to the pdftex utility.

    General options passed to the pdftex utility. +

    PKGCHKPKGCHK

    On Solaris systems, +> On Solaris systems, the package-checking program that will -be used (along with $PKGINFO$PKGINFO) to look for installed versions of the Sun PRO C++ compiler. The default is /usr/sbin/pgkchk.

    . +

    PKGINFOPKGINFO

    On Solaris systems, +> On Solaris systems, the package information program that will -be used (along with $PKGCHK$PKGCHK) to look for installed versions of the Sun PRO C++ compiler. The default is pkginfo.

    . +

    PLATFORMPLATFORM

    The name of the platform used to create the Environment. If no platform is +> The name of the platform used to create the Environment. If no platform is specified when the Environment is created, -sconsscons -autodetects the platform.

    env = Environment(tools = [])
    +CLASS="programlisting"
    +>
env = Environment(tools = [])
     if env['PLATFORM'] == 'cygwin':
         Tool('mingw')(env)
     else:
    -    Tool('msvc')(env)
    PRINT_CMD_LINE_FUNCPRINT_CMD_LINE_FUNC

    A Python function used to print the command lines as they are executed +> A Python function used to print the command lines as they are executed (assuming command printing is not disabled by the --q-q or --s-s options or their equivalents). The function should take four arguments: -ss, the command being executed (a string), -targettarget, the target being built (file node, list, or string name(s)), -sourcesource, the source(s) used (file node, list, or string name(s)), and -envenv, the environment being used.

    The function must do the printing itself. The default implementation, -used if this variable is not set or is None, is:

    def print_cmd_line(s, target, source, env):
    -  sys.stdout.write(s + "\n")
    def print_cmd_line(s, target, source, env): + sys.stdout.write(s + "\n") +

    Here's an example of a more interesting function:

    Here's an example of a more interesting function: +

    def print_cmd_line(s, target, source, env):
    +CLASS="programlisting"
    +>
def print_cmd_line(s, target, source, env):
        sys.stdout.write("Building %s -> %s...\n" %
         (' and '.join([str(x) for x in source]),
          ' and '.join([str(x) for x in target])))
     env=Environment(PRINT_CMD_LINE_FUNC=print_cmd_line)
    -env.Program('foo', 'foo.c')

    This just prints "Building targetname from sourcename This just prints "Building targetname from sourcename..." instead of the actual commands. Such a function could also log the actual commands to a log file, -for example.

    PROGPREFIXPROGPREFIX

    The prefix used for executable file names.

    The prefix used for executable file names. +

    PROGSUFFIXPROGSUFFIX

    The suffix used for executable file names.

    The suffix used for executable file names. +

    PSCOMPSCOM

    The command line used to convert TeX DVI files into a PostScript file.

    The command line used to convert TeX DVI files into a PostScript file. +

    PSCOMSTRPSCOMSTR

    The string displayed when a TeX DVI file +> The string displayed when a TeX DVI file is converted into a PostScript file. If this is not set, then $PSCOM$PSCOM (the command line) is displayed.

    (the command line) is displayed. +

    PSPREFIXPSPREFIX

    The prefix used for PostScript file names.

    The prefix used for PostScript file names. +

    PSSUFFIXPSSUFFIX

    The prefix used for PostScript file names.

    The prefix used for PostScript file names. +

    QT_AUTOSCANQT_AUTOSCAN

    Turn off scanning for mocable files. Use the Moc Builder to explicitely -specify files to run moc on.

    Turn off scanning for mocable files. Use the Moc Builder to explicitely +specify files to run moc on. +

    QT_BINPATHQT_BINPATH

    The path where the qt binaries are installed. +> The path where the qt binaries are installed. The default value is '$QTDIR$QTDIR/bin'.

    /bin'. +

    QT_CPPPATHQT_CPPPATH

    The path where the qt header files are installed. +> The path where the qt header files are installed. The default value is '$QTDIR$QTDIR/include'. Note: If you set this variable to None, the tool won't change the $CPPPATH$CPPPATH -construction variable.

    QT_DEBUGQT_DEBUG

    Prints lots of debugging information while scanning for moc files.

    Prints lots of debugging information while scanning for moc files. +

    QT_LIBQT_LIB

    Default value is 'qt'. You may want to set this to 'qt-mt'. Note: If you set +> Default value is 'qt'. You may want to set this to 'qt-mt'. Note: If you set this variable to None, the tool won't change the $LIBS$LIBS variable.

    variable. +

    QT_LIBPATHQT_LIBPATH

    The path where the qt libraries are installed. +> The path where the qt libraries are installed. The default value is '$QTDIR$QTDIR/lib'. Note: If you set this variable to None, the tool won't change the $LIBPATH$LIBPATH -construction variable.

    QT_MOCQT_MOC

    Default value is '$QT_BINPATH Default value is '$QT_BINPATH/moc'.

    /moc'. +

    QT_MOCCXXPREFIXQT_MOCCXXPREFIX

    Default value is ''. Prefix for moc output files, when source is a cxx file.

    Default value is ''. Prefix for moc output files, when source is a cxx file. +

    QT_MOCCXXSUFFIXQT_MOCCXXSUFFIX

    Default value is '.moc'. Suffix for moc output files, when source is a cxx -file.

    Default value is '.moc'. Suffix for moc output files, when source is a cxx +file. +

    QT_MOCFROMCXXCOMQT_MOCFROMCXXCOM

    Command to generate a moc file from a cpp file.

    Command to generate a moc file from a cpp file. +

    QT_MOCFROMCXXCOMSTRQT_MOCFROMCXXCOMSTR

    The string displayed when generating a moc file from a cpp file. +> The string displayed when generating a moc file from a cpp file. If this is not set, then $QT_MOCFROMCXXCOM$QT_MOCFROMCXXCOM (the command line) is displayed.

    (the command line) is displayed. +

    QT_MOCFROMCXXFLAGSQT_MOCFROMCXXFLAGS

    Default value is '-i'. These flags are passed to moc, when moccing a -C++ file.

    Default value is '-i'. These flags are passed to moc, when moccing a +C++ file. +

    QT_MOCFROMHCOMQT_MOCFROMHCOM

    Command to generate a moc file from a header.

    Command to generate a moc file from a header. +

    QT_MOCFROMHCOMSTRQT_MOCFROMHCOMSTR

    The string displayed when generating a moc file from a cpp file. +> The string displayed when generating a moc file from a cpp file. If this is not set, then $QT_MOCFROMHCOM$QT_MOCFROMHCOM (the command line) is displayed.

    (the command line) is displayed. +

    QT_MOCFROMHFLAGSQT_MOCFROMHFLAGS

    Default value is ''. These flags are passed to moc, when moccing a header -file.

    Default value is ''. These flags are passed to moc, when moccing a header +file. +

    QT_MOCHPREFIXQT_MOCHPREFIX

    Default value is 'moc_'. Prefix for moc output files, when source is a header.

    Default value is 'moc_'. Prefix for moc output files, when source is a header. +

    QT_MOCHSUFFIXQT_MOCHSUFFIX

    Default value is '$CXXFILESUFFIX Default value is '$CXXFILESUFFIX'. Suffix for moc output files, when source is -a header.

    QT_UICQT_UIC

    Default value is '$QT_BINPATH Default value is '$QT_BINPATH/uic'.

    /uic'. +

    QT_UICCOMQT_UICCOM

    Command to generate header files from .ui files.

    Command to generate header files from .ui files. +

    QT_UICCOMSTRQT_UICCOMSTR

    The string displayed when generating header files from .ui files. +> The string displayed when generating header files from .ui files. If this is not set, then $QT_UICCOM$QT_UICCOM (the command line) is displayed.

    (the command line) is displayed. +

    QT_UICDECLFLAGSQT_UICDECLFLAGS

    Default value is ''. These flags are passed to uic, when creating a a h -file from a .ui file.

    Default value is ''. These flags are passed to uic, when creating a a h +file from a .ui file. +

    QT_UICDECLPREFIXQT_UICDECLPREFIX

    Default value is ''. Prefix for uic generated header files.

    Default value is ''. Prefix for uic generated header files. +

    QT_UICDECLSUFFIXQT_UICDECLSUFFIX

    Default value is '.h'. Suffix for uic generated header files.

    Default value is '.h'. Suffix for uic generated header files. +

    QT_UICIMPLFLAGSQT_UICIMPLFLAGS

    Default value is ''. These flags are passed to uic, when creating a cxx -file from a .ui file.

    Default value is ''. These flags are passed to uic, when creating a cxx +file from a .ui file. +

    QT_UICIMPLPREFIXQT_UICIMPLPREFIX

    Default value is 'uic_'. Prefix for uic generated implementation files.

    Default value is 'uic_'. Prefix for uic generated implementation files. +

    QT_UICIMPLSUFFIXQT_UICIMPLSUFFIX

    Default value is '$CXXFILESUFFIX Default value is '$CXXFILESUFFIX'. Suffix for uic generated implementation -files.

    QT_UISUFFIXQT_UISUFFIX

    Default value is '.ui'. Suffix of designer input files.

    Default value is '.ui'. Suffix of designer input files. +

    QTDIRQTDIR

    The qt tool tries to take this from os.environ. +> The qt tool tries to take this from os.environ. It also initializes all QT_* construction variables listed below. (Note that all paths are constructed @@ -28951,48 +27458,44 @@ but are listed here with the '/' separator for easier reading.) In addition, the construction environment variables $CPPPATH$CPPPATH, $LIBPATH$LIBPATH and $LIBS$LIBS may be modified and the variables PROGEMITTER, SHLIBEMITTER and LIBEMITTER are modified. Because the build-performance is affected when using this tool, -you have to explicitly specify it at Environment creation:

    Environment(tools=['default','qt'])
    Environment(tools=['default','qt']) +

    The qt tool supports the following operations:

    The qt tool supports the following operations:

    Automatic moc file generation from header files. You do not have to specify moc files explicitly, the tool does it for you. However, there are a few preconditions to do so: Your header file must have @@ -29002,720 +27505,746 @@ can turn off automatic moc file generation by setting QT_AUTOSCAN to 0. See also the corresponding builder method .B Moc()

    Automatic moc file generation from cxx files. As stated in the qt documentation, include the moc file at the end of the cxx file. Note that you have to include the file, which is generated by the transformation ${QT_MOCCXXPREFIX}<basename>${QT_MOCCXXSUFFIX}, by default <basename>.moc. A warning is generated after building the moc file, if you -do not include the correct file. If you are using BuildDir, you may +do not include the correct file. If you are using VariantDir, you may need to specify duplicate=1. You can turn off automatic moc file generation by setting QT_AUTOSCAN to 0. See also the corresponding -MocMoc builder method.

    Automatic handling of .ui files. The implementation files generated from .ui files are handled much the same as yacc or lex files. Each .ui file given as a source of Program, Library or SharedLibrary will generate three files, the declaration file, the implementation file and a moc file. Because there are also generated headers, -you may need to specify duplicate=1 in calls to BuildDir. +you may need to specify duplicate=1 in calls to VariantDir. See also the corresponding -UicUic -builder method.

    RANLIBRANLIB

    The archive indexer.

    The archive indexer. +

    RANLIBCOMRANLIBCOM

    The command line used to index a static library archive.

    The command line used to index a static library archive. +

    RANLIBCOMSTRRANLIBCOMSTR

    The string displayed when a static library archive is indexed. +> The string displayed when a static library archive is indexed. If this is not set, then $RANLIBCOM$RANLIBCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(RANLIBCOMSTR = "Indexing $TARGET")
    env = Environment(RANLIBCOMSTR = "Indexing $TARGET") +
    RANLIBFLAGSRANLIBFLAGS

    General options passed to the archive indexer.

    General options passed to the archive indexer. +

    RCRC

    The resource compiler used to build -a Microsoft Visual C++ resource file.

    The resource compiler used to build +a Microsoft Visual C++ resource file. +

    RCCOMRCCOM

    The command line used to build -a Microsoft Visual C++ resource file.

    The command line used to build +a Microsoft Visual C++ resource file. +

    RCCOMSTRRCCOMSTR

    The string displayed when invoking the resource compiler +> The string displayed when invoking the resource compiler to build a Microsoft Visual C++ resource file. If this is not set, then $RCCOM$RCCOM (the command line) is displayed.

    (the command line) is displayed. +

    RCFLAGSRCFLAGS

    The flags passed to the resource compiler by the RES builder.

    The flags passed to the resource compiler by the RES builder. +

    RCINCFLAGSRCINCFLAGS

    An automatically-generated construction variable +> An automatically-generated construction variable containing the command-line options for specifying directories to be searched by the resource compiler. -The value of $RCINCFLAGS$RCINCFLAGS is created -by appending $RCINCPREFIX and $RCINCSUFFIX$RCINCPREFIX and $RCINCSUFFIX to the beginning and end -of each directory in $CPPPATH.

    $CPPPATH. +

    RCINCPREFIXRCINCPREFIX

    The prefix (flag) used to specify an include directory +> The prefix (flag) used to specify an include directory on the resource compiler command line. This will be appended to the beginning of each directory -in the $CPPPATH$CPPPATH construction variable -when the $RCINCFLAGS variable is expanded.

    $RCINCFLAGS variable is expanded. +

    RCINCSUFFIXRCINCSUFFIX

    The suffix used to specify an include directory +> The suffix used to specify an include directory on the resource compiler command line. This will be appended to the end of each directory -in the $CPPPATH$CPPPATH construction variable -when the $RCINCFLAGS variable is expanded.

    $RCINCFLAGS variable is expanded. +

    RCSRCS

    The RCS executable. +> The RCS executable. Note that this variable is not actually used for the command to fetch source files from RCS; see the $RCS_CO$RCS_CO -construction variable, below.

    RCS_CORCS_CO

    The RCS "checkout" executable, -used to fetch source files from RCS.

    The RCS "checkout" executable, +used to fetch source files from RCS. +

    RCS_COCOMRCS_COCOM

    The command line used to -fetch (checkout) source files from RCS.

    The command line used to +fetch (checkout) source files from RCS. +

    RCS_COCOMSTRRCS_COCOMSTR

    The string displayed when fetching +> The string displayed when fetching a source file from RCS. If this is not set, then $RCS_COCOM$RCS_COCOM -(the command line) is displayed.

    RCS_COFLAGSRCS_COFLAGS

    Options that are passed to the $RCS_CO Options that are passed to the $RCS_CO command.

    command. +

    RDirsRDirs

    A function that converts a string into a list of Dir instances by -searching the repositories.

    A function that converts a string into a list of Dir instances by +searching the repositories. +

    REGSVRREGSVR

    The program used on Windows systems +> The program used on Windows systems to register a newly-built DLL library -whenever the SharedLibrarySharedLibrary builder is passed a keyword argument of register=1.

    . +

    REGSVRCOMREGSVRCOM

    The command line used on Windows systems +> The command line used on Windows systems to register a newly-built DLL library -whenever the SharedLibrarySharedLibrary builder is passed a keyword argument of register=1.

    . +

    REGSVRCOMSTRREGSVRCOMSTR

    The string displayed when registering a newly-built DLL file. +> The string displayed when registering a newly-built DLL file. If this is not set, then $REGSVRCOM$REGSVRCOM (the command line) is displayed.

    (the command line) is displayed. +

    REGSVRFLAGSREGSVRFLAGS

    Flags passed to the DLL registration program +> Flags passed to the DLL registration program on Windows systems when a newly-built DLL library is registered. By default, -this includes the /s/s that prevents dialog boxes from popping up -and requiring user attention.

    RMICRMIC

    The Java RMI stub compiler.

    The Java RMI stub compiler. +

    RMICCOMRMICCOM

    The command line used to compile stub +> The command line used to compile stub and skeleton class files from Java classes that contain RMI implementations. Any options specified in the $RMICFLAGS$RMICFLAGS construction variable -are included on this command line.

    RMICCOMSTRRMICCOMSTR

    The string displayed when compiling +> The string displayed when compiling stub and skeleton class files from Java classes that contain RMI implementations. If this is not set, then $RMICCOM$RMICCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(RMICCOMSTR = "Generating stub/skeleton class files $TARGETS from $SOURCES")
    env = Environment(RMICCOMSTR = "Generating stub/skeleton class files $TARGETS from $SOURCES") +
    RMICFLAGSRMICFLAGS

    General options passed to the Java RMI stub compiler.

    General options passed to the Java RMI stub compiler. +

    RPATH_RPATH

    A list of paths to search for shared libraries when running programs. +> An automatically-generated construction variable +containing the rpath flags to be used when linking +a program with shared libraries. +The value of $_RPATH is created +by appending $RPATHPREFIX and $RPATHSUFFIX +to the beginning and end +of each directory in $RPATH. +

    RPATH

    A list of paths to search for shared libraries when running programs. Currently only used in the GNU (gnulink), IRIX (sgilink) and Sun (sunlink) linkers. Ignored on platforms and toolchains that don't support it. Note that the paths added to RPATH are not transformed by -sconsscons in any way: if you want an absolute -path, you must make it absolute yourself.

    _RPATHRPATHPREFIX

    An automatically-generated construction variable -containing the rpath flags to be used when linking -a program with shared libraries. -The value of $_RPATH is created -by appending $RPATHPREFIX and $RPATHSUFFIX -to the beginning and end -of each directory in $RPATH.

    RPATHPREFIX

    The prefix used to specify a directory to be searched for +> The prefix used to specify a directory to be searched for shared libraries when running programs. This will be appended to the beginning of each directory -in the $RPATH$RPATH construction variable -when the $_RPATH variable is automatically generated.

    $_RPATH variable is automatically generated. +

    RPATHSUFFIXRPATHSUFFIX

    The suffix used to specify a directory to be searched for +> The suffix used to specify a directory to be searched for shared libraries when running programs. This will be appended to the end of each directory -in the $RPATH$RPATH construction variable -when the $_RPATH variable is automatically generated.

    $_RPATH variable is automatically generated. +

    RPCGENRPCGEN

    The RPC protocol compiler.

    The RPC protocol compiler. +

    RPCGENCLIENTFLAGSRPCGENCLIENTFLAGS

    Options passed to the RPC protocol compiler +> Options passed to the RPC protocol compiler when generating client side stubs. These are in addition to any flags specified in the $RPCGENFLAGS$RPCGENFLAGS -construction variable.

    RPCGENFLAGSRPCGENFLAGS

    General options passed to the RPC protocol compiler.

    General options passed to the RPC protocol compiler. +

    RPCGENHEADERFLAGSRPCGENHEADERFLAGS

    Options passed to the RPC protocol compiler +> Options passed to the RPC protocol compiler when generating a header file. These are in addition to any flags specified in the $RPCGENFLAGS$RPCGENFLAGS -construction variable.

    RPCGENSERVICEFLAGSRPCGENSERVICEFLAGS

    Options passed to the RPC protocol compiler +> Options passed to the RPC protocol compiler when generating server side stubs. These are in addition to any flags specified in the $RPCGENFLAGS$RPCGENFLAGS -construction variable.

    RPCGENXDRFLAGSRPCGENXDRFLAGS

    Options passed to the RPC protocol compiler +> Options passed to the RPC protocol compiler when generating XDR routines. These are in addition to any flags specified in the $RPCGENFLAGS$RPCGENFLAGS -construction variable.

    SCANNERSSCANNERS

    A list of the available implicit dependency scanners. +> A list of the available implicit dependency scanners. New file scanners may be added by appending to this list, although the more flexible approach @@ -29723,2011 +28252,2991 @@ is to associate scanners with a specific Builder. See the sections "Builder Objects" and "Scanner Objects," -below, for more information.

    SCCSSCCS

    The SCCS executable.

    The SCCS executable. +

    SCCSCOMSCCSCOM

    The command line used to -fetch source files from SCCS.

    The command line used to +fetch source files from SCCS. +

    SCCSCOMSTRSCCSCOMSTR

    The string displayed when fetching +> The string displayed when fetching a source file from a CVS repository. If this is not set, then $SCCSCOM$SCCSCOM -(the command line) is displayed.

    SCCSFLAGSSCCSFLAGS

    General options that are passed to SCCS.

    General options that are passed to SCCS. +

    SCCSGETFLAGSSCCSGETFLAGS

    Options that are passed specifically to the SCCS "get" subcommand. +> Options that are passed specifically to the SCCS "get" subcommand. This can be set, for example, to --e-e -to check out editable files from SCCS.

    SCONS_HOMESCONS_HOME

    The (optional) path to the SCons library directory, +> The (optional) path to the SCons library directory, initialized from the external environment. If set, this is used to construct a shorter and more efficient search path in the $MSVSSCONS$MSVSSCONS command line executed -from Microsoft Visual Studio project files.

    SHCCSHCC

    The C compiler used for generating shared-library objects.

    The C compiler used for generating shared-library objects. +

    SHCCCOMSHCCCOM

    The command line used to compile a C source file +> The command line used to compile a C source file to a shared-library object file. Any options specified in the $SHCFLAGS$SHCFLAGS, $SHCCFLAGS$SHCCFLAGS and $CPPFLAGS$CPPFLAGS construction variables -are included on this command line.

    SHCCCOMSTRSHCCCOMSTR

    The string displayed when a C source file +> The string displayed when a C source file is compiled to a shared object file. If this is not set, then $SHCCCOM$SHCCCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(SHCCCOMSTR = "Compiling shared object $TARGET")
    env = Environment(SHCCCOMSTR = "Compiling shared object $TARGET") +
    SHCCFLAGSSHCCFLAGS

    Options that are passed to the C and C++ compilers -to generate shared-library objects.

    Options that are passed to the C and C++ compilers +to generate shared-library objects. +

    SHCFLAGSSHCFLAGS

    Options that are passed to the C compiler (only; not C++) -to generate shared-library objects.

    Options that are passed to the C compiler (only; not C++) +to generate shared-library objects. +

    SHCXXSHCXX

    The C++ compiler used for generating shared-library objects.

    The C++ compiler used for generating shared-library objects. +

    SHCXXCOMSHCXXCOM

    The command line used to compile a C++ source file +> The command line used to compile a C++ source file to a shared-library object file. Any options specified in the $SHCXXFLAGS$SHCXXFLAGS and $CPPFLAGS$CPPFLAGS construction variables -are included on this command line.

    SHCXXCOMSTRSHCXXCOMSTR

    The string displayed when a C++ source file +> The string displayed when a C++ source file is compiled to a shared object file. If this is not set, then $SHCXXCOM$SHCXXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(SHCXXCOMSTR = "Compiling shared object $TARGET")
    env = Environment(SHCXXCOMSTR = "Compiling shared object $TARGET") +
    SHCXXFLAGSSHCXXFLAGS

    Options that are passed to the C++ compiler -to generate shared-library objects.

    Options that are passed to the C++ compiler +to generate shared-library objects. +

    SHELLSHELL

    A string naming the shell program that will be passed to the -$SPAWN A string naming the shell program that will be passed to the +$SPAWN function. See the -$SPAWN$SPAWN -construction variable for more information.

    SHF77SHF77

    The Fortran 77 compiler used for generating shared-library objects. +> The Fortran 77 compiler used for generating shared-library objects. You should normally set the $SHFORTRAN$SHFORTRAN variable, which specifies the default Fortran compiler for all Fortran versions. You only need to set $SHF77$SHF77 if you need to use a specific compiler -or compiler version for Fortran 77 files.

    SHF77COMSHF77COM

    The command line used to compile a Fortran 77 source file +> The command line used to compile a Fortran 77 source file to a shared-library object file. You only need to set $SHF77COM$SHF77COM if you need to use a specific command line for Fortran 77 files. You should normally set the $SHFORTRANCOM$SHFORTRANCOM variable, which specifies the default command line -for all Fortran versions.

    SHF77COMSTRSHF77COMSTR

    The string displayed when a Fortran 77 source file +> The string displayed when a Fortran 77 source file is compiled to a shared-library object file. If this is not set, then $SHF77COM$SHF77COM or $SHFORTRANCOM$SHFORTRANCOM -(the command line) is displayed.

    SHF77FLAGSSHF77FLAGS

    Options that are passed to the Fortran 77 compiler +> Options that are passed to the Fortran 77 compiler to generated shared-library objects. You only need to set $SHF77FLAGS$SHF77FLAGS if you need to define specific user options for Fortran 77 files. You should normally set the $SHFORTRANFLAGS$SHFORTRANFLAGS variable, which specifies the user-specified options passed to the default Fortran compiler -for all Fortran versions.

    SHF77PPCOMSHF77PPCOM

    The command line used to compile a Fortran 77 source file to a +> The command line used to compile a Fortran 77 source file to a shared-library object file after first running the file through the C preprocessor. Any options specified in the $SHF77FLAGS$SHF77FLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command line. You only need to set $SHF77PPCOM$SHF77PPCOM if you need to use a specific C-preprocessor command line for Fortran 77 files. You should normally set the $SHFORTRANPPCOM$SHFORTRANPPCOM variable, which specifies the default C-preprocessor command line -for all Fortran versions.

    SHF77PPCOMSTRSHF77PPCOMSTR

    The string displayed when a Fortran 77 source file +> The string displayed when a Fortran 77 source file is compiled to a shared-library object file after first running the file through the C preprocessor. If this is not set, then $SHF77PPCOM$SHF77PPCOM or $SHFORTRANPPCOM$SHFORTRANPPCOM -(the command line) is displayed.

    SHF90SHF90

    The Fortran 90 compiler used for generating shared-library objects. +> The Fortran 90 compiler used for generating shared-library objects. You should normally set the $SHFORTRAN$SHFORTRAN variable, which specifies the default Fortran compiler for all Fortran versions. You only need to set $SHF90$SHF90 if you need to use a specific compiler -or compiler version for Fortran 90 files.

    SHF90COMSHF90COM

    The command line used to compile a Fortran 90 source file +> The command line used to compile a Fortran 90 source file to a shared-library object file. You only need to set $SHF90COM$SHF90COM if you need to use a specific command line for Fortran 90 files. You should normally set the $SHFORTRANCOM$SHFORTRANCOM variable, which specifies the default command line -for all Fortran versions.

    SHF90COMSTRSHF90COMSTR

    The string displayed when a Fortran 90 source file +> The string displayed when a Fortran 90 source file is compiled to a shared-library object file. If this is not set, then $SHF90COM$SHF90COM or $SHFORTRANCOM$SHFORTRANCOM -(the command line) is displayed.

    SHF90FLAGSSHF90FLAGS

    Options that are passed to the Fortran 90 compiler +> Options that are passed to the Fortran 90 compiler to generated shared-library objects. You only need to set $SHF90FLAGS$SHF90FLAGS if you need to define specific user options for Fortran 90 files. You should normally set the $SHFORTRANFLAGS$SHFORTRANFLAGS variable, which specifies the user-specified options passed to the default Fortran compiler -for all Fortran versions.

    SHF90PPCOMSHF90PPCOM

    The command line used to compile a Fortran 90 source file to a +> The command line used to compile a Fortran 90 source file to a shared-library object file after first running the file through the C preprocessor. Any options specified in the $SHF90FLAGS$SHF90FLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command line. You only need to set $SHF90PPCOM$SHF90PPCOM if you need to use a specific C-preprocessor command line for Fortran 90 files. You should normally set the $SHFORTRANPPCOM$SHFORTRANPPCOM variable, which specifies the default C-preprocessor command line -for all Fortran versions.

    SHF90PPCOMSTRSHF90PPCOMSTR

    The string displayed when a Fortran 90 source file +> The string displayed when a Fortran 90 source file is compiled to a shared-library object file after first running the file through the C preprocessor. If this is not set, then $SHF90PPCOM$SHF90PPCOM or $SHFORTRANPPCOM$SHFORTRANPPCOM -(the command line) is displayed.

    SHF95SHF95

    The Fortran 95 compiler used for generating shared-library objects. +> The Fortran 95 compiler used for generating shared-library objects. You should normally set the $SHFORTRAN$SHFORTRAN variable, which specifies the default Fortran compiler for all Fortran versions. You only need to set $SHF95$SHF95 if you need to use a specific compiler -or compiler version for Fortran 95 files.

    SHF95COMSHF95COM

    The command line used to compile a Fortran 95 source file +> The command line used to compile a Fortran 95 source file to a shared-library object file. You only need to set $SHF95COM$SHF95COM if you need to use a specific command line for Fortran 95 files. You should normally set the $SHFORTRANCOM$SHFORTRANCOM variable, which specifies the default command line -for all Fortran versions.

    SHF95COMSTRSHF95COMSTR

    The string displayed when a Fortran 95 source file +> The string displayed when a Fortran 95 source file is compiled to a shared-library object file. If this is not set, then $SHF95COM$SHF95COM or $SHFORTRANCOM$SHFORTRANCOM -(the command line) is displayed.

    SHF95FLAGSSHF95FLAGS

    Options that are passed to the Fortran 95 compiler +> Options that are passed to the Fortran 95 compiler to generated shared-library objects. You only need to set $SHF95FLAGS$SHF95FLAGS if you need to define specific user options for Fortran 95 files. You should normally set the $SHFORTRANFLAGS$SHFORTRANFLAGS variable, which specifies the user-specified options passed to the default Fortran compiler -for all Fortran versions.

    SHF95PPCOMSHF95PPCOM

    The command line used to compile a Fortran 95 source file to a +> The command line used to compile a Fortran 95 source file to a shared-library object file after first running the file through the C preprocessor. Any options specified in the $SHF95FLAGS$SHF95FLAGS and $CPPFLAGS$CPPFLAGS construction variables are included on this command line. You only need to set $SHF95PPCOM$SHF95PPCOM if you need to use a specific C-preprocessor command line for Fortran 95 files. You should normally set the $SHFORTRANPPCOM$SHFORTRANPPCOM variable, which specifies the default C-preprocessor command line -for all Fortran versions.

    SHF95PPCOMSTRSHF95PPCOMSTR

    The string displayed when a Fortran 95 source file +> The string displayed when a Fortran 95 source file is compiled to a shared-library object file after first running the file through the C preprocessor. If this is not set, then $SHF95PPCOM$SHF95PPCOM or $SHFORTRANPPCOM$SHFORTRANPPCOM -(the command line) is displayed.

    SHFORTRANSHFORTRAN

    The default Fortran compiler used for generating shared-library objects.

    The default Fortran compiler used for generating shared-library objects. +

    SHFORTRANCOMSHFORTRANCOM

    The command line used to compile a Fortran source file -to a shared-library object file.

    The command line used to compile a Fortran source file +to a shared-library object file. +

    SHFORTRANCOMSTRSHFORTRANCOMSTR

    The string displayed when a Fortran source file +> The string displayed when a Fortran source file is compiled to a shared-library object file. If this is not set, then $SHFORTRANCOM$SHFORTRANCOM -(the command line) is displayed.

    SHFORTRANFLAGSSHFORTRANFLAGS

    Options that are passed to the Fortran compiler -to generate shared-library objects.

    Options that are passed to the Fortran compiler +to generate shared-library objects. +

    SHFORTRANPPCOMSHFORTRANPPCOM

    The command line used to compile a Fortran source file to a +> The command line used to compile a Fortran source file to a shared-library object file after first running the file through the C preprocessor. Any options specified in the $SHFORTRANFLAGS$SHFORTRANFLAGS and $CPPFLAGS$CPPFLAGS construction variables -are included on this command line.

    SHFORTRANPPCOMSTRSHFORTRANPPCOMSTR

    The string displayed when a Fortran source file +> The string displayed when a Fortran source file is compiled to a shared-library object file after first running the file throught the C preprocessor. If this is not set, then $SHFORTRANPPCOM$SHFORTRANPPCOM -(the command line) is displayed.

    SHLIBPREFIXSHLIBPREFIX

    The prefix used for shared library file names.

    The prefix used for shared library file names. +

    SHLIBSUFFIXSHLIBSUFFIX

    The suffix used for shared library file names.

    The suffix used for shared library file names. +

    SHLINKSHLINK

    The linker for programs that use shared libraries.

    The linker for programs that use shared libraries. +

    SHLINKCOMSHLINKCOM

    The command line used to link programs using shared libaries.

    The command line used to link programs using shared libaries. +

    SHLINKCOMSTRSHLINKCOMSTR

    The string displayed when programs using shared libraries are linked. +> The string displayed when programs using shared libraries are linked. If this is not set, then $SHLINKCOM$SHLINKCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(SHLINKCOMSTR = "Linking shared $TARGET")
    env = Environment(SHLINKCOMSTR = "Linking shared $TARGET") +
    SHLINKFLAGSSHLINKFLAGS

    General user options passed to the linker for programs using shared libraries. +> General user options passed to the linker for programs using shared libraries. Note that this variable should -not contain --l-l (or similar) options for linking with the libraries listed in $LIBS$LIBS, nor --L-L (or similar) include search path options that scons generates automatically from $LIBPATH$LIBPATH. See $_LIBFLAGS$_LIBFLAGS above, for the variable that expands to library-link options, and $_LIBDIRFLAGS$_LIBDIRFLAGS above, -for the variable that expands to library search path options.

    SHOBJPREFIXSHOBJPREFIX

    The prefix used for shared object file names.

    The prefix used for shared object file names. +

    SHOBJSUFFIXSHOBJSUFFIX

    The suffix used for shared object file names.

    The suffix used for shared object file names. +

    SOURCESOURCE

    A reserved variable name +> A reserved variable name that may not be set or used in a construction environment. -(See "Variable Substitution," below.)

    SOURCESSOURCE_URL

    A reserved variable name +> The URL +(web address) +of the location from which the project was retrieved. +This is used to fill in the +Source: +field in the controlling information for Ipkg and RPM packages. +

    SOURCES

    A reserved variable name that may not be set or used in a construction environment. -(See "Variable Substitution," below.)

    SPAWNSPAWN

    A command interpreter function that will be called to execute command line -strings. The function must expect the following arguments:

    A command interpreter function that will be called to execute command line +strings. The function must expect the following arguments: +

    def spawn(shell, escape, cmd, args, env):
    def spawn(shell, escape, cmd, args, env): +

    sh sh is a string naming the shell program to use. -escapeescape is a function that can be called to escape shell special characters in the command line. -cmdcmd is the path to the command to be executed. -argsargs is the arguments to the command. -envenv is a dictionary of the environment variables -in which the command should be executed.

    SWIGSUMMARY

    The scripting language wrapper and interface generator.

    A short summary of what the project is about. +This is used to fill in the +Summary: +field in the controlling information for Ipkg and RPM packages, +and as the +Description: +field in MSI packages. +

    SWIGCFILESUFFIXSWIG

    The suffix that will be used for intermediate C +> The scripting language wrapper and interface generator. +

    SWIGCFILESUFFIX

    The suffix that will be used for intermediate C source files generated by the scripting language wrapper and interface generator. The default value is _wrap$CFILESUFFIX$CFILESUFFIX. By default, this value is used whenever the --c++-c++ option is -not specified as part of the $SWIGFLAGS$SWIGFLAGS -construction variable.

    SWIGCOMSWIGCOM

    The command line used to call -the scripting language wrapper and interface generator.

    The command line used to call +the scripting language wrapper and interface generator. +

    SWIGCOMSTRSWIGCOMSTR

    The string displayed when calling +> The string displayed when calling the scripting language wrapper and interface generator. If this is not set, then $SWIGCOM$SWIGCOM (the command line) is displayed.

    (the command line) is displayed. +

    SWIGCXXFILESUFFIXSWIGCXXFILESUFFIX

    The suffix that will be used for intermediate C++ +> The suffix that will be used for intermediate C++ source files generated by the scripting language wrapper and interface generator. The default value is _wrap$CFILESUFFIX$CFILESUFFIX. By default, this value is used whenever the -c++ option is specified as part of the $SWIGFLAGS$SWIGFLAGS -construction variable.

    SWIGFLAGSSWIGFLAGS

    General options passed to +> General options passed to the scripting language wrapper and interface generator. This is where you should set --python-python, --perl5-perl5, --tcl-tcl, or whatever other options you want to specify to SWIG. If you set the --c++-c++ option in this variable, -sconsscons will, by default, generate a C++ intermediate source file with the extension that is specified as the $CXXFILESUFFIX$CXXFILESUFFIX -variable.

    TAR_SWIGINCFLAGS

    The tar archiver.

    An automatically-generated construction variable +containing the SWIG command-line options +for specifying directories to be searched for included files. +The value of $_SWIGINCFLAGS is created +by appending $SWIGINCPREFIX and $SWIGINCSUFFIX +to the beginning and end +of each directory in $SWIGPATH. +

    TARCOMSWIGINCPREFIX

    The command line used to call the tar archiver.

    The prefix used to specify an include directory on the SWIG command line. +This will be appended to the beginning of each directory +in the $SWIGPATH construction variable +when the $_SWIGINCFLAGS variable is automatically generated. +

    TARCOMSTRSWIGINCSUFFIX

    The string displayed when archiving files +> The suffix used to specify an include directory on the SWIG command line. +This will be appended to the end of each directory +in the $SWIGPATH construction variable +when the $_SWIGINCFLAGS variable is automatically generated. +

    SWIGOUTDIR

    Specifies the output directory in which +the scripting language wrapper and interface generator +should place generated language-specific files. +This will be used by SCons to identify +the files that will be generated by the swig call, +and translated into the +swig -outdir option on the command line. +

    SWIGPATH

    The list of directories that the scripting language wrapper +and interface generate will search for included files. +The SWIG implicit dependency scanner will search these +directories for include files. +The default is to use the same path +specified as $CPPPATH.

    Don't explicitly put include directory +arguments in SWIGFLAGS; +the result will be non-portable +and the directories will not be searched by the dependency scanner. +Note: directory names in SWIGPATH will be looked-up relative to the SConscript +directory when they are used in a command. +To force +scons +to look-up a directory relative to the root of the source tree use #: +

    
env = Environment(SWIGPATH='#/include')
    +

    The directory look-up can also be forced using the +Dir() +function: +

    
include = Dir('include')
    +env = Environment(SWIGPATH=include)
    +

    The directory list will be added to command lines +through the automatically-generated +$_SWIGINCFLAGS +construction variable, +which is constructed by +appending the values of the +$SWIGINCPREFIX and $SWIGINCSUFFIX +construction variables +to the beginning and end +of each directory in $SWIGPATH. +Any command lines you define that need +the SWIGPATH directory list should +include $_SWIGINCFLAGS: +

    
env = Environment(SWIGCOM="my_swig -o $TARGET $_SWIGINCFLAGS $SORUCES")
    +
    TAR

    The tar archiver. +

    TARCOM

    The command line used to call the tar archiver. +

    TARCOMSTR

    The string displayed when archiving files using the tar archiver. If this is not set, then $TARCOM$TARCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(TARCOMSTR = "Archiving $TARGET")
    env = Environment(TARCOMSTR = "Archiving $TARGET") +
    TARFLAGSTARFLAGS

    General options passed to the tar archiver.

    General options passed to the tar archiver. +

    TARGETTARGET

    A reserved variable name +> A reserved variable name that may not be set or used in a construction environment. -(See "Variable Substitution," below.)

    TARGETSTARGETS

    A reserved variable name +> A reserved variable name that may not be set or used in a construction environment. -(See "Variable Substitution," below.)

    TARSUFFIXTARSUFFIX

    The suffix used for tar file names.

    The suffix used for tar file names. +

    TEMPFILEPREFIXTEMPFILEPREFIX

    The prefix for a temporary file used +> The prefix for a temporary file used to execute lines longer than $MAXLINELENGTH. The default is '@'. This may be set for toolchains that use other values, such as '-@' for the diab compiler -or '-via' for ARM toolchain.

    TEXTEX

    The TeX formatter and typesetter.

    The TeX formatter and typesetter. +

    TEXCOMTEXCOM

    The command line used to call the TeX formatter and typesetter.

    The command line used to call the TeX formatter and typesetter. +

    TEXCOMSTRTEXCOMSTR

    The string displayed when calling +> The string displayed when calling the TeX formatter and typesetter. If this is not set, then $TEXCOM$TEXCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(TEXCOMSTR = "Building $TARGET from TeX input $SOURCES")
    env = Environment(TEXCOMSTR = "Building $TARGET from TeX input $SOURCES") +
    TEXFLAGSTEXFLAGS

    General options passed to the TeX formatter and typesetter.

    General options passed to the TeX formatter and typesetter. +

    TEXINPUTSTEXINPUTS

    List of directories that the LaTeX programm will search +> List of directories that the LaTeX programm will search for include directories. The LaTeX implicit dependency scanner will search these -directories for \include and \import files.

    TOOLSTOOLS

    A list of the names of the Tool specifications -that are part of this construction environment.

    A list of the names of the Tool specifications +that are part of this construction environment. +

    WIN32_INSERT_DEFVENDOR

    A deprecated synonym for $WINDOWS_INSERT_DEF.

    The person or organization who supply the packaged software. +This is used to fill in the +Vendor: +field in the controlling information for RPM packages, +and the +Manufacturer: +field in the controlling information for MSI packages. +

    WIN32DEFPREFIXVERSION

    A deprecated synonym for $WINDOWSDEFPREFIX.

    The version of the project, specified as a string. +

    WIN32DEFSUFFIXWIN32_INSERT_DEF

    A deprecated synonym for $WINDOWSDEFSUFFIX A deprecated synonym for $WINDOWS_INSERT_DEF.

    . +

    WIN32EXPPREFIXWIN32DEFPREFIX

    A deprecated synonym for $WINDOWSEXPSUFFIX A deprecated synonym for $WINDOWSDEFPREFIX.

    . +

    WIN32EXPSUFFIXWIN32DEFSUFFIX

    A deprecated synonym for $WINDOWSEXPSUFFIX A deprecated synonym for $WINDOWSDEFSUFFIX.

    . +

    WINDOWS_INSERT_DEFWIN32EXPPREFIX

    When this is set to true, +> A deprecated synonym for $WINDOWSEXPSUFFIX. +

    WIN32EXPSUFFIX

    A deprecated synonym for $WINDOWSEXPSUFFIX. +

    WINDOWS_INSERT_DEF

    When this is set to true, a library build of a Windows shared library (.dllfile) will also build a corresponding .def file at the same time, if a .def file is not already listed as a build target. The default is 0 (do not build a .def file).

    file). +

    WINDOWS_INSERT_MANIFESTWINDOWS_INSERT_MANIFEST

    When this is set to true, -scons When this is set to true, +scons will be aware of the .manifest -files generated by Microsoft Visua C/C++ 8.

    WINDOWSDEFPREFIXWINDOWSDEFPREFIX

    The prefix used for Windows The prefix used for Windows .deffile names.

    file names. +

    WINDOWSDEFSUFFIXWINDOWSDEFSUFFIX

    The suffix used for Windows The suffix used for Windows .def file names.

    file names. +

    WINDOWSEXPPREFIXWINDOWSEXPPREFIX

    The prefix used for Windows The prefix used for Windows .exp file names.

    file names. +

    WINDOWSEXPSUFFIXWINDOWSEXPSUFFIX

    The suffix used for Windows The suffix used for Windows .exp file names.

    file names. +

    WINDOWSPROGMANIFESTPREFIXWINDOWSPROGMANIFESTPREFIX

    The prefix used for executable program The prefix used for executable program .manifest files -generated by Microsoft Visual C/C++.

    WINDOWSPROGMANIFESTSUFFIXWINDOWSPROGMANIFESTSUFFIX

    The suffix used for executable program The suffix used for executable program .manifest files -generated by Microsoft Visual C/C++.

    WINDOWSSHLIBMANIFESTPREFIXWINDOWSSHLIBMANIFESTPREFIX

    The prefix used for shared library The prefix used for shared library .manifest files -generated by Microsoft Visual C/C++.

    WINDOWSSHLIBMANIFESTSUFFIXWINDOWSSHLIBMANIFESTSUFFIX

    The suffix used for shared library The suffix used for shared library .manifest files -generated by Microsoft Visual C/C++.

    YACCX_IPK_DEPENDS

    The parser generator.

    This is used to fill in the +Depends: +field in the controlling information for Ipkg packages. +

    YACCCOMX_IPK_DESCRIPTION

    The command line used to call the parser generator -to generate a source file.

    This is used to fill in the +Description: +field in the controlling information for Ipkg packages. +The default value is +$SUMMARY\n$DESCRIPTION +

    YACCCOMSTRX_IPK_MAINTAINER

    The string displayed when generating a source file +> This is used to fill in the +Maintainer: +field in the controlling information for Ipkg packages. +

    X_IPK_PRIORITY

    This is used to fill in the +Priority: +field in the controlling information for Ipkg packages. +

    X_IPK_SECTION

    This is used to fill in the +Section: +field in the controlling information for Ipkg packages. +

    X_MSI_LANGUAGE

    This is used to fill in the +Language: +attribute in the controlling information for MSI packages. +

    X_MSI_LICENSE_TEXT

    The text of the software license in RTF format. +Carriage return characters will be +replaced with the RTF equivalent \\par. +

    X_MSI_UPGRADE_CODE

    TODO +

    X_RPM_AUTOREQPROV

    This is used to fill in the +AutoReqProv: +field in the RPM +.spec file. +

    X_RPM_BUILD

    internal, but overridable +

    X_RPM_BUILDREQUIRES

    This is used to fill in the +BuildRequires: +field in the RPM +.spec file. +

    X_RPM_BUILDROOT

    internal, but overridable +

    X_RPM_CLEAN

    internal, but overridable +

    X_RPM_CONFLICTS

    This is used to fill in the +Conflicts: +field in the RPM +.spec file. +

    X_RPM_DEFATTR

    This value is used as the default attributes +for the files in the RPM package. +The default value is +(-,root,root). +

    X_RPM_DISTRIBUTION

    This is used to fill in the +Distribution: +field in the RPM +.spec file. +

    X_RPM_EPOCH

    This is used to fill in the +Epoch: +field in the controlling information for RPM packages. +

    X_RPM_EXCLUDEARCH

    This is used to fill in the +ExcludeArch: +field in the RPM +.spec file. +

    X_RPM_EXLUSIVEARCH

    This is used to fill in the +ExclusiveArch: +field in the RPM +.spec file. +

    X_RPM_GROUP

    This is used to fill in the +Group: +field in the RPM +.spec file. +

    X_RPM_GROUP_lang

    This is used to fill in the +Group(lang): +field in the RPM +.spec file. +Note that +lang +is not literal +and should be replaced by +the appropriate language code. +

    X_RPM_ICON

    This is used to fill in the +Icon: +field in the RPM +.spec file. +

    X_RPM_INSTALL

    internal, but overridable +

    X_RPM_PACKAGER

    This is used to fill in the +Packager: +field in the RPM +.spec file. +

    X_RPM_POSTINSTALL

    This is used to fill in the +%post: +section in the RPM +.spec file. +

    X_RPM_POSTUNINSTALL

    This is used to fill in the +%postun: +section in the RPM +.spec file. +

    X_RPM_PREFIX

    This is used to fill in the +Prefix: +field in the RPM +.spec file. +

    X_RPM_PREINSTALL

    This is used to fill in the +%pre: +section in the RPM +.spec file. +

    X_RPM_PREP

    internal, but overridable +

    X_RPM_PREUNINSTALL

    This is used to fill in the +%preun: +section in the RPM +.spec file. +

    X_RPM_PROVIDES

    This is used to fill in the +Provides: +field in the RPM +.spec file. +

    X_RPM_REQUIRES

    This is used to fill in the +Requires: +field in the RPM +.spec file. +

    X_RPM_SERIAL

    This is used to fill in the +Serial: +field in the RPM +.spec file. +

    X_RPM_URL

    This is used to fill in the +Url: +field in the RPM +.spec file. +

    YACC

    The parser generator. +

    YACCCOM

    The command line used to call the parser generator +to generate a source file. +

    YACCCOMSTR

    The string displayed when generating a source file using the parser generator. If this is not set, then $YACCCOM$YACCCOM (the command line) is displayed.

    (the command line) is displayed. +

    env = Environment(YACCCOMSTR = "Yacc'ing $TARGET from $SOURCES")
    env = Environment(YACCCOMSTR = "Yacc'ing $TARGET from $SOURCES") +
    YACCFLAGSYACCFLAGS

    General options passed to the parser generator. +> General options passed to the parser generator. If $YACCFLAGS$YACCFLAGS contains a -d contains a -d option, SCons assumes that the call will also create a .h file (if the yacc source file ends in a .y suffix) or a .hpp file -(if the yacc source file ends in a .yy suffix)

    YACCHFILESUFFIXYACCHFILESUFFIX

    The suffix of the C +> The suffix of the C header file generated by the parser generator when the --d-d option is used. Note that setting this variable does not cause @@ -31737,26 +31246,27 @@ it exists to allow you to specify what suffix the parser generator will use of its own accord. The default value is .h.

    . +

    YACCHXXFILESUFFIXYACCHXXFILESUFFIX

    The suffix of the C++ +> The suffix of the C++ header file generated by the parser generator when the --d-d option is used. Note that setting this variable does not cause @@ -31766,26 +31276,42 @@ it exists to allow you to specify what suffix the parser generator will use of its own accord. The default value is .hpp.

    , +except on Mac OS X, +where the default is +${TARGET.suffix}.h. +because the default bison parser generator just +appends .h +to the name of the generated C++ file. +

    YACCVCGFILESUFFIXYACCVCGFILESUFFIX

    The suffix of the file +> The suffix of the file containing the VCG grammar automaton definition when the ---graph=--graph= option is used. Note that setting this variable does not cause @@ -31795,55 +31321,58 @@ it exists to allow you to specify what suffix the parser generator will use of its own accord. The default value is .vcg.

    . +

    ZIPZIP

    The zip compression and file packaging utility.

    The zip compression and file packaging utility. +

    ZIPCOMZIPCOM

    The command line used to call the zip utility, +> The command line used to call the zip utility, or the internal Python function used to create a -zip archive.

    ZIPCOMPRESSIONZIPCOMPRESSION

    The -compression The +compression flag from the Python zipfile module used by the internal Python function @@ -31851,429 +31380,504 @@ to control whether the zip archive is compressed or not. The default value is zipfile.ZIP_DEFLATED, which creates a compressed zip archive. This value has no effect when using Python 1.5.2 or if the zipfile -module is otherwise unavailable.

    ZIPCOMSTRZIPCOMSTR

    The string displayed when archiving files +> The string displayed when archiving files using the zip utility. If this is not set, then $ZIPCOM$ZIPCOM -(the command line or internal Python function) is displayed.

    env = Environment(ZIPCOMSTR = "Zipping $TARGET")
    env = Environment(ZIPCOMSTR = "Zipping $TARGET") +
    ZIPFLAGSZIPFLAGS

    General options passed to the zip utility.

    General options passed to the zip utility. +

    ZIPSUFFIXZIPSUFFIX

    The suffix used for zip file names.

    The suffix used for zip file names. +


    Builders

    Appendix B. Builders

    This appendix contains descriptions of all of the -Builders that are +This appendix contains descriptions of all of the +Builders that are potentially -available "out of the box" in this version of SCons.

    CFile(), env.CFile()CFile(), env.CFile()

    Builds a C source file given a lex ( Builds a C source file given a lex (.l) or yacc (.y) input file. The suffix specified by the $CFILESUFFIX$CFILESUFFIX construction variable (.c by default) is automatically added to the target if it is not already present. -Example:

    # builds foo.c
    +CLASS="programlisting"
    +>
# builds foo.c
     env.CFile(target = 'foo.c', source = 'foo.l')
     # builds bar.c
    -env.CFile(target = 'bar', source = 'bar.y')
    CXXFile(), env.CXXFile()CXXFile(), env.CXXFile()

    Builds a C++ source file given a lex ( Builds a C++ source file given a lex (.ll) or yacc (.yy) input file. The suffix specified by the $CXXFILESUFFIX$CXXFILESUFFIX construction variable (.cc by default) is automatically added to the target if it is not already present. -Example:

    # builds foo.cc
    +CLASS="programlisting"
    +>
# builds foo.cc
     env.CXXFile(target = 'foo.cc', source = 'foo.ll')
     # builds bar.cc
    -env.CXXFile(target = 'bar', source = 'bar.yy')
    DVI(), env.DVI()DVI(), env.DVI()

    Builds a Builds a .dvi file from a .tex, .ltx or .latex input file. If the source file suffix is .tex, -sconsscons will examine the contents of the file; if the string \documentclass or \documentstyle is found, the file is assumed to be a LaTeX file and the target is built by invoking the $LATEXCOM$LATEXCOM command line; otherwise, the $TEXCOM$TEXCOM command line is used. If the file is a LaTeX file, the -DVIDVI builder method will also examine the contents of the .aux file and invoke the $BIBTEX$BIBTEX command line if the string bibdata is found, start $MAKEINDEX$MAKEINDEX to generate an index if a .ind file is found and will examine the contents .log file and re-run the $LATEXCOM$LATEXCOM command if the log file says it is necessary.

    The suffix .dvi (hard-coded within TeX itself) is automatically added to the target if it is not already present. -Examples:

    # builds from aaa.tex
    +CLASS="programlisting"
    +>
# builds from aaa.tex
     env.DVI(target = 'aaa.dvi', source = 'aaa.tex')
     # builds bbb.dvi
     env.DVI(target = 'bbb', source = 'bbb.ltx')
     # builds from ccc.latex
    -env.DVI(target = 'ccc.dvi', source = 'ccc.latex')
    Jar(), env.Jar()Install(), env.Install()

    Builds a Java archive ( Installs one or more source files or directories +in the specified target, +which must be a directory. +The names of the specified source files or directories +remain the same within the destination directory. +

    
env.Install('/usr/local/bin', source = ['foo', 'bar'])
    +
    InstallAs(), env.InstallAs()

    Installs one or more source files or directories +to specific names, +allowing changing a file or directory name +as part of the installation. +It is an error if the +target +and +source +arguments list different numbers of files or directories. +

    
env.InstallAs(target = '/usr/local/bin/foo',
    +              source = 'foo_debug')
    +env.InstallAs(target = ['../lib/libfoo.a', '../lib/libbar.a'],
    +              source = ['libFOO.a', 'libBAR.a'])
    +
    Jar(), env.Jar()

    Builds a Java archive (.jar) file -from a source tree of .class files. -If the $JARCHDIR files). +Any .java files in the source list +will be compiled to .class files +by calling the Java Builder.

    If the $JARCHDIR value is set, the -jarjar command will change to the specified directory using the --C-C option. -If the contents any of the source files begin with the string +If $JARCHDIR is not set explicitly, +SCons will use the top of any subdirectory tree +in which Java .class +were built by the Java Builder.

    If the contents any of the source files begin with the string Manifest-Version, the file is assumed to be a manifest and is passed to the -jarjar command with the -mm -option set.

    env.Jar(target = 'foo.jar', source = 'classes')
    env.Jar(target = 'foo.jar', source = 'classes') + +env.Jar(target = 'bar.jar', + source = ['bar1.java', 'bar2.java']) +
    Java(), env.Java()Java(), env.Java()

    Builds one or more Java class files -from one or more source trees of Builds one or more Java class files. +The sources may be any combination of explicit +.java files. -The class files will be placed underneath -the specified target directory. -SCons will parse each source files, +or directory trees which will be scanned +for .java files.

    SCons will parse each source .java file to find the classes @@ -32281,20 +31885,23 @@ to find the classes defined within that file, and from that figure out the target .class files that will be created. -SCons will also search each Java file +The class files will be placed underneath +the specified target directory.

    SCons will also search each Java file for the Java package name, which it assumes can be found on a line beginning with the string package in the first column; the resulting .class files will be placed in a directory reflecting @@ -32302,104 +31909,108 @@ the specified package name. For example, the file Foo.java defining a single public Foo class and containing a package name of sub.dir will generate a corresponding sub/dir/Foo.class class file.

    Example:

    Example: +

    env.Java(target = 'classes', source = 'src')
    -env.Java(target = 'classes', source = ['src1', 'src2'])
    env.Java(target = 'classes', source = 'src') +env.Java(target = 'classes', source = ['src1', 'src2']) +env.Java(target = 'classes', source = ['File1.java', 'File2.java']) +
    JavaH(), env.JavaH()JavaH(), env.JavaH()

    Builds C header and source files for +> Builds C header and source files for implementing Java native methods. The target can be either a directory in which the header files will be written, or a header file name which will contain all of the definitions. -The source can be either the names of .class files, +the names of .java files +to be compiled into .class files +by calling the Java builder method, or the objects returned from the -JavaJava builder method.

    If the construction variable $JAVACLASSDIR$JAVACLASSDIR is set, either in the environment or in the call to the -JavaHJavaH builder method itself, then the value of the variable will be stripped from the beginning of any .class file names.

    Examples:

    Examples: +

    # builds java_native.h
    +CLASS="programlisting"
    +>
# builds java_native.h
     classes = env.Java(target = 'classdir', source = 'src')
     env.JavaH(target = 'java_native.h', source = classes)
     
    @@ -32410,168 +32021,154 @@ env.JavaH(target = 'include',
     # builds export/foo.h and export/bar.h
     env.JavaH(target = 'export',
               source = ['classes/foo.class', 'classes/bar.class'],
    -          JAVACLASSDIR = 'classes')
    Library(), env.Library()Library(), env.Library()

    A synonym for the -StaticLibrary A synonym for the +StaticLibrary -builder method.

    LoadableModule(), env.LoadableModule()LoadableModule(), env.LoadableModule()

    On most systems, +> On most systems, this is the same as -SharedLibrarySharedLibrary. On Mac OS X (Darwin) platforms, -this creates a loadable module bundle.

    M4(), env.M4()M4(), env.M4()

    Builds an output file from an M4 input file. +> Builds an output file from an M4 input file. This uses a default $M4FLAGS$M4FLAGS value of --E-E, which considers all warnings to be fatal and stops on the first warning when using the GNU version of m4. -Example:

    env.M4(target = 'foo.c', source = 'foo.c.m4')
    env.M4(target = 'foo.c', source = 'foo.c.m4') +
    Moc(), env.Moc()Moc(), env.Moc()

    Builds an output file from a moc input file. Moc input files are either +> Builds an output file from a moc input file. Moc input files are either header files or cxx files. This builder is only available after using the tool 'qt'. See the $QTDIR$QTDIR variable for more information. -Example:

    env.Moc('foo.h') # generates moc_foo.cc
    -env.Moc('foo.cpp') # generates foo.moc
    env.Moc('foo.h') # generates moc_foo.cc +env.Moc('foo.cpp') # generates foo.moc +
    MSVSProject(), env.MSVSProject()MSVSProject(), env.MSVSProject()

    Builds a Microsoft Visual Studio project file, +> Builds a Microsoft Visual Studio project file, and by default builds a solution file as well.

    This builds a Visual Studio project file, based on the version of Visual Studio that is configured (either the latest installed version, or the version specified by $MSVS_VERSION$MSVS_VERSION in the Environment constructor). For Visual Studio 6, it will generate a .dsp file. For Visual Studio 7 (.NET) and later versions, it will generate a .vcproj file.

    .dsw file for Visual Studio 6 or a .sln file for Visual Studio 7 (.NET). This behavior may be disabled by specifying auto_build_solution=0 when you call -MSVSProjectMSVSProject, in which case you presumably want to build the solution file(s) by calling the -MSVSSolutionMSVSSolution Builder (see below).

    srcs, incs, localincs, resources, and misc. These are pretty self-explanatory, but it should be noted that these lists are added to the $SOURCES$SOURCES construction variable as strings, NOT as SCons File Nodes. This is because they represent file @@ -32654,17 +32251,17 @@ for the resulting project file to be non-empty.

    target: The name of the target .dsp or .vcproj file. @@ -32672,17 +32269,17 @@ The correct suffix for the version of Visual Studio must be used, but the $MSVSPROJECTSUFFIX$MSVSPROJECTSUFFIX construction variable will be defined to the correct value (see example below).

    variant: The name of this particular variant. @@ -32694,27 +32291,27 @@ For Visual Studio 7 projects, they may also specify a target platform separated from the variant name by a | (vertical pipe) character: Debug|Xbox. The default target platform is Win32. Multiple calls to -MSVSProjectMSVSProject with different variants are allowed; all variants will be added to the project file with their appropriate build targets and sources.

    buildtarget: An optional string, node, or list of strings or nodes @@ -32722,46 +32319,41 @@ An optional string, node, or list of strings or nodes what output target to use in what build variant. The number of buildtarget entries must match the number of variant entries.

    runfile: The name of the file that Visual Studio 7 and later will run and debug. This appears as the value of the Output field in the resutling Visual Studio project file. If this is not specified, the default is the same as the specified buildtarget value.

    Example usage:

    Example usage: +

    barsrcs = ['bar.cpp'],
    +CLASS="programlisting"
    +>
barsrcs = ['bar.cpp'],
     barincs = ['bar.h'],
     barlocalincs = ['StdAfx.h']
     barresources = ['bar.rc','resource.h']
    @@ -32777,48 +32369,46 @@ env.MSVSProject(target = 'Bar' + env['MSVSPROJECTSUFFIX'],
                     resources = barresources,
                     misc = barmisc,
                     buildtarget = dll,
    -                variant = 'Release')
    MSVSSolution(), env.MSVSSolution()MSVSSolution(), env.MSVSSolution()

    Builds a Microsoft Visual Studio solution file.

    Builds a Microsoft Visual Studio solution file.

    This builds a Visual Studio solution file, based on the version of Visual Studio that is configured (either the latest installed version, or the version specified by $MSVS_VERSION$MSVS_VERSION in the construction environment). For Visual Studio 6, it will generate a .dsw file. For Visual Studio 7 (.NET), it will generate a .sln file.

    The following values must be specified:

    target: The name of the target .dsw or .sln file. The correct suffix for the version of Visual Studio must be used, but the value $MSVSSOLUTIONSUFFIX$MSVSSOLUTIONSUFFIX will be defined to the correct value (see example below).

    variant: The name of this particular variant, or a list of variant @@ -32851,13 +32441,13 @@ you want. For MSVS 7 they may also specify target platform, like this "Debug|Xbox". Default platform is Win32.

    projects: A list of project file names, or Project nodes returned by calls to the -MSVSProjectMSVSProject Builder, to be placed into the solution file. @@ -32868,56 +32458,131 @@ not the source files used to build the solution file.

    (NOTE: Currently only one project is supported per solution.)

    Example Usage:

    Example Usage: +

    env.MSVSSolution(target = 'Bar' + env['MSVSSOLUTIONSUFFIX'],
    +CLASS="programlisting"
    +>
env.MSVSSolution(target = 'Bar' + env['MSVSSOLUTIONSUFFIX'],
                      projects = ['bar' + env['MSVSPROJECTSUFFIX']],
    -                 variant = 'Release')
    Object(), env.Object()Object(), env.Object()

    A synonym for the -StaticObject A synonym for the +StaticObject -builder method.

    PCH(), env.PCH()Package(), env.Package()

    Builds a Microsoft Visual C++ precompiled header. +> Builds software distribution packages. Packages consist of files +to install and packaging information. The former may be specified +with the source parameter and may be left out, in which case the +FindInstalledFiles function will collect all files that have an +Install or InstallAs Builder attached. If the target, is +not specified it will be deduced from additional information given to +this Builder.

    The packaging information is specified with the help of construction +variables documented below. This information is called a tag to stress +that some of them can also be attached to files with the Tag function. +The mandatory ones will complain if they were not specified. They vary +depending on chosen target packager.

    The target packager may be selected with the "PACKAGETYPE" command line +option or with the $PACKAGETYPE construction variable. Currently +the following packagers available:

    * msi - Microsoft Installer + * rpm - Redhat Package Manger + * ipkg - Itsy Package Management System + * tarbz2 - compressed tar + * targz - compressed tar + * zip - zip file + * src_tarbz2 - compressed tar source + * src_targz - compressed tar source + * src_zip - zip file source

    An updated list is always available under the "package_type" option when +running "scons --help" on a project that has packaging activated. +

    
env = Environment(tools=['default', 'packaging'])
    +env.Install('/bin/', 'my_program')
    +env.Package( NAME           = 'foo',
    +             VERSION        = '1.2.3',
    +             PACKAGEVERSION = 0,
    +             PACKAGETYPE    = 'rpm',
    +             LICENSE        = 'gpl',
    +             SUMMARY        = 'balalalalal',
    +             DESCRIPTION    = 'this should be really really long',
    +             X_RPM_GROUP    = 'Application/fu',
    +             SOURCE_URL     = 'http://foo.org/foo-1.2.3.tar.gz'
    +        )
    +
    PCH(), env.PCH()

    Builds a Microsoft Visual C++ precompiled header. Calling this builder method returns a list of two targets: the PCH as the first element, and the object file as the second element. Normally the object file is ignored. @@ -32925,167 +32590,146 @@ This builder method is only provided when Microsoft Visual C++ is being used as the compiler. The PCH builder method is generally used in conjuction with the PCH construction variable to force object files to use -the precompiled header:

    env['PCH'] = env.PCH('StdAfx.cpp')[0]
    env['PCH'] = env.PCH('StdAfx.cpp')[0] +
    PDF(), env.PDF()PDF(), env.PDF()

    Builds a Builds a .pdf file from a .dvi input file (or, by extension, a .tex, .ltx, or .latex input file). The suffix specified by the $PDFSUFFIX$PDFSUFFIX construction variable (.pdf by default) is added automatically to the target -if it is not already present. Example:

    # builds from aaa.tex
    +CLASS="programlisting"
    +>
# builds from aaa.tex
     env.PDF(target = 'aaa.pdf', source = 'aaa.tex')
     # builds bbb.pdf from bbb.dvi
    -env.PDF(target = 'bbb', source = 'bbb.dvi')
    PostScript(), env.PostScript()PostScript(), env.PostScript()

    Builds a Builds a .ps file from a .dvi input file (or, by extension, a .tex, .ltx, or .latex input file). The suffix specified by the $PSSUFFIX$PSSUFFIX construction variable (.ps by default) is added automatically to the target -if it is not already present. Example:

    # builds from aaa.tex
    +CLASS="programlisting"
    +>
# builds from aaa.tex
     env.PostScript(target = 'aaa.ps', source = 'aaa.tex')
     # builds bbb.ps from bbb.dvi
    -env.PostScript(target = 'bbb', source = 'bbb.dvi')
    Program(), env.Program()Program(), env.Program()

    Builds an executable given one or more object files +> Builds an executable given one or more object files or C, C++, D, or Fortran source files. If any C, C++, D or Fortran source files are specified, then they will be automatically compiled to object files using the -ObjectObject builder method; see that builder method's description for @@ -33093,146 +32737,127 @@ a list of legal source file suffixes and how they are interpreted. The target executable file prefix (specified by the $PROGPREFIX$PROGPREFIX construction variable; nothing by default) and suffix (specified by the $PROGSUFFIX$PROGSUFFIX construction variable; by default, .exe on Windows systems, nothing on POSIX systems) are automatically added to the target if not already present. -Example:

    env.Program(target = 'foo', source = ['foo.o', 'bar.c', 'baz.f'])
    env.Program(target = 'foo', source = ['foo.o', 'bar.c', 'baz.f']) +
    RES(), env.RES()RES(), env.RES()

    Builds a Microsoft Visual C++ resource file. +> Builds a Microsoft Visual C++ resource file. This builder method is only provided when Microsoft Visual C++ or MinGW is being used as the compiler. The .res (or .o for MinGW) suffix is added to the target name if no other suffix is given. The source file is scanned for implicit dependencies as though it were a C file. -Example:

    env.RES('resource.rc')
    env.RES('resource.rc') +
    RMIC(), env.RMIC()RMIC(), env.RMIC()

    Builds stub and skeleton class files +> Builds stub and skeleton class files for remote objects from Java .class files. The target is a directory relative to which the stub and skeleton class files will be written. The source can be the names of .class files, or the objects return from the -JavaJava builder method.

    If the construction variable $JAVACLASSDIR$JAVACLASSDIR is set, either in the environment or in the call to the -RMICRMIC builder method itself, then the value of the variable will be stripped from the beginning of any .class -file names.

    classes = env.Java(target = 'classdir', source = 'src')
    +CLASS="programlisting"
    +>
classes = env.Java(target = 'classdir', source = 'src')
     env.RMIC(target = 'outdir1', source = classes)
     
     env.RMIC(target = 'outdir2',
    @@ -33240,187 +32865,157 @@ env.RMIC(target = 'outdir2',
     
     env.RMIC(target = 'outdir3',
              source = ['classes/foo.class', 'classes/bar.class'],
    -         JAVACLASSDIR = 'classes')
    RPCGenClient(), env.RPCGenClient()RPCGenClient(), env.RPCGenClient()

    Generates an RPC client stub ( Generates an RPC client stub (_clnt.c) file from a specified RPC (.x) source file. Because rpcgen only builds output files in the local directory, the command will be executed -in the source file's directory by default.

    # Builds src/rpcif_clnt.c
    -env.RPCGenClient('src/rpcif.x')
    # Builds src/rpcif_clnt.c +env.RPCGenClient('src/rpcif.x') +
    RPCGenHeader(), env.RPCGenHeader()RPCGenHeader(), env.RPCGenHeader()

    Generates an RPC header ( Generates an RPC header (.h) file from a specified RPC (.x) source file. Because rpcgen only builds output files in the local directory, the command will be executed -in the source file's directory by default.

    # Builds src/rpcif.h
    -env.RPCGenHeader('src/rpcif.x')
    # Builds src/rpcif.h +env.RPCGenHeader('src/rpcif.x') +
    RPCGenService(), env.RPCGenService()RPCGenService(), env.RPCGenService()

    Generates an RPC server-skeleton ( Generates an RPC server-skeleton (_svc.c) file from a specified RPC (.x) source file. Because rpcgen only builds output files in the local directory, the command will be executed -in the source file's directory by default.

    # Builds src/rpcif_svc.c
    -env.RPCGenClient('src/rpcif.x')
    # Builds src/rpcif_svc.c +env.RPCGenClient('src/rpcif.x') +
    RPCGenXDR(), env.RPCGenXDR()RPCGenXDR(), env.RPCGenXDR()

    Generates an RPC XDR routine ( Generates an RPC XDR routine (_xdr.c) file from a specified RPC (.x) source file. Because rpcgen only builds output files in the local directory, the command will be executed -in the source file's directory by default.

    # Builds src/rpcif_xdr.c
    -env.RPCGenClient('src/rpcif.x')
    # Builds src/rpcif_xdr.c +env.RPCGenClient('src/rpcif.x') +
    SharedLibrary(), env.SharedLibrary()SharedLibrary(), env.SharedLibrary()

    Builds a shared library +> Builds a shared library (.so on a POSIX system, .dll on Windows) given one or more object files @@ -33432,186 +33027,173 @@ The static library prefix and suffix (if any) are automatically added to the target. The target library file prefix (specified by the $SHLIBPREFIX$SHLIBPREFIX construction variable; by default, lib on POSIX systems, nothing on Windows systems) and suffix (specified by the $SHLIBSUFFIX$SHLIBSUFFIX construction variable; by default, .dll on Windows systems, .so on POSIX systems) are automatically added to the target if not already present. -Example:

    env.SharedLibrary(target = 'bar', source = ['bar.c', 'foo.o'])
    env.SharedLibrary(target = 'bar', source = ['bar.c', 'foo.o']) +

    On Windows systems, the -SharedLibrary On Windows systems, the +SharedLibrary builder method will always build an import (.lib) library in addition to the shared (.dll) library, adding a .lib library with the same basename if there is not already a .lib file explicitly listed in the targets.

    Any object files listed in the source must have been built for a shared library (that is, using the -SharedObjectSharedObject builder method). -sconsscons will raise an error if there is any mismatch.

    On Windows systems, specifying register=1 will cause the .dll to be registered after it is built using REGSVR32. The command that is run ("regsvr32" by default) is determined by $REGSVR$REGSVR construction variable, and the flags passed are determined by $REGSVRFLAGS$REGSVRFLAGS. By default, $REGSVRFLAGS$REGSVRFLAGS includes the /s includes the /s option, to prevent dialogs from popping up and requiring user attention when it is run. If you change $REGSVRFLAGS$REGSVRFLAGS, be sure to include the /s, be sure to include the /s option. -For example,

    env.SharedLibrary(target = 'bar',
    +CLASS="programlisting"
    +>
env.SharedLibrary(target = 'bar',
                       source = ['bar.cxx', 'foo.obj'],
    -                  register=1)

    will register will register bar.dll as a COM object -when it is done linking it.

    SharedObject(), env.SharedObject()SharedObject(), env.SharedObject()

    Builds an object file for +> Builds an object file for inclusion in a shared library. Source files must have one of the same set of extensions specified above for the -StaticObjectStaticObject builder method. On some platforms building a shared object requires additional compiler option -(e.g. -fPIC-fPIC for gcc) in addition to those needed to build a normal (static) object, but on some platforms there is no difference between a @@ -33624,68 +33206,62 @@ shared library, and will use the same suffix for shared and normal (static) objects. The target object file prefix (specified by the $SHOBJPREFIX$SHOBJPREFIX construction variable; by default, the same as $OBJPREFIX$OBJPREFIX) and suffix (specified by the $SHOBJSUFFIX$SHOBJSUFFIX construction variable) are automatically added to the target if not already present. -Examples:

    env.SharedObject(target = 'ddd', source = 'ddd.c')
    +CLASS="programlisting"
    +>
env.SharedObject(target = 'ddd', source = 'ddd.c')
     env.SharedObject(target = 'eee.o', source = 'eee.cpp')
    -env.SharedObject(target = 'fff.obj', source = 'fff.for')

    Note that the source files will be scanned +> Note that the source files will be scanned according to the suffix mappings in the SourceFileScanner object. See the section "Scanner Objects," -below, for a more information.

    StaticLibrary(), env.StaticLibrary()StaticLibrary(), env.StaticLibrary()

    Builds a static library given one or more object files +> Builds a static library given one or more object files or C, C++, D or Fortran source files. If any source files are given, then they will be automatically @@ -33694,91 +33270,80 @@ The static library prefix and suffix (if any) are automatically added to the target. The target library file prefix (specified by the $LIBPREFIX$LIBPREFIX construction variable; by default, lib on POSIX systems, nothing on Windows systems) and suffix (specified by the $LIBSUFFIX$LIBSUFFIX construction variable; by default, .lib on Windows systems, .a on POSIX systems) are automatically added to the target if not already present. -Example:

    env.StaticLibrary(target = 'bar', source = ['bar.c', 'foo.o'])
    env.StaticLibrary(target = 'bar', source = ['bar.c', 'foo.o']) +

    Any object files listed in the +> Any object files listed in the source must have been built for a static library (that is, using the -StaticObjectStaticObject builder method). -sconsscons -will raise an error if there is any mismatch.

    StaticObject(), env.StaticObject()StaticObject(), env.StaticObject()

    Builds a static object file +> Builds a static object file from one or more C, C++, D, or Fortran source files. -Source files must have one of the following extensions:

      .asm    assembly language file
    +CLASS="programlisting"
    +>
  .asm    assembly language file
       .ASM    assembly language file
       .c      C file
       .C      Windows:  C file
    @@ -33803,82 +33368,74 @@ CLASS="PROGRAMLISTING"
       .S      Windows:  assembly language file
               POSIX:  assembly language file + C pre-processor
       .spp    assembly language file + C pre-processor
    -  .SPP    assembly language file + C pre-processor

    The target object file prefix +> The target object file prefix (specified by the $OBJPREFIX$OBJPREFIX construction variable; nothing by default) and suffix (specified by the $OBJSUFFIX$OBJSUFFIX construction variable; .obj on Windows systems, .o on POSIX systems) are automatically added to the target if not already present. -Examples:

    env.StaticObject(target = 'aaa', source = 'aaa.c')
    +CLASS="programlisting"
    +>
env.StaticObject(target = 'aaa', source = 'aaa.c')
     env.StaticObject(target = 'bbb.o', source = 'bbb.c++')
    -env.StaticObject(target = 'ccc.obj', source = 'ccc.f')

    Note that the source files will be scanned +> Note that the source files will be scanned according to the suffix mappings in SourceFileScanner object. See the section "Scanner Objects," -below, for a more information.

    Tar(), env.Tar()Tar(), env.Tar()

    Builds a tar archive of the specified files +> Builds a tar archive of the specified files and/or directories. Unlike most builder methods, the -TarTar builder method may be called multiple times for a given target; @@ -33889,20 +33446,15 @@ Any source directories will be scanned for changes to any on-disk files, regardless of whether or not -sconsscons -knows about them from other Builder or function calls.

    env.Tar('src.tar', 'src')
    +CLASS="programlisting"
    +>
env.Tar('src.tar', 'src')
     
     # Create the stuff.tar file.
     env.Tar('stuff', ['subdir1', 'subdir2'])
    @@ -33916,152 +33468,137 @@ env.Tar('foo.tar.gz', 'foo')
     # Also set the suffix to .tgz.
     env = Environment(TARFLAGS = '-c -z',
                       TARSUFFIX = '.tgz')
    -env.Tar('foo')
    TypeLibrary(), env.TypeLibrary()TypeLibrary(), env.TypeLibrary()

    Builds a Windows type library ( Builds a Windows type library (.tlb) file from an input IDL file (.idl). In addition, it will build the associated inteface stub and proxy source files, naming them according to the base name of the .idl file. -For example,

    env.TypeLibrary(source="foo.idl")
    env.TypeLibrary(source="foo.idl") +

    Will create Will create foo.tlb, foo.h, foo_i.c, foo_p.c and foo_data.c -files.

    Uic(), env.Uic()Uic(), env.Uic()

    Builds a header file, an implementation file and a moc file from an ui file. +> Builds a header file, an implementation file and a moc file from an ui file. and returns the corresponding nodes in the above order. This builder is only available after using the tool 'qt'. Note: you can specify .ui files directly as source -files to the ProgramProgram, -Library and SharedLibraryLibrary and SharedLibrary builders without using this builder. Using this builder lets you override the standard naming conventions (be careful: prefixes are always prepended to names of built files; if you don't want prefixes, you may set them to ``). See the $QTDIR$QTDIR variable for more information. -Example:

    env.Uic('foo.ui') # -> ['foo.h', 'uic_foo.cc', 'moc_foo.cc']
    +CLASS="programlisting"
    +>
env.Uic('foo.ui') # -> ['foo.h', 'uic_foo.cc', 'moc_foo.cc']
     env.Uic(target = Split('include/foo.h gen/uicfoo.cc gen/mocfoo.cc'),
    -        source = 'foo.ui') # -> ['include/foo.h', 'gen/uicfoo.cc', 'gen/mocfoo.cc']
    Zip(), env.Zip()Zip(), env.Zip()

    Builds a zip archive of the specified files +> Builds a zip archive of the specified files and/or directories. Unlike most builder methods, the -ZipZip builder method may be called multiple times for a given target; @@ -34072,5397 +33609,5709 @@ Any source directories will be scanned for changes to any on-disk files, regardless of whether or not -sconsscons -knows about them from other Builder or function calls.

    env.Zip('src.zip', 'src')
    +CLASS="programlisting"
    +>
env.Zip('src.zip', 'src')
     
     # Create the stuff.zip file.
     env.Zip('stuff', ['subdir1', 'subdir2'])
     # Also add "another" to the stuff.tar file.
    -env.Zip('stuff', 'another')

    Tools

    Appendix C. Tools

    This appendix contains descriptions of all of the +> +This appendix contains descriptions of all of the Tools modules that are -available "out of the box" in this version of SCons.

    386asm

    Sets construction variables for the 386ASM assembler -for the Phar Lap ETS embedded operating system.

    Sets construction variables for the 386ASM assembler +for the Phar Lap ETS embedded operating system. +

    Sets: $AS Sets: $AS, $ASCOM$ASCOM, $ASFLAGS$ASFLAGS, $ASPPCOM$ASPPCOM, $ASPPFLAGS$ASPPFLAGS.

    . +

    Uses: $CC Uses: $CC, $CPPFLAGS$CPPFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_CPPINCFLAGS$_CPPINCFLAGS.

    . +

    aixc++

    Sets construction variables for the IMB xlc / Visual Age C++ compiler.

    Sets construction variables for the IMB xlc / Visual Age C++ compiler. +

    Sets: $CXX Sets: $CXX, $CXXVERSION$CXXVERSION, $SHCXX$SHCXX, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    aixcc

    Sets construction variables for the IBM xlc / Visual Age C compiler.

    Sets construction variables for the IBM xlc / Visual Age C compiler. +

    Sets: $CC Sets: $CC, $CCVERSION$CCVERSION, $SHCC$SHCC.

    . +

    aixf77

    Sets construction variables for the IBM Visual Age f77 Fortran compiler.

    Sets construction variables for the IBM Visual Age f77 Fortran compiler. +

    Sets: $F77 Sets: $F77, $SHF77$SHF77.

    . +

    aixlink

    Sets construction variables for the IBM Visual Age linker.

    Sets construction variables for the IBM Visual Age linker. +

    Sets: $LINKFLAGS Sets: $LINKFLAGS, $SHLIBSUFFIX$SHLIBSUFFIX, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    applelink

    Sets construction variables for the Apple linker -(similar to the GNU linker).

    Sets construction variables for the Apple linker +(similar to the GNU linker). +

    Sets: $FRAMEWORKPATHPREFIX Sets: $FRAMEWORKPATHPREFIX, $LDMODULECOM$LDMODULECOM, $LDMODULEFLAGS$LDMODULEFLAGS, $LDMODULEPREFIX$LDMODULEPREFIX, $LDMODULESUFFIX$LDMODULESUFFIX, $LINKCOM$LINKCOM, $SHLINKCOM$SHLINKCOM, $SHLINKFLAGS$SHLINKFLAGS, $_FRAMEWORKPATH$_FRAMEWORKPATH, $_FRAMEWORKS$_FRAMEWORKS.

    . +

    Uses: $FRAMEWORKSFLAGS Uses: $FRAMEWORKSFLAGS.

    . +

    ar

    Sets construction variables for the ar library archiver.

    Sets construction variables for the ar library archiver. +

    Sets: $AR Sets: $AR, $ARCOM$ARCOM, $ARFLAGS$ARFLAGS, $LIBPREFIX$LIBPREFIX, $LIBSUFFIX$LIBSUFFIX, $RANLIB$RANLIB, $RANLIBCOM$RANLIBCOM, $RANLIBFLAGS$RANLIBFLAGS.

    . +

    as

    Sets construction variables for the as assembler.

    Sets construction variables for the as assembler. +

    Sets: $AS Sets: $AS, $ASCOM$ASCOM, $ASFLAGS$ASFLAGS, $ASPPCOM$ASPPCOM, $ASPPFLAGS$ASPPFLAGS.

    . +

    Uses: $CC Uses: $CC, $CPPFLAGS$CPPFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_CPPINCFLAGS$_CPPINCFLAGS.

    . +

    bcc32

    Sets construction variables for the bcc32 compiler.

    Sets construction variables for the bcc32 compiler. +

    Sets: $CC Sets: $CC, $CCCOM$CCCOM, $CCFLAGS$CCFLAGS, $CFILESUFFIX$CFILESUFFIX, $CFLAGS$CFLAGS, $CPPDEFPREFIX$CPPDEFPREFIX, $CPPDEFSUFFIX$CPPDEFSUFFIX, $INCPREFIX$INCPREFIX, $INCSUFFIX$INCSUFFIX, $SHCC$SHCC, $SHCCCOM$SHCCCOM, $SHCCFLAGS$SHCCFLAGS, $SHCFLAGS$SHCFLAGS, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    Uses: $_CPPDEFFLAGS Uses: $_CPPDEFFLAGS, $_CPPINCFLAGS$_CPPINCFLAGS.

    . +

    BitKeeper

    Sets construction variables for the BitKeeper -source code control system.

    Sets construction variables for the BitKeeper +source code control system. +

    Sets: $BITKEEPER Sets: $BITKEEPER, $BITKEEPERCOM$BITKEEPERCOM, $BITKEEPERGET$BITKEEPERGET, $BITKEEPERGETFLAGS$BITKEEPERGETFLAGS.

    . +

    Uses: $BITKEEPERCOMSTR Uses: $BITKEEPERCOMSTR.

    . +

    cc

    Sets construction variables for generic POSIX C copmilers.

    Sets construction variables for generic POSIX C copmilers. +

    Sets: $CC Sets: $CC, $CCCOM$CCCOM, $CCFLAGS$CCFLAGS, $CFILESUFFIX$CFILESUFFIX, $CFLAGS$CFLAGS, $CPPDEFPREFIX$CPPDEFPREFIX, $CPPDEFSUFFIX$CPPDEFSUFFIX, $FRAMEWORKPATH$FRAMEWORKPATH, $FRAMEWORKS$FRAMEWORKS, $INCPREFIX$INCPREFIX, $INCSUFFIX$INCSUFFIX, $SHCC$SHCC, $SHCCCOM$SHCCCOM, $SHCCFLAGS$SHCCFLAGS, $SHCFLAGS$SHCFLAGS, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    Uses: $PLATFORM Uses: $PLATFORM.

    . +

    cvf

    Sets construction variables for the Compaq Visual Fortran compiler.

    Sets construction variables for the Compaq Visual Fortran compiler. +

    Sets: $FORTRAN Sets: $FORTRAN, $FORTRANCOM$FORTRANCOM, $FORTRANMODDIR$FORTRANMODDIR, $FORTRANMODDIRPREFIX$FORTRANMODDIRPREFIX, $FORTRANMODDIRSUFFIX$FORTRANMODDIRSUFFIX, $FORTRANPPCOM$FORTRANPPCOM, $OBJSUFFIX$OBJSUFFIX, $SHFORTRANCOM$SHFORTRANCOM, $SHFORTRANPPCOM$SHFORTRANPPCOM.

    . +

    Uses: $CPPFLAGS Uses: $CPPFLAGS, $FORTRANFLAGS$FORTRANFLAGS, $SHFORTRANFLAGS$SHFORTRANFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_FORTRANINCFLAGS$_FORTRANINCFLAGS, $_FORTRANMODFLAG$_FORTRANMODFLAG.

    . +

    CVS

    Sets construction variables for the CVS source code -management system.

    Sets construction variables for the CVS source code +management system. +

    Sets: $CVS Sets: $CVS, $CVSCOFLAGS$CVSCOFLAGS, $CVSCOM$CVSCOM, $CVSFLAGS$CVSFLAGS.

    . +

    Uses: $CVSCOMSTR Uses: $CVSCOMSTR.

    . +

    cXX

    Sets construction variables for generic POSIX C++ compilers.

    Sets construction variables for generic POSIX C++ compilers. +

    Sets: $CPPDEFPREFIX Sets: $CPPDEFPREFIX, $CPPDEFSUFFIX$CPPDEFSUFFIX, $CXX$CXX, $CXXCOM$CXXCOM, $CXXFILESUFFIX$CXXFILESUFFIX, $CXXFLAGS$CXXFLAGS, $INCPREFIX$INCPREFIX, $INCSUFFIX$INCSUFFIX, $OBJSUFFIX$OBJSUFFIX, $SHCXX$SHCXX, $SHCXXCOM$SHCXXCOM, $SHCXXFLAGS$SHCXXFLAGS, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    Uses: $CXXCOMSTR Uses: $CXXCOMSTR.

    . +

    default

    Sets variables by calling a default list of Tool modules -for the platform on which SCons is running.

    Sets variables by calling a default list of Tool modules +for the platform on which SCons is running. +

    dmd

    Sets construction variables for the Digital Mars D compiler.

    Sets construction variables for D language compilers +(the Digital Mars D compiler, or GDC). +

    dvi

    Attaches the DVI Attaches the DVI builder to the -construction environment.

    dvipdf

    Sets construction variables for the dvipdf utility.

    Sets construction variables for the dvipdf utility. +

    Sets: $DVIPDF Sets: $DVIPDF, $DVIPDFCOM$DVIPDFCOM, $DVIPDFFLAGS$DVIPDFFLAGS.

    . +

    Uses: $DVIPDFCOMSTR Uses: $DVIPDFCOMSTR.

    . +

    dvips

    Sets construction variables for the dvips utility.

    Sets construction variables for the dvips utility. +

    Sets: $DVIPS Sets: $DVIPS, $DVIPSFLAGS$DVIPSFLAGS, $PSCOM$PSCOM, $PSPREFIX$PSPREFIX, $PSSUFFIX$PSSUFFIX.

    . +

    Uses: $PSCOMSTR Uses: $PSCOMSTR.

    . +

    f77

    Set construction variables for generic POSIX Fortran 77 compilers.

    Set construction variables for generic POSIX Fortran 77 compilers. +

    Sets: $F77 Sets: $F77, $F77COM$F77COM, $F77FLAGS$F77FILESUFFIXES, $F77PPCOM$F77FLAGS, $FORTRAN$F77PPCOM, $FORTRANCOM$F77PPFILESUFFIXES, $FORTRANFLAGS$FORTRAN, $SHF77$FORTRANCOM, $SHF77COM$FORTRANFLAGS, $SHF77FLAGS$SHF77, $SHF77PPCOM$SHF77COM, $SHFORTRAN$SHF77FLAGS, $SHFORTRANCOM$SHF77PPCOM, $SHFORTRANFLAGS$SHFORTRAN, $SHFORTRANPPCOM$SHFORTRANCOM, $_F77INCFLAGS$SHFORTRANFLAGS.

    , $SHFORTRANPPCOM, $_F77INCFLAGS. +

    Uses: $F77COMSTR Uses: $F77COMSTR, $F77PPCOMSTR$F77PPCOMSTR, $FORTRANCOMSTR$FORTRANCOMSTR, $FORTRANPPCOMSTR$FORTRANPPCOMSTR, $SHF77COMSTR$SHF77COMSTR, $SHF77PPCOMSTR$SHF77PPCOMSTR, $SHFORTRANCOMSTR$SHFORTRANCOMSTR, $SHFORTRANPPCOMSTR$SHFORTRANPPCOMSTR.

    . +

    f90

    Set construction variables for generic POSIX Fortran 90 compilers.

    Set construction variables for generic POSIX Fortran 90 compilers. +

    Sets: $F90 Sets: $F90, $F90COM$F90COM, $F90FLAGS$F90FLAGS, $F90PPCOM$F90PPCOM, $SHF90$SHF90, $SHF90COM$SHF90COM, $SHF90FLAGS$SHF90FLAGS, $SHF90PPCOM$SHF90PPCOM, $_F90INCFLAGS$_F90INCFLAGS.

    . +

    Uses: $F90COMSTR Uses: $F90COMSTR, $F90PPCOMSTR$F90PPCOMSTR, $SHF90COMSTR$SHF90COMSTR, $SHF90PPCOMSTR$SHF90PPCOMSTR.

    . +

    f95

    Set construction variables for generic POSIX Fortran 95 compilers.

    Set construction variables for generic POSIX Fortran 95 compilers. +

    Sets: $F95 Sets: $F95, $F95COM$F95COM, $F95FLAGS$F95FLAGS, $F95PPCOM$F95PPCOM, $SHF95$SHF95, $SHF95COM$SHF95COM, $SHF95FLAGS$SHF95FLAGS, $SHF95PPCOM$SHF95PPCOM, $_F95INCFLAGS$_F95INCFLAGS.

    . +

    Uses: $F95COMSTR Uses: $F95COMSTR, $F95PPCOMSTR$F95PPCOMSTR, $SHF95COMSTR$SHF95COMSTR, $SHF95PPCOMSTR$SHF95PPCOMSTR.

    . +

    fortran

    Set construction variables for generic POSIX Fortran compilers.

    Set construction variables for generic POSIX Fortran compilers. +

    Sets: $FORTRAN Sets: $FORTRAN, $FORTRANCOM$FORTRANCOM, $FORTRANFLAGS$FORTRANFLAGS, $SHFORTRAN$SHFORTRAN, $SHFORTRANCOM$SHFORTRANCOM, $SHFORTRANFLAGS$SHFORTRANFLAGS, $SHFORTRANPPCOM$SHFORTRANPPCOM.

    . +

    Uses: $FORTRANCOMSTR Uses: $FORTRANCOMSTR, $FORTRANPPCOMSTR$FORTRANPPCOMSTR, $SHFORTRANCOMSTR$SHFORTRANCOMSTR, $SHFORTRANPPCOMSTR$SHFORTRANPPCOMSTR.

    . +

    g++

    Set construction variables for the gXX C++ compiler.

    Set construction variables for the gXX C++ compiler. +

    Sets: $CXX Sets: $CXX, $CXXVERSION$CXXVERSION, $SHCXXFLAGS$SHCXXFLAGS, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    g77

    Set construction variables for the g77 Set construction variables for the g77 Fortran compiler. Calls the f77 Tool module -to set variables.

    gas

    Sets construction variables for the gas Sets construction variables for the gas assembler. Calls the as module.

    module. +

    Sets: $AS Sets: $AS.

    . +

    gcc

    Set construction variables for the gcc C compiler.

    Set construction variables for the gcc C compiler. +

    Sets: $CC Sets: $CC, $CCVERSION$CCVERSION, $SHCCFLAGS$SHCCFLAGS.

    . +

    gnulink

    Set construction variables for GNU linker/loader.

    Set construction variables for GNU linker/loader. +

    Sets: $RPATHPREFIX Sets: $RPATHPREFIX, $RPATHSUFFIX$RPATHSUFFIX, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    gs

    Set construction variables for Ghostscript.

    Set construction variables for Ghostscript. +

    Sets: $GS Sets: $GS, $GSCOM$GSCOM, $GSFLAGS$GSFLAGS.

    . +

    Uses: $GSCOMSTR Uses: $GSCOMSTR.

    . +

    hpc++

    Set construction variables for the compilers aCC on HP/UX systems.

    Set construction variables for the compilers aCC on HP/UX systems. +

    hpcc

    Set construction variables for the -aCC Set construction variables for the +aCC on HP/UX systems. Calls the cXX tool for additional variables.

    tool for additional variables. +

    Sets: $CXX Sets: $CXX, $CXXVERSION$CXXVERSION, $SHCXXFLAGS$SHCXXFLAGS.

    . +

    hplink

    Sets construction variables for the linker on HP/UX systems.

    Sets construction variables for the linker on HP/UX systems. +

    Sets: $LINKFLAGS Sets: $LINKFLAGS, $SHLIBSUFFIX$SHLIBSUFFIX, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    icc

    Sets construction variables for the -icc compiler on OS/2 systems.

    Sets construction variables for the +icc compiler on OS/2 systems. +

    Sets: $CC Sets: $CC, $CCCOM$CCCOM, $CFILESUFFIX$CFILESUFFIX, $CPPDEFPREFIX$CPPDEFPREFIX, $CPPDEFSUFFIX$CPPDEFSUFFIX, $CXXCOM$CXXCOM, $CXXFILESUFFIX$CXXFILESUFFIX, $INCPREFIX$INCPREFIX, $INCSUFFIX$INCSUFFIX.

    . +

    Uses: $CCFLAGS Uses: $CCFLAGS, $CFLAGS$CFLAGS, $CPPFLAGS$CPPFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_CPPINCFLAGS$_CPPINCFLAGS.

    . +

    icl

    Sets construction variables for the Intel C/C++ compiler. +> Sets construction variables for the Intel C/C++ compiler. Calls the intelc Tool module to set its variables.

    Tool module to set its variables. +

    ifl

    Sets construction variables for the Intel Fortran compiler.

    Sets construction variables for the Intel Fortran compiler. +

    Sets: $FORTRAN Sets: $FORTRAN, $FORTRANCOM$FORTRANCOM, $FORTRANPPCOM$FORTRANPPCOM, $SHFORTRANCOM$SHFORTRANCOM, $SHFORTRANPPCOM$SHFORTRANPPCOM.

    . +

    Uses: $CPPFLAGS Uses: $CPPFLAGS, $FORTRANFLAGS$FORTRANFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_FORTRANINCFLAGS$_FORTRANINCFLAGS.

    . +

    ifort

    Sets construction variables for newer versions -of the Intel Fortran compiler for Linux.

    Sets construction variables for newer versions +of the Intel Fortran compiler for Linux. +

    Sets: $SHLINK Sets: $F77, $SHLINKFLAGS$F90.

    , $F95, $FORTRAN, $SHF77, $SHF77FLAGS, $SHF90, $SHF90FLAGS, $SHF95, $SHF95FLAGS, $SHFORTRAN, $SHFORTRANFLAGS. +

    ilink

    Sets construction variables for the -ilink linker on OS/2 systems.

    Sets construction variables for the +ilink linker on OS/2 systems. +

    Sets: $LIBDIRPREFIX Sets: $LIBDIRPREFIX, $LIBDIRSUFFIX$LIBDIRSUFFIX, $LIBLINKPREFIX$LIBLINKPREFIX, $LIBLINKSUFFIX$LIBLINKSUFFIX, $LINK$LINK, $LINKCOM$LINKCOM, $LINKFLAGS$LINKFLAGS.

    . +

    ilink32

    Sets construction variables for the Borland -ilink32 linker.

    Sets construction variables for the Borland +ilink32 linker. +

    Sets: $LIBDIRPREFIX Sets: $LIBDIRPREFIX, $LIBDIRSUFFIX$LIBDIRSUFFIX, $LIBLINKPREFIX$LIBLINKPREFIX, $LIBLINKSUFFIX$LIBLINKSUFFIX, $LINK$LINK, $LINKCOM$LINKCOM, $LINKFLAGS$LINKFLAGS.

    . +

    install

    Sets construction variables for file +and directory installation. +

    Sets: $INSTALL, $INSTALLSTR. +

    intelc

    Sets construction variables for the Intel C/C++ compiler +> Sets construction variables for the Intel C/C++ compiler (Linux and Windows, version 7 and later). Calls the gcc or msvc (on Linux and Windows, respectively) -to set underlying variables.

    Sets: $AR Sets: $AR, $CC$CC, $CXX$CXX, $INTEL_C_COMPILER_VERSION$INTEL_C_COMPILER_VERSION, $LINK$LINK.

    . +

    jar

    Sets construction variables for the jar utility.

    Sets construction variables for the jar utility. +

    Sets: $JAR Sets: $JAR, $JARCOM$JARCOM, $JARFLAGS$JARFLAGS, $JARSUFFIX$JARSUFFIX.

    . +

    Uses: $JARCOMSTR Uses: $JARCOMSTR.

    . +

    javac

    Sets construction variables for the javac compiler.

    Sets construction variables for the javac compiler. +

    Sets: $JAVAC Sets: $JAVABOOTCLASSPATH, $JAVACCOM$JAVAC, $JAVACFLAGS$JAVACCOM, $JAVACLASSSUFFIX$JAVACFLAGS, $JAVASUFFIX$JAVACLASSPATH.

    , $JAVACLASSSUFFIX, $JAVASOURCEPATH, $JAVASUFFIX. +

    Uses: $JAVACCOMSTR Uses: $JAVACCOMSTR.

    . +

    javah

    Sets construction variables for the javah tool.

    Sets construction variables for the javah tool. +

    Sets: $JAVACLASSSUFFIX Sets: $JAVACLASSSUFFIX, $JAVAH$JAVAH, $JAVAHCOM$JAVAHCOM, $JAVAHFLAGS$JAVAHFLAGS.

    . +

    Uses: $JAVAHCOMSTR Uses: $JAVACLASSPATH.

    , $JAVAHCOMSTR. +

    latex

    Sets construction variables for the latex utility.

    Sets construction variables for the latex utility. +

    Sets: $LATEX Sets: $LATEX, $LATEXCOM$LATEXCOM, $LATEXFLAGS$LATEXFLAGS.

    . +

    Uses: $LATEXCOMSTR Uses: $LATEXCOMSTR.

    . +

    lex

    Sets construction variables for the lex lexical analyser.

    Sets construction variables for the lex lexical analyser. +

    Sets: $LEX Sets: $LEX, $LEXCOM$LEXCOM, $LEXFLAGS$LEXFLAGS.

    . +

    Uses: $LEXCOMSTR Uses: $LEXCOMSTR.

    . +

    link

    Sets construction variables for generic POSIX linkers.

    Sets construction variables for generic POSIX linkers. +

    Sets: $LDMODULE Sets: $LDMODULE, $LDMODULECOM$LDMODULECOM, $LDMODULEFLAGS$LDMODULEFLAGS, $LDMODULEPREFIX$LDMODULEPREFIX, $LDMODULESUFFIX$LDMODULESUFFIX, $LIBDIRPREFIX$LIBDIRPREFIX, $LIBDIRSUFFIX$LIBDIRSUFFIX, $LIBLINKPREFIX$LIBLINKPREFIX, $LIBLINKSUFFIX$LIBLINKSUFFIX, $LINK$LINK, $LINKCOM$LINKCOM, $LINKFLAGS$LINKFLAGS, $SHLIBSUFFIX$SHLIBSUFFIX, $SHLINK$SHLINK, $SHLINKCOM$SHLINKCOM, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    Uses: $LDMODULECOMSTR Uses: $LDMODULECOMSTR, $LINKCOMSTR$LINKCOMSTR, $SHLINKCOMSTR$SHLINKCOMSTR.

    . +

    linkloc

    Sets construction variables for the -LinkLoc Sets construction variables for the +LinkLoc -linker for the Phar Lap ETS embedded operating system.

    Sets: $LIBDIRPREFIX Sets: $LIBDIRPREFIX, $LIBDIRSUFFIX$LIBDIRSUFFIX, $LIBLINKPREFIX$LIBLINKPREFIX, $LIBLINKSUFFIX$LIBLINKSUFFIX, $LINK$LINK, $LINKCOM$LINKCOM, $LINKFLAGS$LINKFLAGS, $SHLINK$SHLINK, $SHLINKCOM$SHLINKCOM, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    Uses: $LINKCOMSTR Uses: $LINKCOMSTR, $SHLINKCOMSTR$SHLINKCOMSTR.

    . +

    m4

    Sets construction variables for the m4 macro processor.

    Sets construction variables for the m4 macro processor. +

    Sets: $M4 Sets: $M4, $M4COM$M4COM, $M4FLAGS$M4FLAGS.

    . +

    Uses: $M4COMSTR Uses: $M4COMSTR.

    . +

    masm

    Sets construction variables for the Microsoft assembler.

    Sets construction variables for the Microsoft assembler. +

    Sets: $AS Sets: $AS, $ASCOM$ASCOM, $ASFLAGS$ASFLAGS, $ASPPCOM$ASPPCOM, $ASPPFLAGS$ASPPFLAGS.

    . +

    Uses: $ASCOMSTR Uses: $ASCOMSTR, $ASPPCOMSTR$ASPPCOMSTR, $CPPFLAGS$CPPFLAGS, $_CPPDEFFLAGS$_CPPDEFFLAGS, $_CPPINCFLAGS$_CPPINCFLAGS.

    . +

    midl

    Sets construction variables for the Microsoft IDL compiler.

    Sets construction variables for the Microsoft IDL compiler. +

    Sets: $MIDL Sets: $MIDL, $MIDLCOM$MIDLCOM, $MIDLFLAGS$MIDLFLAGS.

    . +

    Uses: $MIDLCOMSTR Uses: $MIDLCOMSTR.

    . +

    mingw

    Sets construction variables for MinGW (Minimal Gnu on Windows).

    Sets construction variables for MinGW (Minimal Gnu on Windows). +

    Sets: $AS Sets: $AS, $CC$CC, $CXX$CXX, $LIBPREFIX$LDMODULECOM, $LIBSUFFIX$LIBPREFIX, $OBJSUFFIX$LIBSUFFIX, $RC$OBJSUFFIX, $RCCOM$RC, $RCFLAGS$RCCOM, $RCINCFLAGS$RCFLAGS, $RCINCPREFIX$RCINCFLAGS, $RCINCSUFFIX$RCINCPREFIX, $SHCCFLAGS$RCINCSUFFIX, $SHCXXFLAGS$SHCCFLAGS, $SHLINKCOM$SHCXXFLAGS, $SHLINKFLAGS$SHLINKCOM, $SHOBJSUFFIX$SHLINKFLAGS, $WINDOWSDEFPREFIX$SHOBJSUFFIX, $WINDOWSDEFSUFFIX$WINDOWSDEFPREFIX.

    , $WINDOWSDEFSUFFIX. +

    Uses: $RCCOMSTR Uses: $RCCOMSTR, $SHLINKCOMSTR$SHLINKCOMSTR.

    . +

    mslib

    Sets construction variables for the Microsoft -mslib Sets construction variables for the Microsoft +mslib -library archiver.

    Sets: $AR Sets: $AR, $ARCOM$ARCOM, $ARFLAGS$ARFLAGS, $LIBPREFIX$LIBPREFIX, $LIBSUFFIX$LIBSUFFIX.

    . +

    Uses: $ARCOMSTR Uses: $ARCOMSTR.

    . +

    mslink

    Sets construction variables for the Microsoft linker.

    Sets construction variables for the Microsoft linker. +

    Sets: $LDMODULE Sets: $LDMODULE, $LDMODULECOM$LDMODULECOM, $LDMODULEFLAGS$LDMODULEFLAGS, $LDMODULEPREFIX$LDMODULEPREFIX, $LDMODULESUFFIX$LDMODULESUFFIX, $LIBDIRPREFIX$LIBDIRPREFIX, $LIBDIRSUFFIX$LIBDIRSUFFIX, $LIBLINKPREFIX$LIBLINKPREFIX, $LIBLINKSUFFIX$LIBLINKSUFFIX, $LINK$LINK, $LINKCOM$LINKCOM, $LINKFLAGS$LINKFLAGS, $REGSVR$REGSVR, $REGSVRCOM$REGSVRCOM, $REGSVRFLAGS$REGSVRFLAGS, $SHLINK$SHLINK, $SHLINKCOM$SHLINKCOM, $SHLINKFLAGS$SHLINKFLAGS, $WIN32DEFPREFIX$WIN32DEFPREFIX, $WIN32DEFSUFFIX$WIN32DEFSUFFIX, $WIN32EXPPREFIX$WIN32EXPPREFIX, $WIN32EXPSUFFIX$WIN32EXPSUFFIX, $WINDOWSDEFPREFIX$WINDOWSDEFPREFIX, $WINDOWSDEFSUFFIX$WINDOWSDEFSUFFIX, $WINDOWSEXPPREFIX$WINDOWSEXPPREFIX, $WINDOWSEXPSUFFIX$WINDOWSEXPSUFFIX, $WINDOWSPROGMANIFESTPREFIX$WINDOWSPROGMANIFESTPREFIX, $WINDOWSPROGMANIFESTSUFFIX$WINDOWSPROGMANIFESTSUFFIX, $WINDOWSSHLIBMANIFESTPREFIX$WINDOWSSHLIBMANIFESTPREFIX, $WINDOWSSHLIBMANIFESTSUFFIX$WINDOWSSHLIBMANIFESTSUFFIX, $WINDOWS_INSERT_DEF$WINDOWS_INSERT_DEF.

    . +

    Uses: $LDMODULECOMSTR Uses: $LDMODULECOMSTR, $LINKCOMSTR$LINKCOMSTR, $MSVS_IGNORE_IDE_PATHS$MSVS_IGNORE_IDE_PATHS, $REGSVRCOMSTR$REGSVRCOMSTR, $SHLINKCOMSTR$SHLINKCOMSTR.

    . +

    msvc

    Sets construction variables for the Microsoft Visual C/C++ compiler.

    Sets construction variables for the Microsoft Visual C/C++ compiler. +

    Sets: $BUILDERS Sets: $BUILDERS, $CC$CC, $CCCOM$CCCOM, $CCFLAGS$CCFLAGS, $CCPCHFLAGS$CCPCHFLAGS, $CCPDBFLAGS$CCPDBFLAGS, $CFILESUFFIX$CFILESUFFIX, $CFLAGS$CFLAGS, $CPPDEFPREFIX$CPPDEFPREFIX, $CPPDEFSUFFIX$CPPDEFSUFFIX, $CXX$CXX, $CXXCOM$CXXCOM, $CXXFILESUFFIX$CXXFILESUFFIX, $CXXFLAGS$CXXFLAGS, $INCPREFIX$INCPREFIX, $INCSUFFIX$INCSUFFIX, $OBJPREFIX$OBJPREFIX, $OBJSUFFIX$OBJSUFFIX, $PCHCOM$PCHCOM, $PCHPDBFLAGS$PCHPDBFLAGS, $RC$RC, $RCCOM$RCCOM, $RCFLAGS$RCFLAGS, $SHCC$SHCC, $SHCCCOM$SHCCCOM, $SHCCFLAGS$SHCCFLAGS, $SHCFLAGS$SHCFLAGS, $SHCXX$SHCXX, $SHCXXCOM$SHCXXCOM, $SHCXXFLAGS$SHCXXFLAGS, $SHOBJPREFIX$SHOBJPREFIX, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    Uses: $CCCOMSTR Uses: $CCCOMSTR, $CXXCOMSTR$CXXCOMSTR, $SHCCCOMSTR$SHCCCOMSTR, $SHCXXCOMSTR$SHCXXCOMSTR.

    . +

    msvs

    Sets construction variables for Microsoft Visual Studio.

    Sets construction variables for Microsoft Visual Studio. +

    Sets: $MSVSBUILDCOM Sets: $MSVSBUILDCOM, $MSVSCLEANCOM$MSVSCLEANCOM, $MSVSENCODING$MSVSENCODING, $MSVSPROJECTCOM$MSVSPROJECTCOM, $MSVSREBUILDCOM$MSVSREBUILDCOM, $MSVSSCONS$MSVSSCONS, $MSVSSCONSCOM$MSVSSCONSCOM, $MSVSSCONSCRIPT$MSVSSCONSCRIPT, $MSVSSCONSFLAGS$MSVSSCONSFLAGS, $MSVSSOLUTIONCOM$MSVSSOLUTIONCOM.

    . +

    mwcc

    Sets construction variables for the Metrowerks CodeWarrior compiler.

    Sets construction variables for the Metrowerks CodeWarrior compiler. +

    Sets: $CC Sets: $CC, $CCCOM$CCCOM, $CFILESUFFIX$CFILESUFFIX, $CPPDEFPREFIX$CPPDEFPREFIX, $CPPDEFSUFFIX$CPPDEFSUFFIX, $CXX$CXX, $CXXCOM$CXXCOM, $CXXFILESUFFIX$CXXFILESUFFIX, $INCPREFIX$INCPREFIX, $INCSUFFIX$INCSUFFIX, $MWCW_VERSION$MWCW_VERSION, $MWCW_VERSIONS$MWCW_VERSIONS, $SHCC$SHCC, $SHCCCOM$SHCCCOM, $SHCCFLAGS$SHCCFLAGS, $SHCFLAGS$SHCFLAGS, $SHCXX$SHCXX, $SHCXXCOM$SHCXXCOM, $SHCXXFLAGS$SHCXXFLAGS.

    . +

    Uses: $CCCOMSTR Uses: $CCCOMSTR, $CXXCOMSTR$CXXCOMSTR, $SHCCCOMSTR$SHCCCOMSTR, $SHCXXCOMSTR$SHCXXCOMSTR.

    . +

    mwld

    Sets construction variables for the Metrowerks CodeWarrior linker.

    Sets construction variables for the Metrowerks CodeWarrior linker. +

    Sets: $AR Sets: $AR, $ARCOM$ARCOM, $LIBDIRPREFIX$LIBDIRPREFIX, $LIBDIRSUFFIX$LIBDIRSUFFIX, $LIBLINKPREFIX$LIBLINKPREFIX, $LIBLINKSUFFIX$LIBLINKSUFFIX, $LINK$LINK, $LINKCOM$LINKCOM, $SHLINK$SHLINK, $SHLINKCOM$SHLINKCOM, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    nasm

    Sets construction variables for the -nasm Netwide Assembler.

    Sets construction variables for the +nasm Netwide Assembler. +

    Sets: $AS Sets: $AS, $ASCOM$ASCOM, $ASFLAGS$ASFLAGS, $ASPPCOM$ASPPCOM, $ASPPFLAGS$ASPPFLAGS.

    . +

    Uses: $ASCOMSTR Uses: $ASCOMSTR, $ASPPCOMSTR$ASPPCOMSTR.

    . +

    packaging

    A framework for building binary and source packages. +

    Packaging

    Sets construction variables for the Package Builder. +

    pdf

    Sets construction variables for the Portable Document Format builder.

    Sets construction variables for the Portable Document Format builder. +

    Sets: $PDFPREFIX Sets: $PDFPREFIX, $PDFSUFFIX$PDFSUFFIX.

    . +

    pdflatex

    Sets construction variables for the pdflatex utility.

    Sets construction variables for the pdflatex utility. +

    Sets: $LATEXRETRIES Sets: $LATEXRETRIES, $PDFLATEX$PDFLATEX, $PDFLATEXCOM$PDFLATEXCOM, $PDFLATEXFLAGS$PDFLATEXFLAGS.

    . +

    Uses: $PDFLATEXCOMSTR Uses: $PDFLATEXCOMSTR.

    . +

    pdftex

    Sets construction variables for the pdftex utility.

    Sets construction variables for the pdftex utility. +

    Sets: $LATEXRETRIES Sets: $LATEXRETRIES, $PDFLATEX$PDFLATEX, $PDFLATEXCOM$PDFLATEXCOM, $PDFLATEXFLAGS$PDFLATEXFLAGS, $PDFTEX$PDFTEX, $PDFTEXCOM$PDFTEXCOM, $PDFTEXFLAGS$PDFTEXFLAGS.

    . +

    Uses: $PDFLATEXCOMSTR Uses: $PDFLATEXCOMSTR, $PDFTEXCOMSTR$PDFTEXCOMSTR.

    . +

    Perforce

    Sets construction variables for interacting with the -Perforce source code management system.

    Sets construction variables for interacting with the +Perforce source code management system. +

    Sets: $P4 Sets: $P4, $P4COM$P4COM, $P4FLAGS$P4FLAGS.

    . +

    Uses: $P4COMSTR Uses: $P4COMSTR.

    . +

    qt

    Sets construction variables for building Qt applications.

    Sets construction variables for building Qt applications. +

    Sets: $QTDIR Sets: $QTDIR, $QT_AUTOSCAN$QT_AUTOSCAN, $QT_BINPATH$QT_BINPATH, $QT_CPPPATH$QT_CPPPATH, $QT_LIB$QT_LIB, $QT_LIBPATH$QT_LIBPATH, $QT_MOC$QT_MOC, $QT_MOCCXXPREFIX$QT_MOCCXXPREFIX, $QT_MOCCXXSUFFIX$QT_MOCCXXSUFFIX, $QT_MOCFROMCXXCOM$QT_MOCFROMCXXCOM, $QT_MOCFROMCXXFLAGS$QT_MOCFROMCXXFLAGS, $QT_MOCFROMHCOM$QT_MOCFROMHCOM, $QT_MOCFROMHFLAGS$QT_MOCFROMHFLAGS, $QT_MOCHPREFIX$QT_MOCHPREFIX, $QT_MOCHSUFFIX$QT_MOCHSUFFIX, $QT_UIC$QT_UIC, $QT_UICCOM$QT_UICCOM, $QT_UICDECLFLAGS$QT_UICDECLFLAGS, $QT_UICDECLPREFIX$QT_UICDECLPREFIX, $QT_UICDECLSUFFIX$QT_UICDECLSUFFIX, $QT_UICIMPLFLAGS$QT_UICIMPLFLAGS, $QT_UICIMPLPREFIX$QT_UICIMPLPREFIX, $QT_UICIMPLSUFFIX$QT_UICIMPLSUFFIX, $QT_UISUFFIX$QT_UISUFFIX.

    . +

    RCS

    Sets construction variables for the interaction -with the Revision Control System.

    Sets construction variables for the interaction +with the Revision Control System. +

    Sets: $RCS Sets: $RCS, $RCS_CO$RCS_CO, $RCS_COCOM$RCS_COCOM, $RCS_COFLAGS$RCS_COFLAGS.

    . +

    Uses: $RCS_COCOMSTR Uses: $RCS_COCOMSTR.

    . +

    rmic

    Sets construction variables for the rmic utility.

    Sets construction variables for the rmic utility. +

    Sets: $JAVACLASSSUFFIX Sets: $JAVACLASSSUFFIX, $RMIC$RMIC, $RMICCOM$RMICCOM, $RMICFLAGS$RMICFLAGS.

    . +

    Uses: $RMICCOMSTR Uses: $RMICCOMSTR.

    . +

    rpcgen

    Sets construction variables for building with RPCGEN.

    Sets construction variables for building with RPCGEN. +

    Sets: $RPCGEN Sets: $RPCGEN, $RPCGENCLIENTFLAGS$RPCGENCLIENTFLAGS, $RPCGENFLAGS$RPCGENFLAGS, $RPCGENHEADERFLAGS$RPCGENHEADERFLAGS, $RPCGENSERVICEFLAGS$RPCGENSERVICEFLAGS, $RPCGENXDRFLAGS$RPCGENXDRFLAGS.

    . +

    SCCS

    Sets construction variables for interacting with the -Source Code Control System.

    Sets construction variables for interacting with the +Source Code Control System. +

    Sets: $SCCS Sets: $SCCS, $SCCSCOM$SCCSCOM, $SCCSFLAGS$SCCSFLAGS, $SCCSGETFLAGS$SCCSGETFLAGS.

    . +

    Uses: $SCCSCOMSTR Uses: $SCCSCOMSTR.

    . +

    sgiar

    Sets construction variables for the SGI library archiver.

    Sets construction variables for the SGI library archiver. +

    Sets: $AR Sets: $AR, $ARCOMSTR$ARCOMSTR, $ARFLAGS$ARFLAGS, $LIBPREFIX$LIBPREFIX, $LIBSUFFIX$LIBSUFFIX, $SHLINK$SHLINK, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    Uses: $ARCOMSTR Uses: $ARCOMSTR, $SHLINKCOMSTR$SHLINKCOMSTR.

    . +

    sgic++

    Sets construction variables for the SGI C++ compiler.

    Sets construction variables for the SGI C++ compiler. +

    Sets: $CXX Sets: $CXX, $CXXFLAGS$CXXFLAGS, $SHCXX$SHCXX, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    sgicc

    Sets construction variables for the SGI C compiler.

    Sets construction variables for the SGI C compiler. +

    Sets: $CXX Sets: $CXX, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    sgilink

    Sets construction variables for the SGI linker.

    Sets construction variables for the SGI linker. +

    Sets: $LINK Sets: $LINK, $RPATHPREFIX$RPATHPREFIX, $RPATHSUFFIX$RPATHSUFFIX, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    sunar

    Sets construction variables for the Sun library archiver.

    Sets construction variables for the Sun library archiver. +

    Sets: $AR Sets: $AR, $ARCOM$ARCOM, $ARFLAGS$ARFLAGS, $LIBPREFIX$LIBPREFIX, $LIBSUFFIX$LIBSUFFIX, $SHLINK$SHLINK, $SHLINKCOM$SHLINKCOM, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    Uses: $ARCOMSTR Uses: $ARCOMSTR, $SHLINKCOMSTR$SHLINKCOMSTR.

    . +

    sunc++

    Sets construction variables for the Sun C++ compiler.

    Sets construction variables for the Sun C++ compiler. +

    Sets: $CXX Sets: $CXX, $CXXVERSION$CXXVERSION, $SHCXX$SHCXX, $SHCXXFLAGS$SHCXXFLAGS, $SHOBJPREFIX$SHOBJPREFIX, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    suncc

    Sets construction variables for the Sun C compiler.

    Sets construction variables for the Sun C compiler. +

    Sets: $CXX Sets: $CXX, $SHCCFLAGS$SHCCFLAGS, $SHOBJPREFIX$SHOBJPREFIX, $SHOBJSUFFIX$SHOBJSUFFIX.

    . +

    sunlink

    Sets construction variables for the Sun linker.

    Sets construction variables for the Sun linker. +

    Sets: $RPATHPREFIX Sets: $RPATHPREFIX, $RPATHSUFFIX$RPATHSUFFIX, $SHLINKFLAGS$SHLINKFLAGS.

    . +

    swig

    Sets construction variables for the SWIG interface generator.

    Sets construction variables for the SWIG interface generator. +

    Sets: $SWIG Sets: $SWIG, $SWIGCFILESUFFIX$SWIGCFILESUFFIX, $SWIGCOM$SWIGCOM, $SWIGCXXFILESUFFIX$SWIGCXXFILESUFFIX, $SWIGFLAGS$SWIGFLAGS.

    , $SWIGINCPREFIX, $SWIGINCSUFFIX, $SWIGPATH, $_SWIGINCFLAGS. +

    Uses: $SWIGCOMSTR Uses: $SWIGCOMSTR.

    . +

    tar

    Sets construction variables for the tar archiver.

    Sets construction variables for the tar archiver. +

    Sets: $TAR Sets: $TAR, $TARCOM$TARCOM, $TARFLAGS$TARFLAGS, $TARSUFFIX$TARSUFFIX.

    . +

    Uses: $TARCOMSTR Uses: $TARCOMSTR.

    . +

    tex

    Sets construction variables for the TeX formatter and typesetter.

    Sets construction variables for the TeX formatter and typesetter. +

    Sets: $BIBTEX Sets: $BIBTEX, $BIBTEXCOM$BIBTEXCOM, $BIBTEXFLAGS$BIBTEXFLAGS, $LATEX$LATEX, $LATEXCOM$LATEXCOM, $LATEXFLAGS$LATEXFLAGS, $MAKEINDEX$MAKEINDEX, $MAKEINDEXCOM$MAKEINDEXCOM, $MAKEINDEXFLAGS$MAKEINDEXFLAGS, $TEX$TEX, $TEXCOM$TEXCOM, $TEXFLAGS$TEXFLAGS.

    . +

    Uses: $BIBTEXCOMSTR Uses: $BIBTEXCOMSTR, $LATEXCOMSTR$LATEXCOMSTR, $MAKEINDEXCOMSTR$MAKEINDEXCOMSTR, $TEXCOMSTR$TEXCOMSTR.

    . +

    tlib

    Sets construction variables for the Borlan -tib library archiver.

    Sets construction variables for the Borlan +tib library archiver. +

    Sets: $AR Sets: $AR, $ARCOM$ARCOM, $ARFLAGS$ARFLAGS, $LIBPREFIX$LIBPREFIX, $LIBSUFFIX$LIBSUFFIX.

    . +

    Uses: $ARCOMSTR Uses: $ARCOMSTR.

    . +

    yacc

    Sets construction variables for the yacc parse generator.

    Sets construction variables for the yacc parse generator. +

    Sets: $YACC Sets: $YACC, $YACCCOM$YACCCOM, $YACCFLAGS$YACCFLAGS, $YACCHFILESUFFIX$YACCHFILESUFFIX, $YACCHXXFILESUFFIX$YACCHXXFILESUFFIX, $YACCVCGFILESUFFIX$YACCVCGFILESUFFIX.

    . +

    Uses: $YACCCOMSTR Uses: $YACCCOMSTR.

    . +

    zip

    Sets construction variables for the zip archiver.

    Sets construction variables for the zip archiver. +

    Sets: $ZIP Sets: $ZIP, $ZIPCOM$ZIPCOM, $ZIPCOMPRESSION$ZIPCOMPRESSION, $ZIPFLAGS$ZIPFLAGS, $ZIPSUFFIX$ZIPSUFFIX.

    . +

    Uses: $ZIPCOMSTR Uses: $ZIPCOMSTR.

    . +


    Handling Common Tasks

    Appendix D. Handling Common Tasks

    There is a common set of simple tasks that many build configurations rely +> There is a common set of simple tasks that many build configurations rely on as they become more complex. Most build tools have special purpose constructs for performing these tasks, but since SConscript -files are Python scripts, you can use more flexible built-in PythonPython scripts, you can use more flexible built-in Python services to perform these tasks. This appendix lists a number of these -tasks and how to implement them in Python.

    Python. +

    Example 1. Wildcard globbing to create a list of filenamesExample D-1. Wildcard globbing to create a list of filenames

    import glob
    -files = glob.glob(wildcard)
    import glob +files = glob.glob(wildcard) +

    Example 2. Filename extension substitutionExample D-2. Filename extension substitution

    import os.path
    -filename = os.path.splitext(filename)[0]+extension
    import os.path +filename = os.path.splitext(filename)[0]+extension +

    Example 3. Appending a path prefix to a list of filenamesExample D-3. Appending a path prefix to a list of filenames

    import os.path
    -filenames = [os.path.join(prefix, x) for x in filenames]
    import os.path +filenames = [os.path.join(prefix, x) for x in filenames] +

    or in Python 1.5.2:

    import os.path
    +CLASS="programlisting"
    +>
import os.path
     new_filenames = [] 
     for x in filenames:
    -    new_filenames.append(os.path.join(prefix, x))

    Example 4. Substituting a path prefix with another oneExample D-4. Substituting a path prefix with another one

    if filename.find(old_prefix) == 0:
    -    filename = filename.replace(old_prefix, new_prefix)
    if filename.find(old_prefix) == 0: + filename = filename.replace(old_prefix, new_prefix) +

    or in Python 1.5.2:

    import string
    +CLASS="programlisting"
    +>
import string
     if string.find(filename, old_prefix) == 0:
    -    filename = string.replace(filename, old_prefix, new_prefix)      

    Example 5. Filtering a filename list to exclude/retain only a specific set +>Example D-5. Filtering a filename list to exclude/retain only a specific set of extensions

    import os.path
    -filenames = [x for x in filenames if os.path.splitext(x)[1] in extensions]
    import os.path +filenames = [x for x in filenames if os.path.splitext(x)[1] in extensions] +

    or in Python 1.5.2:

    import os.path
    +CLASS="programlisting"
    +>
import os.path
     new_filenames = []
     for x in filenames:
         if os.path.splitext(x)[1] in extensions:
    -        new_filenames.append(x)

    Example 6. The "backtick function": run a shell command and capture the +>Example D-6. The "backtick function": run a shell command and capture the output

    import os
    -output = os.popen(command).read()

    In programming parlance, the SConstruct file is - declarative, - meaning you tell SConsSCons what you want done and let it figure out the order in which to do it, - rather than strictly imperative, where you specify explicitly the order in which to do things. @@ -39520,8 +39375,8 @@ ALIGN="LEFT" VALIGN="TOP" WIDTH="5%" >[2]

    Actually, the MD5 signature is used as the name of the file +> This easily-overlooked distinction between + how SCons decides if the target itself must be rebuilt + and how the target is then used to decide if a different + target must be rebuilt is one of the confusing + things that has led to the TargetSignatures + and SourceSignatures functions being + replaced by the simpler Decider function. +

    [3]

    Actually, the MD5 signature is used as the name of the file in the shared cache directory in which the contents are stored.