0
votes
2answers
27 views
Fix source file search path when doing out-of-source autotools build within emacs
Hi
I have a project that uses autotools. A nice feature of autotools is 'out-of-source' builds, wheras instead of doing :
cd foobar
./configure
make
I actually create a folder …
0
votes
2answers
28 views
Build system for a highly modular portable open source project
We have an Open Source software project in the very beginning. The program is thought to be highly modular: for example, the underlying database can be either sqlite, postgre, or b …
4
votes
3answers
78 views
Getting started with autotools
Anyone recommend how a person could get started with autotools in building a C project?
0
votes
0answers
17 views
automake dependency tracking for nonstandard C++ suffix
hello
how can i force automake to generate dependency tracking for nonstandard C++ suffix files?
in particular I mean generating .deps directory file content.
I am using libtool a …
0
votes
1answer
35 views
Qt and QMake build dir
I would like to build qt and qt application out of the source tree. Do you know how to set from the command line the .obj directory both with configure and qmake?
1
vote
0answers
18 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 …
1
vote
1answer
15 views
Autotools local destination directory
When I run my autotools-generated Makefile with "make" it generates the files in the current directory. I would prefer it to not "pollute" my directory but move the programs to "bi …
0
votes
2answers
37 views
How do you set the order of libraries in automake?
How do you set the order of libraries in automake?
In my am file I have something like:
myprog_DEPENDENCIES = adhoc-target
myprog_SOURCES = myprog.c
myprog_LDADD = libmine.la
myp …
0
votes
2answers
33 views
In autotools, what is dnl’ed?
I see alot in autoconf code about stuff being dnl'ed and not dnl'ed. What is dnl'ed?
0
votes
0answers
15 views
How should AC_CACHE_CHECK be reset?
How should AC_CACHE_CHECK be reset?
In autoconf I am checking for headers. I've added some logic to try a little harder to find header files in std folders that might not be in th …
2
votes
1answer
79 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- …
2
votes
1answer
224 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-co …
1
vote
2answers
35 views
What is the best way to auto detect library dependencies in a C/C++ project?
What is the best way to auto detect library dependencies in a C/C++ project?
I have a project where I have all the dependencies on the machine. It builds and runs. Now I want to p …
4
votes
3answers
149 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 …
1
vote
2answers
32 views
How should I run a prebuilt Makefile from a Makefile.am?
How should I run a prebuilt Makefile from a Makefile.am?
I am new to automake/autoconf build system. The package I am implementing autotools for has a couple libraries and test ex …
