Tagged Questions
The build-system tag has no wiki summary.
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.
11
votes
9answers
417 views
Macro definitions for headers, where to put them?
When defining macros that headers rely on, such as _FILE_OFFSET_BITS, FUSE_USE_VERSION, _GNU_SOURCE among others, where is the best place to put them?
Some possibilities I've considered include
At ...
5
votes
2answers
552 views
Build System and portability
I'm wondering how i can make a portable build system (step-by-step), i currently use cmake because it was easy to set up in the first place, with only one arch target, but now that i have to package ...
4
votes
2answers
290 views
Tutorial for converting Autotools to CMake
So there seems to be a lot of writing on the subject of Autotools vs. CMake, but for the life of me I can't seem to find a good tutorial on how to convert a project from Autotools to CMake. Does ...
4
votes
7answers
225 views
Understanding C++ Compliation
I have recently become aware that I have no idea, genericly speaking, how a c/c++ compiler works. I will admit this initialy came from trying to understand header guards but came to the realization ...
4
votes
7answers
605 views
What's a stupidly simple way to compile an OCaml project?
I'm toying around with OCaml. The first thing I want to know how to do is build an OCaml project. Right now, I just want something stupidly simple since I'm just learning. Could anyone point me ...
3
votes
2answers
153 views
Build system for an embedded C/C++ project
I am looking for a high-level build system/tool that can help organise my embedded C project into "modules" and "components". Note that these two terms are highly subjective so my definitions are ...
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 ...
2
votes
4answers
317 views
Build C project automaticly
I'm working on a free software (bsd license) project with others. We're searching for a system that check out our source code (svn) and build it also as test it (unit tests with Check / other tools).
...
1
vote
2answers
120 views
CMake : encoding problem
Introduction:
I am trying to use CMake to obtain cross platform compilation scripts (for VS 9.0 on a Windows32 and Makefiles for Unix).
I am experiencing something i can't understand about ...
1
vote
1answer
91 views
CMAKE: Creating and building a list within a function — with directory, or global scope
I am not entirely familiar with the scoping rules of cmake. I need to buildup a list of various files whilst doing RPC code-generation for an IDL.
function(generate_rpc file_name)
set(PROTO_FILES ...
1
vote
2answers
146 views
How can I migrate from CruiseControl.Net To Atlassian Bamboo?
I am thinking of making a move from our homegrown CI/CD system to Bamboo + jira.
We are a .Net shop and so the tools need to support the execution of msbuild/msdeploy executables as well the running ...
1
vote
1answer
105 views
.sln-compatible Mono-based CLI build system?
I've recently begun doing ASP.NET MVC work with others using Visual Studio. While MonoDevelop can open their project workspace files (.sln from MSVS2010) and build the projects just fine, I'm curious ...
1
vote
1answer
770 views
how to include the commands of envsetup.sh in Android?
Hi
I have run the command ./build/envsetup.sh on my source code of android while compiling.
I want to use the following commands present in the same file.
-cgrep
-mmm
-mm
but I get the following ...
1
vote
3answers
275 views
JavaScript build systems
I have little experience with build systems for dynamic languages in general (let alone ones that run in a browser), but I imagine they can improve code quality by enforcing the use of code quality ...
1
vote
2answers
95 views
Integrating compressed source (tar.gz) of 3rdparty library to cmake build system
The source of 3rdparty library already contains CMakeLists.txt. I want to use add_subdirectory command on it. But first of all I have to untar this lib. As I know add_subdirectory runs in cmake time, ...
1
vote
2answers
446 views
Multi-Target Visual Studio Project: one source code
Any suggestions on how one could go about setting up a build system that would compile one or two libraries against a couple of different platforms/targets.
The main project is in Visual Studio.
For ...
0
votes
1answer
19 views
xcode 4 — is there a way to echo stuff in config files?
I am working on a deeply nested Xcode project that uses config files to control settings. There are projects within projects within projects. Is it possible to echo stuff in the config files? In ...
0
votes
0answers
40 views
Aadding a project <ROOT-DIR>/external/ in Android
I added a new library to the external folder and I am trying to get it compiled but can't figure how the Android build system compiles libraries in external project. I have written a Android.mk file ...
0
votes
1answer
19 views
Using a build system for reproducible research?
I am doing a research project that involves a pipeline of programs, each generating an output file that becomes the input for the next program. I would like to make it easy to repeat the series of ...
0
votes
1answer
280 views
Build System with Recursive Dependency Aggregation
I recently began setting up my own library and projects using a cross platform build system (generates make files, visual studio solutions/projects etc on demand) and I have run into a problem that ...
0
votes
1answer
204 views
How to handle build rule with unknown targets in OMake when target list generator is built
I have a project which uses OMake for its build system, and I am trying to handle a rather tough corner case.
I have some definition files and a tool which can take these definition files and create ...
0
votes
7answers
376 views
Should developers be limited to certain software for development?
Should developers be limited to certain applications for development use?
For most, the answer would be as long as the development team agrees it shouldn't matter.
For a company that is audited for ...