Scons Build Tool

SConsBuildTool http://www.scons.org/ is a software construction tool (build tool, or make tool) implemented in PythonLanguage. It uses Python scripts as "configuration files" for software builds. Based on the design that won the Software Carpentry build tool competition, SCons solves a number of problems associated with other build tools, especially including the classic and ubiquitous Make itself.

In its evolution, scons will be more general than a make replacement -- it will be a Gnu Build System replacement. The Gnu Build System (GBS) is also known as the set of Autotools (autoconf, automake, autoheader, etc...)

Distinctive features of SCons include:


It is much easier to use than NantTool or ApacheAnt. Spend a few hours with NantTool, trying to get a project going, then try SconsBuildTool. You won't go back.

It's the Cadillac of build tools - and it's free. What? If i didn't know it i wouldn't want to after reading this...


Comments

Performance / scalability seems to be quite an issue for scons. My experience with it has been with two BuildSystems that were both originally written in scons (and saw benefits in both cases from the scons' ease of use) but then had to be rewritten due to poor performance. The first seemed to suffer from scons doing many unnecesary checks for files in the filesystem (this apparently has been fixed) and the second seemed to spend most of its time churning through Python code. In both cases performance was good for small test projects but then when it was ramped up for use by everyone it fell down.

-- DamyanPepper


CategorySoftwareTool


EditText of this page (last edited December 21, 2005) or FindPage with title or text search