autotools
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 \"[详细]
2023-02-22 15:55 分类:问答Check for precompiled headers with autotools?
How can I check if gcc precompiled headers are supported with autoconf? Is there a macro like AC_CHECK_GCH? The project I\'m working on has a lot of templates and includes, I have tried writing a .h w[详细]
2023-02-20 03:45 分类:问答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.[详细]
2023-02-19 06:19 分类:问答How to install gettext mo files into /usr/share/locale using Automake?
For man pages, I can install them by: man_MANS = \\ program.1 \\ program.5 Is there similar approach to install gettext mo files? like,[详细]
2023-02-19 05:59 分类:问答Autotools: Generating Sources and Headers in Makefile.am
This link mentions wildcards as a way to automatically list the SOURCES and HEADERS in the Makefile.am file. It also mentions that some people write external scripts to generate those files.[详细]
2023-02-18 04:28 分类:问答How to use autotools to build Python interface at same time as library
I currently have a library written in C++, building with the GNU autotools, and I\'d like to add a Python interface to it.Using SWIG I have developed the interface, but I\'m having some trouble figuri[详细]
2023-02-12 18:05 分类:问答gethostbyaddr on Ubuntu 64
running the configure script for mozart oz gives me this: checking for stdint.h... (cached) yes checking for gethostbyaddr in -lnsl... no[详细]
2023-02-11 11:48 分类:问答Why doesn't Readline work as a subdirectory in autoconf?
I\'m trying to migrate a project to autotools, got stuck with integrating the third party libraries we use. Some work the basic way: (the following is in my configure.ac)[详细]
2023-02-11 08:41 分类:问答check if a library is present
Suppose I want to include a library: #include <library.h> b开发者_C百科ut I\'m not sure it\'s installed in the system. The usual way is to use tool like autotools. Is there a simpler way in C[详细]
2023-02-08 09:06 分类:问答Automake: dependency on build result
I use automake and autoc开发者_Go百科onf. In the subdirectory src/ the Makefile.am contains bin_PROGRAMS = hello[详细]
2023-02-07 16:20 分类:问答