1
vote
1answer
42 views

Information on Build Systems-Books/Online Resources/Where to start? [closed]

I am new to how does a build system exactly works. I know the details on Operating Systems, Computer Architectures and Compilers fundamental concepts. Now, I want to make a very efficient Build ...
0
votes
0answers
75 views

To integrate git versions as build numbers or not? [closed]

A colleague and I have been taking turns debating/discussing the issues/merits of integrating a version derived from the current git repository into our code whenever it builds. We think the merits ...
1
vote
4answers
126 views

A make situation! Using 3 programming languages for parts of the program. Which build tool to use? [closed]

Ok! I don't need people to ask why I'm using 3 different programming languages for a relatively simple task... (It's in the coursework specification) My situation is, I have to write a program. This ...
1
vote
1answer
140 views

CMake generate C header via shell script

I have a shell script that takes a JSON file in and outputs a .h file which one of my targets depends on. It would appear that CMake's add_custom_command is what I need to accomplish this, but I can't ...
1
vote
2answers
75 views

Best way to optimize the building/Compilation task of C library on various machines

We need to build a C library on various environment like (suse x86, suse itanium, solaris, HPUX, IBM AIX) with different compiler options(like compiler flags, 32bit or 64 bit, static or dyanamic, ...
0
votes
2answers
101 views

tools for remote linux based machines for compiling C/C++ projects

I have 2 machines, i would like to use the most powerful one only when I need it and only for compiling purposes. Right now I'm only interested in C/C++ projects and in the support for gcc and clang, ...
1
vote
2answers
130 views

Makefile.in without Makefile.am in projects

In several projects I have seen the Makefile.in without Makefile.am . E.g. bash http://git.savannah.gnu.org/cgit/bash.git/tree/ and dtach http://dtach.cvs.sourceforge.net/viewvc/dtach/dtach/ I always ...
2
votes
2answers
353 views

cmake to place the intermediate files to a certain directory

I am pretty new to cmake and wonder how I can do this is cmake. I want to place all the intermediate files (like the .o files) to be placed in a certain directory (say "build") and then once the build ...
2
votes
2answers
527 views

C/C++, FORTRAN, underscores, and GNU Autotools

I have a question about mixed-language programming (C/C++ and FORTRAN) using gcc and gfortran. I've searched plenty of "mixing fortran with language X" and haven't been able to resolve this. I'm not ...
7
votes
5answers
360 views

What do companies use to build their binaries?

What do modern companies use to compile and link their projects? Especially with large projects, makefiles don't seem usable enough to be scalable. As far as I can tell, many companies use either ...
3
votes
3answers
183 views

Reliable portability for C code without relying on the preprocessor

Relying on the preprocessor and predefined compiler macros for achieving portability seems hard to manage. What's a better way to achieve portability for a C project? I want to put ...
20
votes
4answers
3k views

Getting started with autotools

Anyone recommend how a person could get started with autotools in building a C project?
3
votes
4answers
5k views

How to Increment Visual Studio build number using C++?

I have a Visual Studio 2008 project that produces a file called: "Game-Release.exe". This was configured under Project Properties -> C/C++ -> Linker -> General: $(OutDir)\$(ProjectName)-Release.exe ...