It seems that some autoconf projects use a configure.in file to generate a configure script, and so开发者_如何学Cme use configure.ac.
So, after spending a couple of hours of manually configuring autotools, I finally managed to create a makefile for my project. Only problem? It gives me problems with the linker.
I am hav开发者_JS百科ing a problem with a configure script verifying the presence of some basic functions,
Unfortunately I\'m not a linux expert. I tried 0MQ (ZeroMQ) communcation library on my host computer and want to use it for an embedded device. The CPU is an TI DM64x (arm_v5t_le architecture), we use
So I\'ve been working with Autotools trying to learn the toolchain so I can use it in some of my cross-platform projects. I\'ve got a pretty good handle on the very basics, but I\'ve run into an issue
Can I manage Makefile.am as I got used to manage Makefile? Usually I create targets which calls each other in order to make t开发者_如何学JAVAhe project built.
I have some autotools-managed project. Apart from source code files it has autogen.sh, configure.ac, Makefile.am, src/Makefile.am.
I want to integrate a header-only C++ library in my Autotools project. Since the library uses Autoconf and Automake, I use AC_CONFIG_SUBDIRS in configure.ac and added the library dir to the SUBDIRS =
Given: source tar.gz AFAIK,开发者_JAVA百科 configure does support debug build (configure --help doesn\'t show --enable-debug)
I\'m tryi开发者_如何学Pythonng to use Autotools to build my C program that needs to be linked against certain libraries. It only contains one C source file.