Tagged Questions

Autotools is a suite of programming tools designed to assist in making source-code packages portable to many Unix-like systems.

learn more… | top users | synonyms

15
votes
9answers
3k views

Alternatives to Autoconf and Autotools?

I'm a very frequent user of the GNU Autotools (mostly Autoconf, occasionally Libtool). I'm working on a project where portability is going to be a sticking point.. Yet, the rest of the team is just ...
13
votes
6answers
1k views

Why use build tools like Autotools when we can just write our own makefiles?

Recently, I switched my development environment from Windows to Linux. So far, I have only used Visual Studio for C++ development, so many concepts, like make and Autotools, are new to me. I have read ...
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 ...
10
votes
1answer
134 views

Unix C++ compilers that do not understand -c -o

Autoconf/Automake are at pains to support ancient C compilers that didn't understand the simultaneous use of the -c and -o options (create an object file with this name). There's AM_PROG_CC_C_O and a ...
10
votes
3answers
5k views

CFLAGS vs CPPFLAGS

I understand that CFLAGS (or CXXFLAGS for C++) are for the compiler, whereas CPPFLAGS is used by the preprocessor. But I still don't understand the difference. I need to specify an include path for ...
9
votes
2answers
352 views

How to learn the Joy of Autotools?

So a couple years back I took some time to grok make, and it's paid off enormously. Writing little makefiles for building my projects and automating tasks is fun and productive. The downside is, of ...
9
votes
3answers
709 views

Getting started with autotools

Anyone recommend how a person could get started with autotools in building a C project?
9
votes
4answers
516 views

Is there a terminal tool to automatically generate autoconf/automake makefiles for a Vala project?

I am trying to create a Vala project to see how i like developing with the language as a possible replacement for Mono. I think that the automake stuff can be used to generate a project template with ...
8
votes
3answers
667 views

How to create a 32-bit shared-library on a 64-bit platform with autotools

I'm using autotools to build my system, which consists primarily of a library. On 64-bit Red Hat platforms, I need to be able to produce a library capable of working on 32-bit Red Hat platforms. ...
8
votes
3answers
1k views

gnu autotools: Debug/Release targets?

I've been looking for this for a while: I'm currently converting a medium-size program to autotools, coming from an eclipse-based method (with makefiles) I'm always used to having a "debug" build, ...
8
votes
3answers
260 views

Which files generated by Autotools should I keep in Git repository?

I am new to autotools and I am working on a C project. I want to add my project to a git repository but I am not sure, which files generated by the autotools I need to track and which should be ...
8
votes
3answers
640 views

Why has nobody created an open source build system for the brain dead?

I want to build a shared library. GNU/Linux is the development and target platform. C is the implementation language. I can't decide how I want to setup the build system and keep flitting around ...
7
votes
3answers
864 views

Bumping version numbers for new releases in associated files (documentation)

I would be interested to in knowing how you out there handle the bumping the version number for new releases issue. How do you handle the version number in associated files like man pages, etc. The ...
6
votes
4answers
113 views

Compiling workflow with version control

Up till now I've used version control for simple web-based projects that don't really have a compile stage. I've now forked a relatively large project that follows the standard "./configure; make; ...
6
votes
7answers
2k views

Why do shell script comparisons often use x$VAR = xyes?

I see this often in the build scripts of projects that use autotools (autoconf, automake). When somebody wants to check the value of a shell variable, they frequently use this idiom: if test ...
5
votes
0answers
111 views

Building .so module with autotools/libtool without .la and .a variants being installed

How to build and install a .so module with autotools/libtool without .la and .a libraries being also installed into --prefix path? Currently i am using following Makefile.am: lib_LTLIBRARIES = ...
5
votes
2answers
113 views

In a C/Java project, what is an appropriate way to manage the build?

In a C/Java project, what is an appropriate way to manage the build? I was initially thinking building everything C with Autotools and everything in Java with Apache Ant and then have each builder ...
5
votes
2answers
2k views

Build 32bit on 64 bit Linux using a configure script

I'm using a 64bit system but want a set of 32bit binaries. What options must I pass to a configure script to generate a 32bit/x86 makefile?
5
votes
7answers
1k views

How do I get rid of LD_LIBRARY_PATH at run-time?

I am building a C++ application that uses Intel's IPP library. This library is installed by default in /opt and requires you to set LD_LIBRARY_PATH both for compiling and for running your software (if ...
5
votes
3answers
1k views

Automake generating binaries to bin/ instead of in src/

I searched for the answer to this question but couldn't find any good. Maybe they're old and something has changed, so I ask again. I have a directory structure as: my_project src bin I want ...
5
votes
3answers
947 views

How to test a C++ library usability in configure.in?

I'm working on a C++ project on GNU/Linux and I'm looking for a way to test the existence and usability of IBM Informix's library with the Autotools - namely, editing a configure.in. I don't have ...
4
votes
1answer
42 views

Can I use autotools build system on closed source projects?

I think Autotools is a great product and I was thinking of using it until it dawned on me that it's licensed as GPL and I'm not writing GPL code here. Does using autotools in this way infringe the ...
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
1answer
908 views

Autotools - tar This does not look like a tar archive

After running make distcheck I get the message that I have successfully built the package and is ready for distribution. If I untar the tar.gz with tar -zxvf hello-0.2.tar.gz it successfully extracts ...
4
votes
2answers
271 views

How can you force recompilation of a single file in a Makefile?

The idea is that a project has a single file with __DATE__ and __TIME__ in it. It might be cool to have it recompiled without explicitly changing its modification date. edit: $(shell touch -c ..) ...
4
votes
1answer
72 views

