SCons explained
SCons is a computer software build tool that automatically analyzes source code file dependencies and operating system adaptation requirements from a software project description and generates final binary executables for installation on the target operating system platform. Its function is analogous to the traditional GNU build system based on the make utility and the autoconf tools.
SCons generates project configurations and build process implementations in the form of Python scripts.
History and related projects
SCons software history started with the Cons software construction utility created by Bob Sidebotham in 1999.[3] Cons was written in the Perl language. It served as a base for the ScCons build tool, a design which won the Software Carpentry project SC Build competition in August 2000.[4] ScCons was the foundation for SCons.
SCons inspired the creation of Waf, formerly known as SCons/BKsys, which emerged in the KDE community. For some time, there were plans to use it as the build tool for KDE 4 and beyond, but that effort was abandoned in favor of CMake.[5]
Notable applications that use SCons include the following: The Battle for Wesnoth,[6] Battlefield 1942, Doom 3,[7] FCEUX,[8] gem5,[9] gpsd,[10] GtkRadiant,[11] Madagascar,[12] Mixxx,[13] MongoDB,[14] Nullsoft Scriptable Install System,[15] OpenNebula,[16] VMware,,,[17] XORP and MCA2,[18] openpilot[19] and Godot.[20]
.csig is the SCons Content Signature file format.
Major features
Major SCons features include the following:
- Configuration files are Python scripts, which means that user-written builds have access to a complete general-purpose programming language.
- Automatic dependency analysis built-in for C, C++ and Fortran. Dependency analysis is extensible through user-defined dependency scanners for other languages or file types. Unlike the GNU Compiler Collection's (GCC) built-in dependency analysis, it uses a regular expression scan for included source files.
- Built-in support for C, C++, D, Java, Fortran, Objective-C, Yacc, Lex, Qt and SWIG, as well as TeX and LaTeX documents. SCons can also handle other languages or file types through user-defined builders.
- Building from central repositories of source code and pre-built targets.
- Built-in ability to use Microsoft Visual Studio, including the generation of,, and files.
- Detection of file content changes using MD5 signatures; optional, configurable ability to use traditional timestamps.
- Ability to do parallel builds, maintaining a specified number of jobs running simultaneously regardless of directory hierarchy.
- Integrated Autoconf-like support for finding #include files, libraries, functions and typedefs.
- Global view of all dependencies, so multiple build passes or reordering targets is not required.
- Ability to share built files in a cache to speed up multiple builds - like ccache but for any type of target file, not just C/C++ compilation.
- Designed from the ground up for cross-platform builds, and known to work on POSIX systems (including Linux, IBM AIX and OS/2,
, HP-UX, SGI IRIX, Solaris, illumos), MS Windows NT, Apple OS X.
Examples
The following example is a very simple SConstruct file that compiles the C program file hello-world.c using the default platform compiler:
Program("hello-world.c")
The following is a more complex example that creates an environment used to build the program hello:
env = Environmentenv.Append(CPPFLAGS=["-Wall", "-g"])env.Program("hello", ["hello.c", "main.c"])
See also
Notes and References
- Web site: SCons Design and Implementation. Steven. Knight. February 2002. March 23, 2024. live. https://web.archive.org/web/20180321082341/http://legacy.python.org/workshops/2002-02/papers/16/index.htm. March 21, 2018.
- Web site: Archives - SCons.
- .
- Web site: Software Carpentry Design Competition Second Round Results Config, Build, and Track categories. 2000-08-04. Alex. Samuel. 2012-10-29.
- Web site: Why the KDE project switched to CMake – and how (continued). Neundorf. Alexander. 21 June 2006. LWN . 21 July 2009.
- Web site: CompilingWesnoth. 2011-04-11 . Wiki . Wesnoth.
- Web site: README.txt . id Software . 2015-05-13.
- Web site: Downloads . FCEUX . 2017-04-25.
- .
- Web site: SCons is full of win today. ESR . iBiblio . 2011-04-05 . 2011-04-11.
- Web site: QE radiant . Developer documentation for GtkRadiant 1.6.0 (Zeroradiant). 2008-06-30 . Trac . 2009-12-28.
- Web site: Ahay . Wiki . Installation. 2011-02-26 . 2011-04-11.
- Web site: Mixxx/Compiling . . 2014-08-26.
- Web site: Building for Linux. https://web.archive.org/web/20090221220848/http://www.mongodb.org/display/DOCS/Building+for+Linux#BuildingforLinux-Building. dead. February 21, 2009. MongoDB. January 30, 2009. 10gen. February 8, 2011.
- Web site: INSTALL . https://archive.today/20120711221146/http://nsis.svn.sourceforge.net/viewvc/nsis/NSIS/trunk/INSTALL?revision=6147&view=markup . dead . 2012-07-11 . NSIS . source code . 2011-05-28 . 2011-04-11 . Source forge .
- Web site: /SConstruct - OpenNebula - OpenNebula Development pages . OpenNebula Project . 2016-01-09.
- Web site: README.txt . id Software . 2017-04-25.
- Web site: Modular Controller Architecture. Research Center for Information Technology (FZI), Karlsruhe Institute of Technology (KIT).
- Web site: openpilot Github repository. comma.ai/. 2021-05-10.
- Web site: Introduction to the buildsystem — Godot Engine latest documentation. docs.godotengine.org. 2019-08-19.