Autotools is a suite of programming tools (mainly autoconf, automake, and libtool) designed to assist in making source-code packages portable to many Unix-like systems.

learn more… | top users | synonyms

0
votes
1answer
15 views

Building a multi project C application with Eclipse CDT

I am moving from Netbeans to Eclipse (on Ubuntu 12.0.4). I have a C application that consists of several sub projects which are libraries (shared and static), as well as stand alone executables. I ...
0
votes
3answers
41 views

automake configure ignoring option --with-libxml2=yes

I am trying to compile, libgphoto2 with libxml2 support followint the guidelines here. Everything is ok until I try to run ./configure: ./configure --prefix=/tmp/gphoto2/local --with-libxml2=yes ...
0
votes
1answer
23 views

error when compiling — using autogen generated makefile

I am trying to compile a libwebsocket package, procedure used is :-- ./autogen ./configure make I am getting libtool error at make time :--- make make all-recursive make[1]: Entering directory ...
0
votes
0answers
17 views

Automake append OBJEXT

I've got an autotools project that I am working on and I have two files with the same name but different extensions: foo.cpp and foo.S. The project fails to build because automake tries to compile ...
0
votes
2answers
30 views

GNU Autotools with TCC

I recently discovered the Tiny C Compiler. For the project that I'm currently working on, performance is not a real issue, but file size is, making TCC ideal. I'm using Autotools as a build manager, ...
1
vote
2answers
48 views

Autoconf: default out-of-the-box optimizations vs. cross-compilation

I am the lead developer of a software package for which performance is of utmost importance. The performance of said software can drastically improve when certain facilities are available, such as: ...
0
votes
0answers
24 views

Makefile.in Files Not Generated with Automake 1.12.2

I recently upgraded my OS and upgraded my autotools versions with it. Now, one branch of my project will no longer build because automake no longer is using the Makefile.am files to generate the ...
4
votes
0answers
68 views

Building autotooled software to LLVM bitcode