Should config.h be made public? Conflict with Python

I am working on a C library that has SWIG bindings to Python. In my autotools configuration, I check for the gettimeofday function. I have discovered that I can't compile the Python portion of my ...
4
votes
2answers
865 views

Portably include GLib headers in autoconf/automake

I need to include the GLib headers for a project that is built with an autoconf-based system for portability. How can I safely import the GLib headers in a portable manner? I know about pkg-config, ...
4
votes
1answer
3k views

Cross-compile Apache Portable Runtime to the iPhone

This is a followup to a previous question on cross-compiling for the iPhone: http://stackoverflow.com/questions/1602182/cross-compile-autotools-based-libraries-for-official-iphone-sdk Basically, I am ...
4
votes
2answers
4k views

Cross-compile Autotools-based Libraries for Official iPhone SDK

Background I am writing a program that targets several different phones, including the iPhone. The program depends on several thirdparty libraries. I am having difficulty cross-compiling these ...
4
votes
2answers
731 views

Precompiled headers with Autotools

Is it possible to use gcc precompiled headers in projects using automake / libtool? Adding new make rules to build precompiled headers is not difficult. The issue is that you also have to add ...
4
votes
4answers
374 views

Refactoring build system to use Autotools

Over the past couple of days I have been reading into using autotools to build my project instead of the Makefiles I have pieced together over the past couple of months. Unfortunately I have not found ...
4
votes
2answers
4k views

How do you create tests for “make check” with GNU autotools

I'm using GNU autotools for the build system on a particular project. I want to start writing automated tests for verifcation. I would like to just type "make check" to have it automatically run ...
3
votes
1answer
86 views

autotools and python setup.py

I have a project written mostly in c++ that includes a few helper scripts written in python. For the moment, the scripts contain variables substituted by the autotools: #!@PYTHON@ # -*- coding: utf-8 ...
3
votes
1answer
84 views

How to get pretty prints with autotools

Is there a way with autotools (automake) to transform this big line gcc -DHAVE_CONFIG_H -I. -I. -I. -pthread -I/usr/include/libgsf-1 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include ...
3
votes
1answer
68 views

Is there any documentation for building OS X frameworks using autotools?

I have a cross-platform shared library, and I am using GNU autotools for the build system. I would like to be able to package the library as a framework on OS X. Is it possible to do this with ...
3
votes
1answer
79 views

'make distcheck' target and the info/dir file

I've added a new Info manual to my project, and added the requisite Makefile.am incantations: info_TEXINFOS = manual.texi Now when I run make distcheck, I get an error when verifying that make ...
3
votes
1answer
81 views

Locating $pkgdatadir defined by autotools from a script

My application uses autotools to install data files that are needed at runtime in $pkgdatadir. Part of the application is written in C, and the path to the data directory is set by the following ...
3
votes
2answers
87 views

Why does Objective-C have native autoconf support?

Clearly C, C++ and Fortran are the classic GNU languages and have full support. I know Erlang was added because the Erlang community worked very hard to add that functionality to the autotools, but ...
3
votes
1answer
425 views

Autotools vs CMake

I have been looking for pros & cons of Autotools and CMake. But I would like to know opinions from people having used one (or both) of these tools for projects. I used Autotools very basically a ...
3
votes
3answers
239 views

C/C++: Add -I option automatically for indirect include using automake

I have two projects being built using Automake. Here are simplified versions of the Automake.amS: AM_CPPFLAGS = -I/some/include_path lib_LTLIBRARIES = libfoo.la libfoo_la_SOURCES = foo.cpp ...
3
votes
1answer
179 views

Am I using libtool correctly?

I am running Linux, Ubuntu 10.04 . It is not the first time I try to use autotools. I did a lot of researches and follow a lot of tutorials : here is what I want to do, what I tried and what issue I ...
3
votes
2answers
176 views

configure.in or configure.ac?

It seems that some autoconf projects use a configure.in file to generate a configure script, and some use configure.ac. What is the difference/advantage between using one or the other?
3
votes
2answers
99 views

Looking for a way to store versions in a binary compiled from git repo

I'm looking for some tips to implement binary --version that would provide good information about the version it was compiled from. The project is using autotools build system, and is stored in a git ...
3
votes
2answers
188 views

Symbols from convenience library not getting exported in executable

I have a program, myprogram, which is linked with a static convenience library, call it libconvenience.a, which contains a function, func(). The function func() isn't called anywhere in myprogram; it ...
3
votes
2answers
212 views

Should autogen.sh be included in a tarball?

I have seen most tarballs does not include an autogen.sh file, but I have seen it in some tarballs. What is the rationale for including or not including autogen.sh in a tarball?
3
votes
2answers
114 views

Determine all of the file dependencies in a build process that uses makefiles and ant scripts

I'm trying to understand the build process of a codebase. The project uses both autoconf (configure scripts that generate makefiles) and Maven. I would like to be able identify all of the file ...
3
votes
2answers
80 views

autotools: don't include library when doing “make check”

So I'm writing tests for my code, and I want to stub out the calls to library functions (make sure that it's calling the right library calls at the right time, and that it handles errors ...
3
votes
1answer
78 views

Path managment in Linux programs

I have a newbie Linux programming question. Suppose I have a project that uses Autotools for compiling and deployment, and I have data files that are to be installed in a location like /var/something ...
3
votes
1answer
320 views

Autotools automatic invocation of lcov after 'make check'

I have successfully set up an autotools project where the tests compiles with instrumentation so I can get a test coverage report. I can get the report by running lcov in the source dir after a ...

1 2 3 4 5 6