Tagged Questions
SCons is a cross platform, open source build tool and an alternative to the classic "Make". You write the description of your build using the Python programming language.
13
votes
5answers
4k views
ant+cpptasks vs. scons vs. make
I'm looking into scons and I just want to make sure I know what the alternatives are, before I invest a chunk of brain cells into something completely different. I've been using GNU make in the past ...
11
votes
3answers
3k views
Autotools vs. Cmake vs. Scons
What are the differnces between Autotools, Cmake and Scons. What are the pros and cons of each of them. What do you prefer to use.
8
votes
2answers
495 views
Setting up SCons to Autolint
I'm using google's cpplint.py to verify source code in my project meets the standards set forth in the Google C++ Style Guide. We use SCons to build so I'd like to automate the process by having SCons ...
8
votes
2answers
2k views
How do I get projects to place their build output into the same directory with Scons?
Background
I'm trying out Scons by setting up a basic C++ sample project that has two sub-projects:
Prj1 is an EXE that depends on Prj2
Prj2 is a DLL that exports some functions
The problem I'm ...
7
votes
3answers
356 views
How to work around “scons: warning: Two different environments were specified for target”
Suppose I have an SConstruct file that looks like this:
env = Environment()
env.Program("a", ["a.c", "util.c"])
env.Program("b", ["b.c", "util.c"])
This build works properly with no SCons warning ...
7
votes
6answers
3k views
How to install scons on Mac OS X
Can you please tell me how can I install scons on MacOSX?
I don't see a mac specified download from http://www.scons.org/
Thank you.
7
votes
6answers
2k views
Building C++ on both Windows and Linux
I'm involved in C++ project targeted for Windows and Linux (RHEL) platforms. Till now the development was purely done on Visual Studio 2008. For Linux compilation we used 3rd party Visual Studio ...
7
votes
3answers
3k views
Eclipse CDT + SCons
We have a fairly large C/C++ project using scons for the building. I'd like to go at an attempt to build this through Eclipse-CDT. Anyone have any experience with this and can tell me the steps to set ...
7
votes
3answers
680 views
Are there any libraries/frameworks for SCons?
Each project using SCons seems to be reinventing the wheel.
I would be glad to take someones directory layout, and/or solution for variant builds(debug/release), and/or testing framework, and/or best ...
6
votes
2answers
201 views
Best practices to manage versions with scons?
I would like my Qt/C++ application to know which version it is. It should know that not from some configuration files, but with version number compiled into application binary. A version itself is ...
6
votes
8answers
525 views
Reason for Make's Popularity vs. Alternatives
What forces are at work keeping crufty old Make (with or without makefile generator tools) prominent as a build tool? Is it deficiencies in alternatives that keep them from being widely adopted, or ...
6
votes
4answers
490 views
What do you do to make compiler lines shorter?
Often when I'm working on a project with others, the amount of library paths and include paths that get sourced by the compiler in the Makefile get more numerous as time goes by. Also the paths can ...
5
votes
3answers
95 views
Add SCons files to ack searches
I love the code search utility ack. It is smart enough to look through Makefiles, but doesn't know about the SConstruct and SConscript files that scons uses. How do I add those to the files that ack ...
5
votes
2answers
377 views
How to create a symbolic link with SCons?
I'm using SCons for building a project and need to add a symbolic link to a file it is installing via env.Install. What command(s) will make a link that's the equivalent of running ln -s on the ...
5
votes
2answers
1k views
scons: How to force use of static library over shared?
In my SConscript I have the following line:
Program("xtest", Split("main.cpp"), LIBS="mylib fltk Xft Xinerama Xext X11 m")
How do I get scons to use mylib.a instead of mylib.so, while linking ...
5
votes
1answer
387 views
Using SCons as a build engine for distutils
I have a python package with some C code needed to build an extension (with some non-trivial building needs). I have used SCons as my build system because it's really good and flexible.
I'm looking ...
5
votes
2answers
547 views
scons: overriding build options for one file
Easy question but I don't know the answer.
Let's say I have a scons build where my CCFLAGS includes -O1. I have one file needsOptimization.cpp where I would like to override the -O1 with -O2 instead. ...
5
votes
3answers
3k views
How to optimize an SCons script?
I have an SCons script that takes around 10 seconds just to find out that nothing needs to be rebuild, which feels awfully long for what is essentially a rather small project. Reading the SConscript ...
5
votes
2answers
1k views
env.Clone() in scons doesn't do a deep-copy
In a SCons script I create a base environment from which I derived others environments. Something like this :
base = Environment()
base['CXXFLAGS'] += ['-DBOOST_HAS_PTHREAD', ...
5
votes
2answers
1k views
How to I get scons to invoke an external script?
I'm trying to use scons to build a latex document. In particular, I want to get scons to invoke a python program that generates a file containing a table that is \input{} into the main document. I've ...
4
votes
1answer
53 views
Python & SCons & Matlab: Wrong command input
I am using SCons to install a package, but when I try to compile with mex, the matlab compiler, it runs other command from pdfTeX with same name. To solve this problem on bash, I've just changed ...
4
votes
1answer
77 views
SCons: How to call a self defined python function in scons script and make right dependency
I write a python function such as replace strings and called in scons script.
def Replace(env, filename, old, new):
with open(filename,"r+") as f:
d = f.read()
d = d.replace(old, new)
...
4
votes
1answer
101 views
Determine list of source files (*.[ch]) for a complex build with scons
Suppose you have a complex source tree for a C project, lots of directories with lots of files. The scons build supports multiple targets (i386, sparc, powerpc) and multiple variants (debug, release). ...
4
votes
1answer
240 views
How to use Emacs and CEDET with SCons?
How to integrate SCons and emacs + cedet without breaking semantic and auto-complete?
4
votes
1answer
250 views
How to build-in gprof support to a program built with SCons?
Greetings,
Here is my SConstruct file:
env = Environment()
env.Append(CCFLAGS=['-g','-pg'])
env.Program(target='program1', source= ['program1.c'])
Also here is the output of the compilation:
...
4
votes
1answer
1k views
Out of source build with scons?
I have been using cmake to build my projects out of source, which is really convenient as you avoid polluting your source directory with unnecessary files.
Assuming the CMakeLists.txt is in the ...
4
votes
4answers
558 views
equivalent of “touch” in scons?
scons uses MD5 hashes rather than file mod times to determine if a dependency needs to be built.
I want this to be the default behavior. But is there any way to force it to assume a particular file ...
4
votes
2answers
2k views
Why does SCons VariantDir() not put output in the given directory?
I'm thinking about using SCons for a new project. It looks really good, though I'm finding VariantDir quite confusing.
I have a simple project with a handful of C source files in one directory, and I ...
4
votes
6answers
23k views
fatal error C1083: Cannot open include file: 'Windows.h': and scons
Today is officially my first day with C++ :P
I've downloaded Visual C++ 2005 Express Edition and Microsoft Platform SDK for Windows Server 2003 SP1, because I want to get my hands on the open source ...
3
votes
1answer
122 views
Configuring SCons to use separate tools for code generation and assembly
I am trying to prepare a build system using SCons. I want to use clang for the code generation phase and a custom compiler toolchain for everything else.
By default, the SCons configuration does not ...
3
votes
1answer
96 views
Scons: run a make command as a dependency for a target
I have a library that needs to by built as a dependency for my target. The library is distributed with a Makefile and there's nothing special needed to build it other than to run:
make my_target
...
3
votes
2answers
253 views
How can I get SCons to replace text in installed text files
I'd like to be able to replace a template variable ('$(SOFTWARE_VERSION)') while installing some python scripts from scons. Does scons already have such functionality? If not, what's the best way to ...
3
votes
1answer
217 views
SCons in Python
I would like to load SCons in an interactive Python session and enter directives that way as opposed to through an SConstruct or SConscript file. Is this possible? I'm trying to embed SCons ...
3
votes
5answers
436 views
What are the SCons alternatives?
I have projects in C++, Java and Python. Projects in C++ export SWIG interfaces so they can be used by Java and Python projects.
My question is: what building mechanism can I use to manage ...
3
votes
1answer
713 views
How to use Scons to compile same objects in different environments with Glob?
I have a C++ project builds with Scons. At first I have only the optimized version to compile, it works fine. Then I also need a debug version, then I add another environment for it. Here is the ...
3
votes
1answer
2k views
Changing default compiler in Linux, using SCons
On my Linux platform, I have several versions of gcc.
Under usr/bin I have:
gcc34
gcc44
gcc
Here are some outputs:
$ gcc --version
gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48)
$ gcc44 --version
...
3
votes
2answers
656 views
SCons: How to use the same builders for multiple variants (release/debug) of a program
The SCons User Guide tells about the usage of Multiple Construction Environments to build build multiple versions of a single program and gives the following example:
opt = Environment(CCFLAGS = ...
3
votes
2answers
2k views
How do I set scons system include path
Using scons I can easily set my include paths:
env.Append( CPPPATH=['foo'] )
This passes the flag
-Ifoo
to gcc
However I'm trying to compile with a lot of warnings enabled.
In particular with
...
3
votes
4answers
2k views
SCons to make a shared library (.so) with a static libarary (.a)
I'm trying to get SCons to make a shared library. One of the items going into the .so is a .a static lib.
I have a line like:
env_2.SharedLibrary('libstuff.so', Split("""stuff.cxx ...
3
votes
3answers
843 views
Build automation by using platform specific project files or by using project generators?
There are some build systems that are able to generate platform specific project files like Visual Studio sln,vcproj,vcxproj files or XCode xcodeproj projects under OS X.
One of them is CMake but I ...
3
votes
2answers
880 views
Building an iPhone application from the command line, without xcodebuild
It is possible to build an iPhone application manually, without using xcodebuild nor an Xcode project?
The idea is to build the application using SCons without creating an Xcode project. I know there ...
3
votes
1answer
483 views
How to set “:make” to use scons?
I know there is a way to make vim run scons instead of make when I press :make.
I had an option that did this in my ~/.vimrc but I removed it a while ago and forgot what it was.
3
votes
2answers
1k views
SCons, Boost::ASIO, Windows Precompiled Headers, and Linker Errors
I'm investigating using SCons for our build process as we develop C++ for multiple platforms. I'm 99% of the way there in the build configuration, but I'm running into a VERY strange error on Windows ...
3
votes
1answer
1k views
How do I use Qt and Scons together?
I'm looking to use SCons as my prefered method of building my mainly Qt based applications. I'm just learning SCons and I'm struggling to find documentation or tutorials on the topic. Can anyone ...
3
votes
1answer
1k views
Implementation of an 'install' target with SCons
I try to setup a build system to build a shared lib MySharedLib and a binary MyBinary that rely on MySharedLib. The build system should be able to install MySharedLib and MyBinary when asked for it, ...
3
votes
3answers
300 views
unit test build files
What are the best policies for unit testing build files?
The reason I ask is my company produces highly reliable embedded devices. Software patches are just not an option, as they cost our customers ...
3
votes
3answers
686 views
Best build system for embedded development/cross-compiling
I'm doing some development right now using dsPICs and I'm not exactly in love with MPLAB. I'm actually using Visual Studio with a makefile project. Currently I'm using SCons, which seems to work ...
3
votes
2answers
2k views
Detecting CPU architecture (32bit / 64bit ) in scons?
Are there any 'standard' plugins for detecting the CPU architecture in scons?
BTW, this question was asked already here in a more general form... just wondering if anyone has already taken the time ...
2
votes
1answer
60 views
Scons AddPostAction causes Dependency Check error work-around
In scons, I am attempting to make a UnitTest system (see code below), based on the great example from here: http://spacepants.org/blog/scons-unit-test
However due to a problem in recent scons 2.0.1 ...
2
votes
1answer
73 views
scons with distcc?
What's the correct way of using scons with distcc?
The obvious way of using CC="distcc g++" or CXX doesn't work.
Did anyone ever succeed in combining the two?
Thanks!