GNU Libtool is a script that allows package developers that to build library (shared or static) in a portable way.

learn more… | top users | synonyms

12
votes
1answer
6k views

libtool: What .la file is for?

Can somebody tell me what .la file is for? Also how it is used with shared object?
6
votes
2answers
372 views

Simple libtool alternative?

Being perfectly satisfied with old-style Makefiles, I am looking for a simple alternative to libtool. I do not want to switch to automake, and I keep running into problems with libtool when I try to ...
5
votes
0answers
113 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 = ...
4
votes
1answer
111 views

How portable is linking executables against loadable modules?

I have a project on my hand with some libraries that are compiled as loadable modules, i.e. linked with libtool's -module flag. These libraries are supposed to contain all the necessary functions in ...
4
votes
2answers
184 views

automake+libtool+c++ = very bloated interface

First i have "include_HEADERS = 'my public headers'" and "libfoobar_la_SOURCES = 'private sources' 'private headers'". All is fine. It compile/install/link. But when i do "nm -C my_instaed_lib.so" i ...
4
votes
1answer
76 views

Do Bluegene systems support ltdl or any other kind of dlopen() support?

so I have some code that uses dlopen for loading libraries, and I want it to work on a bluegene system, but I don't have a bluegene to test things on, and I've never directly worked with one. Does ...
4
votes
2answers
735 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 ...
3
votes
3answers
98 views

Compiling libptrace

Trying to compile libptrace (http://sourceforge.net/projects/libptrace/). The project has not advertised any preferred means of requesting support (Unfortunately, this project hasn't indicated the ...
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
3answers
5k views

libtool version mismatch error

when building my application with kdevelop 3.5 on Ubuntu 10.04, I get the following errors: libtool: Version mismatch error. This is libtool 2.2.6 Debian-2.2.6a-4, but the libtool: definition of this ...
3
votes
2answers
275 views

Wrapping different versions of static library in dynamic libraries

In my project there is a dependency on a static library (just called libsomething from now on) from a 3rd party. Recently, libsomething has become available in another version. My task is to provide ...
3
votes
3answers
858 views

Why would autoconf/automake project link against installed library instead of local development library?

I'm creating a library libgdata that has some tests and non-installed programs. I am running into the problem that once I've installed the library once, the programs seem to be linking to the ...
2
votes
1answer
24 views

Automake: building shared module which is not to be installed

How to tell Automake to build a dynamic module which is not to be installed? pkglib_LTLIBRARIES = mywrapper.la mywrapper_la_LDFLAGS = -no-undefined -module -avoid-version causes mywrapper.so to be ...
2
votes
1answer
171 views

How to get automake, libtool, and rpmbuild to work together

I'm trying to create an RPM of my package, which is built using automake and libtool, and I've encountered a problem: rpmbuild aborts upon discovering that the installed programs of the package ...
2
votes
1answer
202 views

How can I extract all localizable strings from all XIB files into one file?

I am looking for a way of extracting all localizable strings from .xib files and have all of them salved in only one file. Probably this involves ibtool but I was not able to determine a way of ...
2
votes
1answer
400 views

Explanation sought: libtool, automake, shared libraries (and Fortran)

The problem I had is solved. I'm posting this to solicit an explanation as to why the solution actually works. I've gotten great feedback here before. I have a legacy code base that used a very ...
2
votes
1answer
294 views

libtool python module linking and installation

I work on a project written in C, using the autotools, that produces a static library. Am also providing a Python interface to the C API in the context of the same project. I did not have permission ...
2
votes
2answers
156 views

How do I tell autoconf not to probe for fortran, C++ etc. when my package is built only in C?

This has been bugging me for years, but I've just been ignoring it, like I suspect everyone else does. AM_INIT_AUTOMAKE([dist-bzip2]) AC_PROG_CC AC_PROG_LIBTOOL AC_C_INLINE AM_PROG_CC_C_O With the ...
2
votes
4answers
654 views

how to create binary and .so using libtool

I have a set of cpp files that I want to compile directly into a binary and also to compile into a shared library. I have bin_PROGRAMS=mybin lib_LTLIBRARIES=libmylib.la COMMON_SOURCES=f1.cpp ...
2
votes
2answers
130 views

Libtool versioning of a library that depends on other libraries

I have a framework that uses Boost and CgiCC in the core application and in its interface. How should I version the library binary interface (a.k.a. libtool -version-info)? I have no problems ...
2
votes
0answers
109 views

Anyone use libtool as backend for scons?

I'm interested in examples.
2
votes
2answers
227 views

Is it possible to specify specific flags/define for DLL/SO build?

How can I specify some unique flags for DLL only builds. By default libtool adds -DDLL_EXPORT which is fine for most projects that follow GNU conventions, but if I work, for example, with Boost I may ...
2
votes
3answers
850 views

Autoconf - Where does config.h go?

I'm writing my own unit testing library (using autoconf, automake, and libtool) to better fit my needs (I don't need a super large amount of features, just a test runner and assertions). I have gotten ...
2
votes
1answer
425 views