I would like to compile software using the autotools build system to LLVM bitcode; that is, I would like the executables obtained at the end to be LLVM bitcode, not actual machine code. (The goal is ...
0
votes
1answer
47 views

“No rule to make target `distclean'” when using libtool convenience library

I am writing a C++ package with the GNU Autotools. I'm incorporating several external libraries to ship with the package. As I don't want to install each of those libraries separately, I instead use a ...
0
votes
0answers
26 views

Using The Boost Unit Test Framework (UTF) with `make check`

My C++ application has various shell-based integrations tests for standalone programs as well as source code unit tests for the app's API. The tests are run through the make check target, generated ...
1
vote
1answer
29 views

Command Line Error when Linking DLL

I am using Visual Studio 2010's toolchain to produce a DLL. Specifically, I want a Matlab module. I believe I am fairly close, but I am running into the following error: LIBCMT.lib(crt0.obj) : error ...
0
votes
0answers
30 views

Why do we have different ways to install different applications? [closed]

The point I'm trying to convey is that, why can't we all follow the MakeFile system which would kinda work afaik in many cases and it's generic. We have so many different systems that essentially do ...
1
vote
1answer
50 views

Autotools/libtool link library with libstdc++ despite -stdlib=libc++ option passed to configure

I'm trying to build google-glog on Mac OS X 10.8, using following options: ./configure CXX='clang++' CXXFLAGS='-std=c++11 -stdlib=libc++' Despite that the library gets linked with libstdc++. Why, ...
0
votes
2answers
34 views

Make autoconf “check” target without running it

Is there a way to compile the "check" target of an autoconf project without running it? I have Eclipse Juno with the "C/C++ Unit Test" plugin. I would like to be able to make the check target, then ...
1
vote
1answer
18 views

Why does autoconf cache my macro?

I am creating an android.m4 file to easily look up path to programs in the android SDK/NDK. The android.m4 file contains an helper function called _android_path_found_notfound: # ...
1
vote
0answers
18 views

How can I use gettext before install?

To use gettext, I need to call bindtextdomain(), providing a patch to the installed .mo files. For instance: bindtextdomain("myappname", "/opt/gnome/share/locale"); Of course, I use defines there, ...
0
votes
1answer
30 views

Autoconf spaces in path

I just converted a c++ project to a autotools project and written a few lines in configure.ac from here. Build fails saying "sh: /home/me/bla: No such file or directory" when my path should be "bla ...
0
votes
1answer
54 views

automake error: no proper invocation of AM_INIT_AUTOMAKE was found

i am new in autotools, and following this tutorial. but I could not solve this errors, $ automake configure.ac: error: no proper invocation of AM_INIT_AUTOMAKE was found. .. ...
0
votes
1answer
49 views

Checking for a C++ compiler's presence

The GNU documentation for AC_PROG_CXX states that: Otherwise, if the macro is invoked without an argument, then search for a C++ compiler under the likely names (first g++ and c++ then other ...
5
votes
3answers
159 views

How do I compile a binary which works with both libcrypto.so.0.9.8 and libcryto.so.1.0.0?

I have an autotools C project. How do I compile a binary which works with both libcrypto.so.0.9.8 and libcryto.so.1.0.0? (i.e. Ubuntu 9.10 and 12.04) Depending on the age of the OS on which I do ...
2
votes
0answers
28 views

Libtool passing incompatible flags to Microsoft's C/C++ compiler

We are attempting to use Libtool, in conjunction with the full compliment of GNU Build System tools, to produce 'DLL's for Windows 7 32bit. To be more specific, we are attempting to produce Matlab ...
1
vote
1answer
84 views

Installing GMP on Windows with cygwin

I am totally new to C++. I need to deal with very large integers, so I have to install GMP. I am using Cygwin (on Windows, of course). Any documentation I can find on installing this already assumes ...
1
vote
1answer
36 views

Hide targets when configure is run with certain options

My configure.ac lets the user specify --enable-monitor. In a subdirectory, I have a Makefile.in which contains a certain number of targets to build. I would like some of them to be only available when ...
1
vote
1answer
34 views

autotools: one project with one executable, one shared obj and a “shared” internal library

I am trying my hand at autotools. I have the following project hierarchy: project/src project/src/utilities project/src/utilities/util.c project/src/utilities/util.h ...
0
votes
1answer
46 views

mingw32-make tries to create subfolder .lib an illegal name

I am trying to compile a project that required freetype library so I was figuring out how to install freetype to mingw32 and the more safer way is to compile it. Anyway the problem was compiling ...
0
votes
0answers
53 views

Automatic generation of AC_CONFIG_FILES input

When creating a configure.ac file the standard practice seems to be to explicitly hard code a list of Makefiles that should be created from the corresponding Makefile.in. However it seems like this ...
1
vote
1answer
26 views

conditional AC_OUTPUT

I would like to maintain a configure file that generates a different set of Makefiles, depends on what flags the configure script was given. To be more specific, I want make dist to generate a subset ...
0
votes
1answer
38 views

Assigning c and cpp files in the _SOURCE in Makefile.am

My project contains c++ files and c files and I want to build my project with autotools. So I create the Makefile.am. and I m wondering if it's possible to put both cpp files and c files together ...
3
votes
0answers
151 views

libtool links with 32-bit version of libstdc++.so on a 64-bit target platform when multiple version of gcc are installed

First, I'd like to let you know that it is my first post on StackOverflow, so I hope that I won't make a fool of myself by asking a very stupid question. I've been googling about this problem for a ...
1
vote
2answers
47 views

How to use an alternative library outside of linux system

I'm build an opensourced project configured by GNU autoconf. It depends on the glib2.36 and it reports the glib library's version is lower than that. But I don't want to replace my system's glib in ...
2
votes
1answer
82 views

Autoconf with boost test - linker issue

I'm facing an issue with boost unit_test framework along with autoconf & automake... Here's about the project structure: ./include/com_i_foo.h ./include/com_foo.h ... class ...
1
vote
1answer
28 views

Is plugin_LTLIBRARIES a buildin variable like lib_LTLIBRARIES and noinst_LTLIBRARIES?

Recently I read the source code of strongswan. And I found this piece of script in one Makefile.am. I didn't see plugin_LTLIBRARIES before. I searched on the internet. Most of the result is ...
4
votes
0answers
130 views

Control order of libraries with libtool

We have an autotools-built project that requires both lcrypto (from OpenSSL) and lXXX (from a third party hardware vendor). Unfortunately, lXXX exposes an old version of the lcrypto library(!). When ...
1
vote
2answers
49 views

Autotools conditional include

I have a C file that includes a header. This header is in different locations depending on the distribution of Linux the build machine is running. What is the cleanest way to detect the header in the ...
1
vote
1answer
68 views

Use local library if system library is missing

I am using Autoconf and Automake tools, in ordrer to develop/distribute my application. Everything is working fine right now. My applications depends on GSL (GNU Scientific Library), so in my ...
13
votes
1answer
108 views

Autoconf check for struct flock

fcntl() uses struct flock structure to define and check file locks. Unfortunately, on different Unix systems the fields in this structure are in different order. Does anybody know how one could check ...
0
votes
0answers
37 views

Non-object file targets in autotools for inclusion in C source files

How can I tell lib/Makefile.am to produce non-.o targets out of certain input files (here .txt) and tell it to do this before compiling regular C source files? Background: I have a bunch of text ...
0
votes
1answer
55 views

how to use variables for strings in autoconf:configure.ac

How to use variables for messages inside configure.ac if test "$foo" = "yes"; then AC_MSG_ERROR([this string is being used in WARN as well as ERROR]) else AC_MSG_WARN([this string is being ...
0
votes
2answers
25 views

Should (and how to do it) include paths be collapsed in configure script?

In my configure/configure.ac, I do multiple PKG_CHECK_MODULES calls. Most of them return the same -I path:-I/usr/local/include, and also the same -L path: -L/usr/local/lib. I would say that -I path ...
2
votes
1answer
64 views

Automake: AM_CFLAGS has no effect

I am trying to add some compilation options in Automake, but none of the approaches work. Here is my configure.ac: AC_INIT(...) AC_PREREQ([2.59]) AC_CONFIG_AUX_DIR([build-aux]) ...
4
votes
1answer
388 views

installed libtool but libtoolize not found

im trying to build libxml2 from source on my mac. so i have autoconf libtool and automake installed using mac ports autoconf and automake seem to be working fine as expected. i try running ...
3
votes
3answers
102 views

Using autotools for a project with platform specific source code (multiple platforms)

I'm developing a project that is currently written in C but I plan to write some of the functions in asm for at least two platforms (x86_64 and arm). So I might have some source files: generic/one.c ...
0
votes
1answer
57 views

Checking environment variable in make through automake

Is there a way to have a conditional passed through automake so it is passed on to the resulting Makefile.in and Makefile later on? I check whether JAVA_HOME is defined in the environment in a ...
0
votes
2answers
76 views

compiling xkbcomp (Xorg App)

I'm trying to compile xkbcomp (from xorg App) but I got the following errors : warning: libxcb.so.1, needed by /lib/libX11.so, not found (try using -rpath or -rpath-link) /lib/libX11.so: undefined ...
1
vote
2answers
51 views

Tell autoconf that (only) one library must be statically linked

I am building a c++ program using automake. It uses many libraries, that I want to dynamically link. There is, hovewere, a single library that I want to link statically. I am not building this ...
0
votes
0answers
20 views

using libtool gdb from within geany

I'm working on a project that uses GNU autotools, so in order to debug the code using gdb, I'm running gdb from within libtool: libtool --mode=execute gdbtui foobar Is it possible to somehow do ...
0
votes
1answer
30 views

using libtool e gdb

I'm working on a project that uses GNU autotools, so in order to debug the code using gdb, I'm running gdb from within libtool: libtool --mode=execute gdbtui foobar Is it possible to reload a ...
0
votes
0answers
32 views

Make eclipse CDT parse auto generated file

On Linux a lot of #defines are placed in an auto generated file. As a result, eclipse does not find them. How do I make it index these files/import the contents of these files manually into the ...
0
votes
3answers
132 views

How to get shell script output into Makefile.am at make time?

I am working on an autotools project, and am a newbie to the autotools world. For various reasons, detailed at the bottom for completeness, I have a shell script from which I want to get the output ...
1
vote
1answer
25 views

Compiling with autotools: Retroactively change configure flags

Say I have compiled a project (not my own) with autotools and passed some flags to configure. Now I want to compile this same project again, but with slightly different configure flags. Is there a way ...

1 2 3 4 5 11