GNU Libtool is a script that allows package developers that to build library (shared or static) in a portable way.
0
votes
1answer
16 views
Difference between using LIB and ar under cygwin
Under cygwin, with libtool I am trying to link a static library. the --mode=link cl.exe line invokes ar cru on the .obj files to create the .lib. However, I know there's another program under windows, ...
0
votes
1answer
23 views
glibtoolize on MacOS tells me to consider adding `-I m4' to ACLOCAL_AMFLAGS, but that produces an error
I am trying to get libtool working on my MacOS 10.8.3 machine. Because everything Apple ships is out of date, I'm using macports. I have up-to-date versions:
libtool (GNU libtool) 2.4.2
automake (GNU ...
0
votes
0answers
14 views
Libtool Stops installing Openfst
When I do make, it just hangs and after long time, terminal returns error :
make[3]: Entering directory `/home/akshayy/Downloads/openfst-1.3.3/src/script'
/bin/bash ../../libtool --tag=CXX ...
0
votes
1answer
66 views
Can't link with Xerces-c static library with g++
I downloaded and unpacked xerces-c-3.1.1-x86_64-linux-gcc-3.4.tar.gz,
So I have
$ ls -1 /users/jdyu/labs/xerces/xerces-c-3.1.1-x86_64-linux-gcc-3.4/lib
libxerces-c-3.1.so
libxerces-c.a
...
0
votes
1answer
26 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
22 views
libtool error compiling under mingw: generated EXE_PATH_VALUE has extra quotes
I'm attempting to compile a few projects using MinGW on Windows (ZeroMQ and Google Protocol Buffers) and I've run into the same error each time. Partially through running make, each install generates ...
0
votes
1answer
55 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 ...
1
vote
1answer
34 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 ...
1
vote
1answer
55 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, ...
2
votes
0answers
31 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
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
...
1
vote
0answers
31 views
What is the complete list of packages I need for configuring software in Linux? [closed]
I am trying to build some software on a Linux machine that, for whatever reason, wasn't supplied with a terribly complete set of packages. First I had to install autoconf. Then I realized I had to ...
3
votes
0answers
168 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 ...
0
votes
1answer
98 views
installing new version of libtool for — libwebsocket warmcat
I am installing libwebsocket it is giving me error :---
http://git.warmcat.com/cgi-bin/cgit/libwebsockets/snapshot/libwebsockets-1.0-chrome25-firefox17.tar.gz
...
4
votes
0answers
144 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 ...
2
votes
2answers
37 views
What package am I missing if inline asm() is not supported?
I am trying to compile the PHP xhprof extension. On one server, make is successful, on another one it fails with "inline asm() not supported".
The relevant code is
asm volatile("rdtsc" : "=a" ...
1
vote
0answers
160 views
Error while installing APR on backtrack linux 5r3
When i am trying to install apache server it showed the following error on ./configure
checking for APR... configure: WARNING: APR version 1.4.0 or later is required, found 1.3.8
configure: WARNING: ...
1
vote
0answers
23 views
Alternative to libltdl.la not licensed with the GPL or LGPL
I've been developing software using the GNU Autotools, including libltdl.la, for 10+ years for internal company use. I am now, however, having to write software packages which will be distributed ...
4
votes
1answer
475 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 ...
0
votes
0answers
70 views
libtool and ltdl dynamic loading (cannot open shared object file)
I use ltdl to load a dynamic library, it works well in project folder. But if I do sudo make install, and run from installation folder, it said "cannot open shared object file".
following is the some ...
2
votes
1answer
67 views
Why is libtool's “current” used as “SOVERSION” on BSD, rather than “major”?
On Unix-like systems dynamic shared libraries (.so files) have an SONAME.
It can be extracted for example with:
readelf -a libfoo.so.0.3.2 | grep SONAME -> libfoo.so.0.
The last part is also called ...
0
votes
1answer
112 views
Passing “-no-undefined” to Libtool LDFLAG
I am building a dll using MSys and Mingw on windows. The source for project only provides a autogen.sh, configure.ac and makefile.am.
To generate the makefiles, you run autogen.sh then ./configure. I ...
0
votes
1answer
28 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
32 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
1answer
108 views
A issue when unixodbc dynamically linked with ltdl library?
all:
I am testing unixODBC in Solaris 10 environments, and find if libodbc and MyODBC driver are dynamically linked with libltdl.so:
ldd /usr/lib/libodbc.so.2
libltdl.so.7 => ...
3
votes
2answers
102 views
Cross-compiling gmp with mingw-w64: inlining and multiple defintions
I'm trying to cross-compile VLC (from linux to windows) with gnutls support which in turn uses libgmp. I get linking errors for multiple definitions for symbols in libgmp (___gmpz_abs), for example, ...
0
votes
0answers
47 views
GNU libtool: Compiles always in static
I use GNU libtool for my project: one simple C++ library.
The problem is, that with autotools it compiles it always in static (.a). I want it in shared (.so)
Here is for example my configure.ac:
...
0
votes
2answers
93 views
Make distcheck doesn't copy all sources
My project is structured as followed:
/
subdir1
subdir2
subdir3
common_include
Each subdir compiles different binaries and libs for my project.
common_include includes .h (C++ ...
0
votes
1answer
23 views
Do permanent linking to other shared libraries
currently I'm creating a shared library "libmylib.so" using libtool with statements like this:
libtool --mode=compile g++ -Wall -fPIC -shared $(CFLAGS) $(LFLAGS) $(LSTATIC)
libtool --mode=link g++ ...
0
votes
1answer
213 views
Link a static library to a shared one during build?
I have a problem building a shared library with GCC/Linux. Currently this shared library is created with GCC/libtool option "-shared" and everything is fine.
Now there are two additional, static ...
0
votes
1answer
77 views
Issues cross compiling unixODBC
I am on a Mac, and I am having libtool linking issues when trying to compile unixODBC for arm7 (for me to use in iOS). I downloaded unixODBC from their website and I use the following script to ...
1
vote
1answer
163 views
linking static libraries with libtool
How to link a static library (.a) with libtool?
I am creating a apache module (mod_shib_22.so) which is using three RSA library libcertc.a , libcertcsp.a and libbsafe.a
I am linking these libraries ...
0
votes
1answer
631 views
Libtool claims it does not support shared libraries during cross compilation
I'm attempting to build the expat (2.0.0) XML parsing library for an ARM embedded machine running busybox 1.13, and during the ./configure, I get the error:
checking if libtool supports shared ...
0
votes
1answer
232 views
Building Apache on Mountain Lion libtool problems
I'm trying to install apache from source on my mac. But keep running into problems. I've tried a ton of different things and just can't get this to build.
First, I couldn't configure without errors ...
0
votes
0answers
104 views
How to created a shared library (dylib) using automake that JNI/JNA can use?
How do I convince LibTools to generate a library identical to what gcc does automatically?
This works if I do things explicitly:
gcc -o libclique.dylib -shared disc.c phylip.c Slist.c clique.c
cp ...
0
votes
1answer
81 views
Running valgrind on project compiled with autotools outputs multiple heap summaries
I'm compiling a project with automake, but when attempting to run valgrind on the resulting executable, it does not behave as expected, appearing to run 8 times before actually executing the code that ...
0
votes
0answers
48 views
Libshout-2.3.1 make error
I am trying to build libshout from source in Linux and am coming across an error that I can't seem to solve. My ./configure command runs without error but when I run make I get the following error:
...
1
vote
1answer
158 views
How can an autotools user specify a combination of static & dynamic linking?
I'm building a program with autoconf, automake, and libtool.
My work requires that I statically link (most) libraries. This hasn't been
a problem in the past because I could statically link everything ...
1
vote
1answer
173 views
using homebrew apxs from homebrew apache httpd24 fails with libtool: compile: unable to infer tagged configuration
using homebrew apxs from homebrew apache httpd24 fails with libtool: compile: unable to infer tagged configuration
$ apxs -i -c -Wc,"-arch x86_64" -Wl,"-arch x86_64 " mod_uwsgi.c
...
1
vote
2answers
474 views
How to build *.so module in Automake and a libtool-using project?
I have the same problem as others have:
I have a *.la file generated by libtool in an Automake project (e.g. module.la),
but I need the *.so of it to use it for dlopen() (eg. module.so).
But: ...
0
votes
1answer
138 views
pkg-config --libs returns a .la file, but g++ can't handle it
I'm trying to build something against GStreamer from git. They have some magic process that makes pkg-config happy, but if I run it, I get a .la file:
$ pkg-config --libs gstreamer-1.0
...
0
votes
1answer
111 views
Is it possible to force GNU libtool to use the Solaris CC compiller instead of GCC?
Good morning, I was curious whether it is possible to force GNU libtool to use the Solaris CC compiller instead of GCC? If so, how might that be done? Thank you.
Here is libtool build script for ...
0
votes
0answers
165 views
Dynamic linking and encounter dyld: lazy symbol binding failed: Symbol not found:
I am in autotool environment.
I am developing a library A which uses library B and C as dependencies.
I build B with libtool so the output is libB.la
I build C with simple Makefile and the output ...
0
votes
0answers
68 views
libltdl: using lt_dlopen() without the requirement of a .la file?
here's a problem that has already made me spend the whole day, and it's still not solved. I'm still pretty new in autotools world, and things are only advancing bit by bit (in double sense).
My ...
0
votes
0answers
46 views
What are *.so.*T files for?
In the log I see a line
/usr/bin/install -c .libs/libgiomm-2.4.so.1.0.25T /mydir/glibmm-2.16.4/glibmm-2.16.4/gio/giomm/TEMP/usr/lib/libgiomm-2.4.so.1.0.25
Thats the only place where I see this T ...
0
votes
0answers
43 views
How to disable libtool in netbsd when building qt project
I'm trying to build my project written using Qt on NetBSD. Project uses plugin loader from Qt. When in Linux everything goes fine, but in NetBSD libtool generates files with extension .la in place ...
0
votes
1answer
571 views
compile libconfig++ with -static-libgcc and -static-libstdc++
I'm trying to compile libconfig++ version 1.4.8 with
make LDFLAGS='-static-libstdc++ -static-libgcc'
but this doesn't seem to work since I'm still getting:
$ readelf -d lib/.libs/libconfig++.so | ...
0
votes
1answer
173 views
How to have automake install headers file in a subdirectory of include
My current project has a couple files in its include/tatoparser directory that I would like to distribute along with my library.
qdii@nomada ~/MyProject $ ls include/tatoparser/
dataset.h ...
1
vote
1answer
87 views
Autotools: creating a static library from differently compiled sources
I am trying to build a static library from several sources. The problem is that for some sources I have to use different CFLAGS.
In the beginning I thought about creating several noinst_LIBRARIES and ...
0
votes
1answer
47 views
Preventing gcc/libtool building a shared object from scratch each time it is linked
I am building an autotools application that links to two shared libraries, libA.so and libB.so. Both of them in turn comprise of shared libraries and static (yes, against recommendation static) ...