Using libtool to load a duplicate function name from a shared library

I'm trying to create a 'debug' shared library (i.e., .so or .dll file) that calls another 'real' shared library that has the same C API as the debug library (in this case, to emulate the PKCS#11 API). ...
2
votes
1answer
400 views

Create jnilib from x86_64 .a files on Mac OS X 10.6

I want to use a bunch of non-universal (thin?), x86_64, C libraries from a Java application. The problem is that I only have static versions of them (.a files) and the jvm needs them to be dynamic. I ...
2
votes
1answer
861 views

libtool vs ar for creating a static library (xcode linker)

Creating a static library on Mac 10.5 with xcode via libtool and with ar via the command line both generate a libMainProject.a file however, when trying to use the one generate by libtool to link into ...
2
votes
1answer
619 views

LTLIBRARIES: mv *.Tpo *.Plo, but the former doesn't exist and the latter already does

I'm doing a pretty straight-forward conversion of an existing library (libtcod) to Autotools (for OS X happiness). Unfortunately, when I switch my Makefile.am's lib_LIBRARIES rule to lib_LTLIBRARIES, ...
2
votes
1answer
185 views

libtool adding extra 'U' to .so file names

I have a project built with autotools, divided into two folders; the first one, lib, creates some libraries, and the second one, tools, links against them. The build fails because libtool renames the ...
1
vote
1answer
38 views

How to make libtool point to user installed library?

I am trying to install a rubygem which keeps on trying to read a library which is not available. grep: /usr/lib64/libgdbm.la: No such file or directory /bin/sed: can't read /usr/lib64/libgdbm.la: No ...
1
vote
2answers
88 views

Automake Libtool 'No rule to make target'

I've been trying to build to GLTools library that accompanies The OpenGL SuperBible into a libtool library with automake. I've set up autoconf and automake but when it comes to actually build the ...
1
vote
2answers
54 views

how can I use eclipse to debug a libtool generated script?

I have a large c++ project built with libtool. the problem is that eclipse will not run a libtool generated script, and I get a "Program is not a recognized executable." error message. how can I use ...
1
vote
1answer
43 views

How libtool custom script is generated by configure?

I'm quite new to libtool stuff. I have a problem that building my project requires libtool 1.5, but the default libtool on my system (debian, squeeze) is 2.2. What I did is I've installed libtool 1.5 ...
1
vote
1answer
61 views

How to link to the libabc.a instead of libabc.so?

In the book Autotools: A Practioner's Guide to GNU Autoconf, Automake, and Libtool, chapter 6 (building libraries with libtool), an example of linking library is given. In the example, a library ...
1
vote
2answers
280 views
+50

Error installing PCRE

I'm trying to install PCRE on my Ubuntu 11.10 Server. When I run the "make" command, I get a really long output which always ends in this error: libtool: link: ( cd ".libs" && rm -f ...
1
vote
2answers
78 views

How do I link a shared library with --as-needed with automake?

How do I link a shared library with --as-needed using Automake? When I tried adding the flag to LDFLAGS, I saw libtool called as so: /bin/bash ../../libtool --mode=link ... -Wl,--as-needed ... ...
1
vote
3answers
302 views

Missing line numbers from debug symbols for library in whole program, but not on its own

I'm seeing an odd issue when trying to use gdb to debug a test program for a package built with libtool. If I run libtool --mode=execute gdb .libs/libfoo.so and ask it to list the source of some ...
1
vote
0answers
52 views

libtool: 'make' command ends without errors but don't creates any executable

When I run 'make', in a project with autotools and libtool, the library is builded correctly, but the executable is not created in its path. This is the line generated by automake: /bin/bash ...
1
vote
1answer
177 views

Using -rpath and $ORIGIN with libtool-based projects?

I am trying to incorporate a libtool-based package into a project of my own, perhaps in a non-standard way. Here is my goal: Build external project: ./configure --prefix=$HOME/blah --etcetera ...
1
vote
1answer
27 views

Access to libltdl's module reference count

I'm using libltdl in my C code to dynamically load libtool made shared object files. Apparently a reference count is internally kept for each module handle returned by libtool's version of dlopen. Is ...
1
vote
0answers
62 views

Using libtool without using links

My Makfile is using libtool in order to create some apache modules. Unfortunately I need my makefile to work on a VMWare shared forlder (hgfs), which does not support any kind of links (symbolic or ...
1
vote
1answer
181 views

autoconf set -fPIC only when necessary

I'm writing a shared library using autoconf/libtool which I want to compile for Linux and for Windows (Using the mingw cross-compiler). For Linux (and maybe other platforms which support it) I need to ...
1
vote
1answer
49 views

How to run a libtool executable in Instruments.app

I want to check my os x executable for memory leaks. And I wish to use Instruments.app for that. But I don't know how to execute it in wrapper which libtool creates (adding library paths etc). Can I ...
1
vote
3answers
262 views

Autotools: should config.guess, depcomp or ltmain.sh be stored in the SVN repo?

I am not very knowledgeable about autotools, so forgive me this question. I am taking over a project and I see in the subversion repository some files that belong to the distribution of libtool and ...
1
vote
1answer
227 views

Create both static and shared library with GNU libtool?

I am using the GNU autotools (including automake!) for my project. I would like to know if I could create a static and a shared library using libtool? Or would the declarations be separate? Would ...
1
vote
1answer
212 views

Generating IDL entities using automake/Makefile.am

For those unfamiliar with IDL (interface description language), it abstracts data description for use across platforms (java, c, c++, etc). My project has dependencies Foo.c, Foo.h, FooHelper.c, and ...
1
vote
3answers
792 views

When converting to libtool automake and autoconf can't find libtool

I'm trying to convert libcsv to use libtool so I can use it on mac os x without mangling the makefile. When I try to run the makefile generated from the tools I get the following error: ...
1
vote
1answer
482 views

autoconf libtool library linker path incorrect (need drive-letter) for ld.exe

I use autoconf and when the target is mingw I was using the -mno-cygwin flag. This has been removed so I'm trying to using the mingw tool chain. The problem is the linker isn't finding my libraries ...
1
vote
1answer
165 views

Is it possible to link some — but not all — libraries statically with libtool?

I am working on a project which is built using autoconf, automake and libtool. The project is distributed in both binary and source form. On Linux, by default the build script links to all libraries ...
1
vote
2answers
190 views

How does libtool decide to build a shared library or not?

How does libtool decide to build a shared library or not? Chenz
1
vote
2answers
323 views

libtool deleted by 'make distclean'

I've copied libtool into my program's source tree to distribute it with the program. But when I run 'make distclean' libtool is deleted with the rest of the rest of the generated files. How do I ...

1 2