libtool/doc/libtool.texi

3336 lines
118 KiB
Plaintext
Raw Normal View History

1997-04-02 02:29:23 +08:00
\input texinfo @c -*-texinfo-*-
@c %**start of header
@setfilename libtool.info
1997-06-11 02:21:04 +08:00
@settitle Libtool
@c For double-sided printing, uncomment:
@c @setchapternewpage odd
1997-04-02 02:29:23 +08:00
@c %**end of header
@include version.texi
1998-04-27 23:10:35 +08:00
@set BUGADDR the libtool mailing list @email{bug-libtool@@gnu.org}
1997-11-08 14:25:09 +08:00
@set objdir .libs
1997-04-02 02:29:23 +08:00
1997-04-02 03:21:43 +08:00
@dircategory GNU programming tools
@direntry
* Libtool: (libtool). Generic shared library support script.
@end direntry
@dircategory Individual utilities
@direntry
* libtoolize: (libtool)Invoking libtoolize. Adding libtool support.
@end direntry
1997-04-02 02:29:23 +08:00
@ifinfo
1997-06-11 02:21:04 +08:00
This file documents GNU Libtool @value{VERSION}
1997-04-02 02:29:23 +08:00
1998-12-31 19:25:57 +08:00
Copyright (C) 1996-1999 Free Software Foundation, Inc.
1997-04-02 02:29:23 +08:00
Permission is granted to make and distribute verbatim copies of this
manual provided the copyright notice and this permission notice are
preserved on all copies.
@ignore
Permission is granted to process this file through TeX and print the
results, provided the printed document carries copying permission notice
identical to this one except for the removal of this paragraph
@end ignore
Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the
entire resulting derived work is distributed under the terms of a
permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation
approved by the Foundation.
@end ifinfo
@titlepage
@title GNU Libtool
@subtitle For version @value{VERSION}, @value{UPDATED}
@author Gordon Matzigkeit, Alexandre Oliva, Thomas Tanner, Gary V. Vaughan
1997-04-02 03:21:43 +08:00
1997-04-02 02:29:23 +08:00
@page
@vskip 0pt plus 1filll
1998-12-31 19:25:57 +08:00
Copyright @copyright{} 1996-1999 Free Software Foundation, Inc.
1997-04-02 02:29:23 +08:00
Permission is granted to make and distribute verbatim copies of this
manual provided the copyright notice and this permission notice are
preserved on all copies.
Permission is granted to copy and distribute modified versions of this
manual under the conditions for verbatim copying, provided that the
entire resulting derived work is distributed under the terms of a
permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual
into another language, under the above conditions for modified versions,
except that this permission notice may be stated in a translation
approved by the Free Software Foundation.
@end titlepage
1997-04-02 03:21:43 +08:00
@c Put everything in one index (arbitrarily chosen to be the concept index).
@syncodeindex vr cp
1997-04-02 03:53:01 +08:00
@syncodeindex fn cp
1998-04-27 23:10:35 +08:00
@syncodeindex tp cp
1997-04-02 03:21:43 +08:00
@synindex pg cp
1997-04-02 02:29:23 +08:00
@ifinfo
@node Top, Introduction, (dir), (dir)
@comment node-name, next, previous, up
@top Shared library support for GNU
1997-06-11 02:21:04 +08:00
This file documents GNU Libtool, a script that allows package developers
1997-04-02 02:29:23 +08:00
to provide generic shared library support. This edition documents
version @value{VERSION}.
1998-01-26 03:35:11 +08:00
@xref{Reporting bugs}, for information on how to report problems with
libtool.
1997-04-02 02:29:23 +08:00
@menu
* Introduction:: What the heck is libtool?
1997-05-25 06:50:52 +08:00
* Libtool paradigm:: How libtool's view of libraries is different.
* Using libtool:: Example of using libtool to build libraries.
1997-06-11 02:21:04 +08:00
* Invoking libtool:: Running the @code{libtool} script.
1997-05-25 06:50:52 +08:00
* Integrating libtool:: Using libtool in your own packages.
1997-04-02 02:29:23 +08:00
* Versioning:: Using library interface versions.
1997-05-25 06:50:52 +08:00
* Library tips:: Tips for library interface design.
1997-06-11 02:21:04 +08:00
* Inter-library dependencies:: Libraries that depend on other libraries.
1997-05-25 06:50:52 +08:00
* Dlopened modules:: @code{dlopen}ing libtool-created libraries.
* Other languages:: Using libtool without a C compiler.
1997-04-02 03:18:28 +08:00
* Troubleshooting:: When libtool doesn't work as advertised.
1997-04-02 03:21:43 +08:00
* Maintaining:: Information used by the libtool maintainer.
1997-04-02 03:53:01 +08:00
* Index:: Full index.
1997-04-02 02:29:23 +08:00
1998-04-20 03:29:28 +08:00
@detailmenu --- The Detailed Node Listing ---
1997-04-02 02:29:23 +08:00
Introduction
* Motivation:: Why does GNU need a libtool?
* Issues:: The problems that need to be addressed.
1997-05-25 06:50:52 +08:00
* Other implementations:: How other people have solved these issues.
1997-04-02 02:29:23 +08:00
* Postmortem:: Learning from past difficulties.
1997-05-25 06:50:52 +08:00
Using libtool
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
* Creating object files:: Compiling object files for libraries.
* Linking libraries:: Creating libraries from object files.
* Linking executables:: Linking object files against libtool libraries.
1998-01-26 03:35:11 +08:00
* Debugging executables:: Running GDB on libtool-generated programs.
1997-05-25 06:50:52 +08:00
* Installing libraries:: Making libraries available to users.
* Installing executables:: Making programs available to users.
* Static libraries:: When shared libraries are not wanted.
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
Invoking @code{libtool}
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
* Compile mode:: Creating library object files.
* Link mode:: Generating executables and libraries.
1998-01-26 03:35:11 +08:00
* Execute mode:: Debugging libtool-generated programs.
1997-05-25 06:50:52 +08:00
* Install mode:: Making libraries and executables public.
* Finish mode:: Completing a library installation.
* Uninstall mode:: Removing executables and libraries.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
Integrating libtool with your package
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
* Makefile rules:: Writing @file{Makefile} rules for libtool.
1997-04-02 02:29:23 +08:00
* Using Automake:: Automatically supporting libtool.
* Configuring:: Configuring libtool for a host system.
* Distributing:: What files to distribute with your package.
1998-02-06 15:36:38 +08:00
* Static-only libraries:: Sometimes shared libraries are just a pain.
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
Configuring libtool
1997-04-02 02:57:49 +08:00
1997-06-11 02:21:04 +08:00
* Invoking ltconfig:: @code{ltconfig} command line options.
* ltconfig example:: Manually configuring a @code{libtool}.
* AM_PROG_LIBTOOL:: Configuring @code{libtool} in @file{configure.in}.
1997-04-02 02:57:49 +08:00
1998-05-18 19:03:32 +08:00
Including libtool in your package
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
* Invoking libtoolize:: @code{libtoolize} command line options.
1997-05-25 06:50:52 +08:00
* Autoconf .o macros:: Autoconf macros that set object file names.
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
Library interface versions
1997-04-02 02:29:23 +08:00
* Interfaces:: What are library interfaces?
1997-05-25 06:50:52 +08:00
* Libtool versioning:: Libtool's versioning system.
* Updating version info:: Changing version information before releases.
1998-02-06 15:36:38 +08:00
* Release numbers:: Breaking binary compatibility for aesthetics.
1997-04-02 02:57:49 +08:00
1997-05-25 06:50:52 +08:00
Tips for interface design
1997-04-02 02:57:49 +08:00
1997-05-25 06:50:52 +08:00
* C header files:: How to write portable include files.
1997-04-02 03:04:40 +08:00
1997-06-06 02:00:56 +08:00
Dlopened modules
1997-07-30 02:31:08 +08:00
* Building modules:: Creating dlopenable objects and libraries.
1998-01-26 03:35:11 +08:00
* Dlpreopening:: Dlopening that works on static platforms.
1998-05-31 03:18:08 +08:00
* Finding the dlname:: Choosing the right file to @code{dlopen}.
1997-06-06 02:00:56 +08:00
* Dlopen issues:: Unresolved problems that need your attention.
1997-05-25 06:50:52 +08:00
Using libtool with other languages
1997-04-02 03:04:40 +08:00
1998-02-06 15:36:38 +08:00
* C++ libraries::
1997-04-02 03:04:40 +08:00
1997-04-02 03:21:43 +08:00
Troubleshooting
1997-05-25 06:50:52 +08:00
* Libtool test suite:: Libtool's self-tests.
* Reporting bugs:: How to report problems with libtool.
1997-04-02 03:21:43 +08:00
1997-05-25 06:50:52 +08:00
The libtool test suite
1997-04-02 03:21:43 +08:00
1997-05-25 06:50:52 +08:00
* Test descriptions:: The contents of the test suite.
* When tests fail:: What to do when a test fails.
1997-04-02 03:21:43 +08:00
1997-07-26 01:11:35 +08:00
Maintenance notes for libtool
1997-04-02 03:04:40 +08:00
1997-05-25 06:50:52 +08:00
* New ports:: How to port libtool to new systems.
* Tested platforms:: When libtool was last tested.
* Platform quirks:: Information about different library systems.
* libtool script contents:: Configuration information that libtool uses.
1998-04-20 03:29:28 +08:00
* Cheap tricks:: Making libtool maintainership easier.
1997-04-02 03:04:40 +08:00
Porting libtool to new systems
* Information sources:: Where to find relevant documentation
* Porting inter-library dependencies:: Implementation details explained
1997-05-25 06:50:52 +08:00
Platform quirks
1997-04-02 03:04:40 +08:00
1998-02-06 15:36:38 +08:00
* References:: Finding more information.
1997-04-02 03:04:40 +08:00
* Compilers:: Creating object files from source files.
1997-05-25 06:50:52 +08:00
* Reloadable objects:: Binding object files together.
1997-04-02 03:04:40 +08:00
* Archivers:: Programs that create static archives.
1997-05-25 06:50:52 +08:00
1997-04-02 03:21:43 +08:00
@end detailmenu
1997-04-02 02:29:23 +08:00
@end menu
@end ifinfo
1997-04-02 03:21:43 +08:00
@node Introduction
1997-04-02 02:29:23 +08:00
@chapter Introduction
In the past, if a source code package developer wanted to take advantage
of the power of shared libraries, he needed to write custom support code
1997-06-11 02:21:04 +08:00
for each platform on which his package ran. He also had to design a
configuration interface so that the package installer could choose what sort of
1997-04-02 02:29:23 +08:00
libraries were built.
1997-06-11 02:21:04 +08:00
GNU Libtool simplifies the developer's job by encapsulating both the
1997-04-02 02:29:23 +08:00
platform-specific dependencies, and the user interface, in a single
1997-06-11 02:21:04 +08:00
script. GNU Libtool is designed so that the complete functionality of
1997-04-02 02:29:23 +08:00
each host type is available via a generic interface, but nasty quirks
are hidden from the programmer.
1997-06-11 02:21:04 +08:00
GNU Libtool's consistent interface is reassuring@dots{} users don't need
1997-04-02 02:29:23 +08:00
to read obscure documentation in order to have their favorite source
package build shared libraries. They just run your package
1997-06-11 02:21:04 +08:00
@code{configure} script (or equivalent), and libtool does all the dirty
1997-04-02 02:29:23 +08:00
work.
There are several examples throughout this document. All assume the
1997-04-02 03:02:08 +08:00
same environment: we want to build a library, @file{libhello}, in a
1997-04-02 02:29:23 +08:00
generic way.
1997-04-02 03:02:08 +08:00
@file{libhello} could be a shared library, a static library, or
1997-04-02 02:29:23 +08:00
both@dots{} whatever is available on the host system, as long as libtool
has been ported to it.
This chapter explains the original design philosophy of libtool. Feel
free to skip to the next chapter, unless you are interested in history,
or want to write code to extend libtool in a consistent way.
@menu
* Motivation:: Why does GNU need a libtool?
* Issues:: The problems that need to be addressed.
1997-05-25 06:50:52 +08:00
* Other implementations:: How other people have solved these issues.
1997-04-02 02:29:23 +08:00
* Postmortem:: Learning from past difficulties.
@end menu
1997-04-02 03:21:43 +08:00
@node Motivation
1997-05-25 06:50:52 +08:00
@section Motivation for writing libtool
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex motivation for writing libtool
@cindex design philosophy
1997-04-02 02:29:23 +08:00
Since early 1995, several different GNU developers have recognized the
importance of having shared library support for their packages. The
primary motivation for such a change is to encourage modularity and
reuse of code (both conceptually and physically) in GNU programs.
Such a demand means that the way libraries are built in GNU packages
1997-06-11 02:21:04 +08:00
needs to be general, to allow for any library type the package installer
1998-04-15 00:29:20 +08:00
might want. The problem is compounded by the absence of a standard
procedure for creating shared libraries on different platforms.
1997-04-02 02:29:23 +08:00
The following sections outline the major issues facing shared library
1998-04-15 00:29:20 +08:00
support in GNU, and how shared library support could be standardized
with libtool.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex specifications for libtool
@cindex libtool specifications
1997-04-02 02:29:23 +08:00
The following specifications were used in developing and evaluating this
system:
@enumerate
@item
The system must be as elegant as possible.
@item
The system must be fully integrated with the GNU Autoconf and Automake
utilities, so that it will be easy for GNU maintainers to use. However,
the system must not require these tools, so that it can be used by
non-GNU packages.
@item
1997-04-02 02:57:49 +08:00
Portability to other (non-GNU) architectures and tools is desirable.
1997-04-02 02:29:23 +08:00
@end enumerate
1997-04-02 03:21:43 +08:00
@node Issues
1997-05-25 06:50:52 +08:00
@section Implementation issues
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex tricky design issues
@cindex design issues
1997-04-02 02:29:23 +08:00
The following issues need to be addressed in any reusable shared library
system, specifically libtool:
@enumerate
@item
1997-06-11 02:21:04 +08:00
The package installer should be able to control what sort of libraries
are built.
1997-04-02 02:29:23 +08:00
@item
It can be tricky to run dynamically linked programs whose libraries have
1998-05-31 03:18:08 +08:00
not yet been installed. @code{LD_LIBRARY_PATH} must be set properly (if
1997-06-11 02:21:04 +08:00
it is supported), or programs fail to run.
1997-04-02 02:29:23 +08:00
@item
The system must operate consistently even on hosts which don't support
shared libraries.
@item
The commands required to build shared libraries may differ wildly from
1997-06-11 02:21:04 +08:00
host to host. These need to be determined at configure time in
1997-04-02 02:29:23 +08:00
a consistent way.
@item
1997-06-11 02:21:04 +08:00
It is not always obvious with which suffix a shared library should be
installed. This makes it difficult for @file{Makefile} rules, since they
generally assume that file names are the same from host to host.
1997-04-02 02:29:23 +08:00
@item
The system needs a simple library version number abstraction, so that
shared libraries can be upgraded in place. The programmer should be
informed how to design the interfaces to the library to maximize binary
compatibility.
@item
1997-06-11 02:21:04 +08:00
The install @file{Makefile} target should warn the package installer to set
1998-05-31 03:18:08 +08:00
the proper environment variables (@code{LD_LIBRARY_PATH} or equivalent),
or run @code{ldconfig}.
1997-04-02 02:29:23 +08:00
@end enumerate
1997-05-25 06:50:52 +08:00
@node Other implementations
@section Other implementations
1997-04-02 02:29:23 +08:00
1998-04-15 00:29:20 +08:00
Even before libtool was developed, many free software packages built and
installed their own shared libraries. At first, these packages were
examined to avoid reinventing existing features.
1997-04-02 02:29:23 +08:00
Now it is clear that none of these packages have documented the details
of shared library systems that libtool requires. So, other packages
have been more or less abandoned as influences.
1997-04-02 03:21:43 +08:00
@node Postmortem
1997-05-25 06:50:52 +08:00
@section A postmortem analysis of other implementations
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex other implementations, flaws in
@cindex reusability of library systems
1998-04-15 00:29:20 +08:00
In all fairness, each of the implementations that were examined do the
job that they were intended to do, for a number of different host
systems. However, none of these solutions seem to function well as a
generalized, reusable component.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex complexity of library systems
1998-04-15 00:29:20 +08:00
Most were too complex to use (much less modify) without understanding
exactly what the implementation does, and they were generally not
documented.
1997-04-02 02:29:23 +08:00
1998-04-15 00:29:20 +08:00
The main difficulty is that different vendors have different views of
what libraries are, and none of the packages which were examined seemed
to be confident enough to settle on a single paradigm that just
@emph{works}.
1997-04-02 02:29:23 +08:00
Ideally, libtool would be a standard that would be implemented as series
of extensions and modifications to existing library systems to make them
1998-04-15 00:29:20 +08:00
work consistently. However, it is not an easy task to convince
operating system developers to mend their evil ways, and people want to
build shared libraries right now, even on buggy, broken, confused
operating systems.
1997-04-02 02:29:23 +08:00
1998-04-15 00:29:20 +08:00
For this reason, libtool was designed as an independent shell script.
1997-04-02 02:29:23 +08:00
It isolates the problems and inconsistencies in library building that
1998-04-15 00:29:20 +08:00
plague @file{Makefile} writers by wrapping the compiler suite on
different platforms with a consistent, powerful interface.
1997-04-02 02:29:23 +08:00
1998-04-15 00:29:20 +08:00
With luck, libtool will be useful to and used by the GNU community, and
that the lessons that were learned in writing it will be taken up by
designers of future library systems.
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
@node Libtool paradigm
@chapter The libtool paradigm
1997-04-02 02:29:23 +08:00
At first, libtool was designed to support an arbitrary number of library
1998-04-15 00:29:20 +08:00
object types. After libtool was ported to more platforms, a new
paradigm gradually developed for describing the relationship between
libraries and programs.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex definition of libraries
@cindex libraries, definition of
1997-06-11 02:21:04 +08:00
In summary, ``libraries are programs with multiple entry points, and
1997-04-02 02:29:23 +08:00
more formally defined interfaces.''
Version 0.7 of libtool was a complete redesign and rewrite of libtool to
reflect this new paradigm. So far, it has proved to be successful:
1997-06-11 02:21:04 +08:00
libtool is simpler and more useful than before.
1997-04-02 02:29:23 +08:00
The best way to introduce the libtool paradigm is to contrast it with
the paradigm of existing library systems, with examples from each. It
is a new way of thinking, so it may take a little time to absorb, but
1997-06-11 02:21:04 +08:00
when you understand it, the world becomes simpler.
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
@node Using libtool
@chapter Using libtool
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex examples of using libtool
@cindex libtool examples
1997-04-02 02:29:23 +08:00
It makes little sense to talk about using libtool in your own packages
until you have seen how it makes your life simpler. The examples in
this chapter introduce the main features of libtool by comparing the
standard library building procedure to libtool's operation on two
different platforms:
1997-06-11 02:21:04 +08:00
@table @samp
@item a23
1997-04-02 02:29:23 +08:00
An Ultrix 4.2 platform with only static libraries.
1997-06-11 02:21:04 +08:00
@item burger
1997-04-02 02:29:23 +08:00
A NetBSD/i386 1.2 platform with shared libraries.
@end table
You can follow these examples on your own platform, using the
1997-06-12 01:13:23 +08:00
preconfigured libtool script that was installed with libtool
1997-06-11 02:21:04 +08:00
(@pxref{Configuring}).
1997-04-02 02:29:23 +08:00
Source files for the following examples are taken from the @file{demo}
subdirectory of the libtool distribution. Assume that we are building a
library, @file{libhello}, out of the files @file{foo.c} and
@file{hello.c}.
1998-05-31 03:18:08 +08:00
Note that the @file{foo.c} source file uses the @code{cos} math library
1997-04-02 03:21:43 +08:00
function, which is usually found in the standalone math library, and not
1998-05-31 03:18:08 +08:00
the C library (@pxref{Trig Functions, , Trigonometric Functions, libc,
The GNU C Library Reference Manual}). So, we need to add @kbd{-lm} to
the end of the link line whenever we link @file{foo.o} or @file{foo.lo}
into an executable or a library (@pxref{Inter-library dependencies}).
1997-04-02 03:21:43 +08:00
The same rule applies whenever you use functions that don't appear in
the standard C library@dots{} you need to add the appropriate
@kbd{-l@var{name}} flag to the end of the link line when you link
against those objects.
1997-04-02 02:29:23 +08:00
After we have built that library, we want to create a program by linking
@file{main.o} against @file{libhello}.
@menu
1997-05-25 06:50:52 +08:00
* Creating object files:: Compiling object files for libraries.
* Linking libraries:: Creating libraries from object files.
* Linking executables:: Linking object files against libtool libraries.
1998-01-26 03:35:11 +08:00
* Debugging executables:: Running GDB on libtool-generated programs.
1997-05-25 06:50:52 +08:00
* Installing libraries:: Making libraries available to users.
* Installing executables:: Making programs available to users.
* Static libraries:: When shared libraries are not wanted.
1997-04-02 02:29:23 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node Creating object files
@section Creating object files
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex compiling object files
@cindex object files, compiling
1997-04-02 02:29:23 +08:00
To create an object file from a source file, the compiler is invoked
with the `-c' flag (and any other desired flags):
@example
burger$ @kbd{gcc -g -O -c main.c}
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
The above compiler command produces an object file, @file{main.o}, from
the source file @file{main.c}.
For most library systems, creating object files that become part of a
static library is as simple as creating object files that are linked to
form an executable:
@example
burger$ @kbd{gcc -g -O -c foo.c}
burger$ @kbd{gcc -g -O -c hello.c}
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
1998-05-18 19:03:32 +08:00
@cindex position-independent code
1997-04-02 03:04:40 +08:00
@cindex PIC (position-independent code)
1997-04-02 02:29:23 +08:00
Shared libraries, however, may only be built from
1997-04-02 03:04:40 +08:00
@dfn{position-independent code} (PIC). So, special flags must be passed
1997-04-02 02:29:23 +08:00
to the compiler to tell it to generate PIC rather than the standard
1997-06-12 01:13:23 +08:00
position-dependent code.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex library object file
1997-06-11 02:21:04 +08:00
@cindex @samp{.lo} files
1998-05-18 19:03:32 +08:00
@cindex object files, library
1997-04-02 02:29:23 +08:00
Since this is a library implementation detail, libtool hides the
complexity of PIC compiler flags by using separate library object files
1997-06-11 02:21:04 +08:00
(which end in @samp{.lo} instead of @samp{.o}). On systems without shared
1997-04-02 02:29:23 +08:00
libraries (or without special PIC compiler flags), these library object
files are identical to ``standard'' object files.
To create library object files for @file{foo.c} and @file{hello.c},
1997-06-11 02:21:04 +08:00
simply invoke libtool with the standard compilation command as
1998-01-26 03:35:11 +08:00
arguments (@pxref{Compile mode}):
1997-04-02 02:29:23 +08:00
@example
1997-04-02 03:00:38 +08:00
a23$ @kbd{libtool gcc -g -O -c foo.c}
gcc -g -O -c foo.c
1998-04-20 03:29:28 +08:00
echo timestamp > foo.lo
1997-04-02 03:00:38 +08:00
a23$ @kbd{libtool gcc -g -O -c hello.c}
gcc -g -O -c hello.c
1998-04-20 03:29:28 +08:00
echo timestamp > hello.lo
1997-04-02 02:29:23 +08:00
a23$
@end example
1998-04-20 03:29:28 +08:00
Note that libtool creates two files for each invocation. The @samp{.lo}
file is a library object, which may be built into a shared library, and
the @samp{.o} file is a standard object file. On @samp{a23}, the
library objects are just timestamps, because only static libraries are
supported.
1997-04-02 03:00:38 +08:00
1997-04-02 02:29:23 +08:00
On shared library systems, libtool automatically inserts the PIC
1997-04-02 03:00:38 +08:00
generation flags into the compilation command, so that the library
object and the standard object differ:
1997-04-02 02:29:23 +08:00
@example
burger$ @kbd{libtool gcc -g -O -c foo.c}
1997-04-02 03:00:38 +08:00
gcc -g -O -c -fPIC -DPIC foo.c
mv -f foo.o foo.lo
1998-04-20 03:29:28 +08:00
gcc -g -O -c foo.c >/dev/null 2>&1
1997-04-02 02:29:23 +08:00
burger$ @kbd{libtool gcc -g -O -c hello.c}
1997-04-02 03:00:38 +08:00
gcc -g -O -c -fPIC -DPIC hello.c
mv -f hello.o hello.lo
1998-04-20 03:29:28 +08:00
gcc -g -O -c hello.c >/dev/null 2>&1
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
1998-04-20 03:29:28 +08:00
Notice that the second run of GCC has its output discarded. This is
done so that compiler warnings aren't annoyingly duplicated.
1997-05-25 06:50:52 +08:00
@node Linking libraries
@section Linking libraries
1997-04-02 02:29:23 +08:00
1997-04-02 03:02:08 +08:00
@pindex ar
1997-06-11 02:21:04 +08:00
Without libtool, the programmer would invoke the @code{ar} command to
1997-04-02 02:29:23 +08:00
create a static library:
@example
burger$ @kbd{ar cru libhello.a hello.o foo.o}
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
1997-04-02 03:02:08 +08:00
@pindex ranlib
1997-04-02 02:29:23 +08:00
But of course, that would be too simple, so many systems require that
1997-06-11 02:21:04 +08:00
you run the @code{ranlib} command on the resulting library (to give it
1997-04-02 02:29:23 +08:00
better karma, or something):
@example
burger$ @kbd{ranlib libhello.a}
burger$
@end example
It seems more natural to use the C compiler for this task, given
libtool's ``libraries are programs'' approach. So, on platforms without
shared libraries, libtool simply acts as a wrapper for the system
1997-06-11 02:21:04 +08:00
@code{ar} (and possibly @code{ranlib}) commands.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex libtool libraries
1997-06-11 02:21:04 +08:00
@cindex @samp{.la} files
1997-04-02 02:29:23 +08:00
Again, the libtool library name differs from the standard name (it has a
1997-06-11 02:21:04 +08:00
@samp{.la} suffix instead of a @samp{.a} suffix). The arguments to libtool are
1997-04-02 02:29:23 +08:00
the same ones you would use to produce an executable named
1998-01-26 03:35:11 +08:00
@file{libhello.la} with your compiler (@pxref{Link mode}):
1997-04-02 02:29:23 +08:00
@example
1998-04-20 03:29:28 +08:00
a23$ @kbd{libtool gcc -g -O -o libhello.la foo.o hello.o}
1997-04-02 03:00:38 +08:00
libtool: cannot build libtool library `libhello.la' from non-libtool \
objects
1998-04-20 03:29:28 +08:00
a23$
1997-04-02 02:29:23 +08:00
@end example
Aha! Libtool caught a common error@dots{} trying to build a library
1997-04-02 03:00:38 +08:00
from standard objects instead of library objects. This doesn't matter
for static libraries, but on shared library systems, it is of great
importance.
1997-04-02 02:29:23 +08:00
1998-04-20 03:29:28 +08:00
So, let's try again, this time with the library object files. Remember
also that we need to add @kbd{-lm} to the link command line because
1998-05-31 03:18:08 +08:00
@file{foo.c} uses the @code{cos} math library function (@pxref{Using
1998-07-01 16:12:49 +08:00
libtool}).
1997-04-02 02:29:23 +08:00
1998-07-01 16:12:49 +08:00
Another complication in building shared libraries is that we need to
specify the path to the directory in which they (eventually) will be
installed (in this case, @file{/usr/local/lib})@footnote{If you don't
specify an @code{rpath}, then libtool builds a libtool convenience
archive, not a shared library (@pxref{Static libraries}).}:
1997-04-02 02:29:23 +08:00
@example
1997-04-02 03:00:38 +08:00
a23$ @kbd{libtool gcc -g -O -o libhello.la foo.lo hello.lo \
1997-04-02 03:21:43 +08:00
-rpath /usr/local/lib -lm}
1997-09-15 21:34:20 +08:00
mkdir @value{objdir}
ar cru @value{objdir}/libhello.a foo.o hello.o
ranlib @value{objdir}/libhello.a
1997-04-02 02:29:23 +08:00
creating libhello.la
1997-04-02 03:04:40 +08:00
a23$
1997-04-02 02:29:23 +08:00
@end example
Now, let's try the same trick on the shared library platform:
@example
1997-04-02 03:00:38 +08:00
burger$ @kbd{libtool gcc -g -O -o libhello.la foo.lo hello.lo \
1997-04-02 03:21:43 +08:00
-rpath /usr/local/lib -lm}
1997-09-15 21:34:20 +08:00
mkdir @value{objdir}
ld -Bshareable -o @value{objdir}/libhello.so.0.0 foo.lo hello.lo -lm
ar cru @value{objdir}/libhello.a foo.o hello.o
ranlib @value{objdir}/libhello.a
1997-04-02 02:29:23 +08:00
creating libhello.la
burger$
@end example
Now that's significantly cooler@dots{} libtool just ran an obscure
1997-06-11 02:21:04 +08:00
@code{ld} command to create a shared library, as well as the static
1997-04-02 02:29:23 +08:00
library.
1998-05-18 19:03:32 +08:00
@cindex @file{@value{objdir}} subdirectory
1997-09-15 21:34:20 +08:00
Note how libtool creates extra files in the @file{@value{objdir}}
subdirectory, rather than the current directory. This feature is to
make it easier to clean up the build directory, and to help ensure that
other programs fail horribly if you accidentally forget to use libtool
when you should.
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
@node Linking executables
@section Linking executables
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex linking against installed libraries
1997-04-02 02:29:23 +08:00
If you choose at this point to @dfn{install} the library (put it in a
permanent location) before linking executables against it, then you
1997-04-02 03:02:08 +08:00
don't need to use libtool to do the linking. Simply use the appropriate
@samp{-L} and @samp{-l} flags to specify the library's location.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex buggy system linkers
1997-04-02 02:29:23 +08:00
Some system linkers insist on encoding the full directory name of each
shared library in the resulting executable. Libtool has to work around
this misfeature by special magic to ensure that only permanent directory
names are put into installed executables.
1998-05-18 19:03:32 +08:00
@cindex security problems with buggy linkers
@cindex bugs, subtle ones caused by buggy linkers
1997-04-02 02:29:23 +08:00
The importance of this bug must not be overlooked: it won't cause
programs to crash in obvious ways. It creates a security hole,
and possibly even worse, if you are modifying the library source code
after you have installed the package, you will change the behaviour of
the installed programs!
So, if you want to link programs against the library before you install
it, you must use libtool to do the linking.
1998-05-18 19:03:32 +08:00
@cindex linking against uninstalled libraries
1997-04-02 02:29:23 +08:00
Here's the old way of linking against an uninstalled library:
@example
1997-04-02 03:21:43 +08:00
burger$ @kbd{gcc -g -O -o hell.old main.o libhello.a -lm}
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
1997-04-02 03:00:38 +08:00
Libtool's way is almost the same@footnote{However, you should never use
@samp{-L} or @samp{-l} flags to link against an uninstalled libtool
1997-06-11 02:21:04 +08:00
library. Just specify the relative path to the @samp{.la} file, such as
1998-01-26 03:35:11 +08:00
@file{../intl/libintl.la}. This is a design decision to eliminate any
ambiguity when linking against uninstalled shared libraries.}
(@pxref{Link mode}):
1997-04-02 02:29:23 +08:00
@example
1997-04-02 03:21:43 +08:00
a23$ @kbd{libtool gcc -g -O -o hell main.o libhello.la -lm}
1997-09-15 21:34:20 +08:00
gcc -g -O -o hell main.o ./@value{objdir}/libhello.a -lm
1997-04-02 03:04:40 +08:00
a23$
1997-04-02 02:29:23 +08:00
@end example
That looks too simple to be true. All libtool did was transform
1997-09-15 21:34:20 +08:00
@file{libhello.la} to @file{./@value{objdir}/libhello.a}, but remember
that @samp{a23} has no shared libraries.
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
On @samp{burger} the situation is different:
1997-04-02 02:29:23 +08:00
@example
1997-04-02 03:21:43 +08:00
burger$ @kbd{libtool gcc -g -O -o hell main.o libhello.la -lm}
1997-09-15 21:34:20 +08:00
gcc -g -O -o @value{objdir}/hell main.o -L./@value{objdir} -R/usr/local/lib -lhello -lm
1997-04-02 02:29:23 +08:00
creating hell
burger$
@end example
@cindex linking with installed libtool libraries
Now assume @file{libhello.la} had already been installed, and you want
to link a new program with it. You could figure out where it lives by
yourself, then run:
@example
burger$ @kbd{gcc -g -O -o test test.o -L/usr/local/lib -lhello}
@end example
However, unless @file{/usr/local/lib} is in the standard library search
path, you won't be able to run @code{test}. However, if you use libtool
to link the already-installed libtool library, it will do The Right
Thing (TM) for you:
@example
burger$ @kbd{libtool gcc -g -O -o test test.o /usr/local/lib/libhello.la}
gcc -g -O -o @value{objdir}/test test.o -Wl,--rpath -Wl,/usr/local/lib /usr/local/lib/libhello.la -lm
creating test
burger$
@end example
Note that libtool added the necessary run-time path flag, as well as
@samp{-lm}, the library libhello.la depended upon. Nice, huh?
Since libtool created a wrapper script, you should use libtool to
install it and debug it too. However, since the program does not depend
on any uninstalled libtool library, it is probably usable even without
the wrapper script. Libtool could probably be made smarter to avoid the
creation of the wrapper script in this case, but this is left as an
exercise for the reader.
1998-05-18 19:03:32 +08:00
@cindex wrapper scripts for programs
@cindex program wrapper scripts
1997-06-11 02:21:04 +08:00
Notice that the executable, @code{hell}, was actually created in the
1997-09-15 21:34:20 +08:00
@file{@value{objdir}} subdirectory. Then, a wrapper script was created
in the current directory.
1997-04-02 02:29:23 +08:00
On NetBSD 1.2, libtool encodes the installation directory of
1998-04-15 00:29:20 +08:00
@file{libhello}, by using the @samp{-R/usr/local/lib} compiler flag.
Then, the wrapper script guarantees that the executable finds the
correct shared library (the one in @file{./@value{objdir}}) until it is
properly installed.
1997-04-02 02:29:23 +08:00
Let's compare the two different programs:
@example
burger$ @kbd{time ./hell.old}
Welcome to GNU Hell!
** This is not GNU Hello. There is no built-in mail reader. **
0.21 real 0.02 user 0.08 sys
burger$ @kbd{time ./hell}
Welcome to GNU Hell!
** This is not GNU Hello. There is no built-in mail reader. **
0.63 real 0.09 user 0.59 sys
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
The wrapper script takes significantly longer to execute, but at least
the results are correct, even though the shared library hasn't been
installed yet.
So, what about all the space savings that shared libraries are supposed
to yield?
@example
burger$ @kbd{ls -l hell.old libhello.a}
-rwxr-xr-x 1 gord gord 15481 Nov 14 12:11 hell.old
-rw-r--r-- 1 gord gord 4274 Nov 13 18:02 libhello.a
1997-09-15 21:34:20 +08:00
burger$ @kbd{ls -l @value{objdir}/hell @value{objdir}/libhello.*}
-rwxr-xr-x 1 gord gord 11647 Nov 14 12:10 @value{objdir}/hell
-rw-r--r-- 1 gord gord 4274 Nov 13 18:44 @value{objdir}/libhello.a
-rwxr-xr-x 1 gord gord 12205 Nov 13 18:44 @value{objdir}/libhello.so.0.0
1997-04-02 03:04:40 +08:00
burger$
1997-04-02 02:29:23 +08:00
@end example
Well, that sucks. Maybe I should just scrap this project and take up
basket weaving.
Actually, it just proves an important point: shared libraries incur
overhead because of their (relative) complexity. In this situation, the
price of being dynamic is eight kilobytes, and the payoff is about four
kilobytes. So, having a shared @file{libhello} won't be an advantage
until we link it against at least a few more programs.
1998-01-26 03:35:11 +08:00
@node Debugging executables
@section Debugging executables
If @file{hell} was a complicated program, you would certainly want to
test and debug it before installing it on your system. In the above
1998-04-20 03:29:28 +08:00
section, you saw how the libtool wrapper script makes it possible to run
the program directly, but unfortunately, this mechanism interferes with
the debugger:
1998-01-26 03:35:11 +08:00
@example
burger$ @kbd{gdb hell}
GDB is free software and you are welcome to distribute copies of it
under certain conditions; type "show copying" to see the conditions.
1998-04-20 03:29:28 +08:00
There is no warranty for GDB; type "show warranty" for details.
GDB 4.16 (i386-unknown-netbsd), (C) 1996 Free Software Foundation, Inc.
1998-01-26 03:35:11 +08:00
"hell": not in executable format: File format not recognized
(gdb) @kbd{quit}
burger$
@end example
1998-04-15 00:29:20 +08:00
Sad. It doesn't work because GDB doesn't know where the executable
lives. So, let's try again, by invoking GDB directly on the executable:
1998-01-26 03:35:11 +08:00
@example
burger$ @kbd{gdb @value{objdir}/hell}
trick:/home/src/libtool/demo$ gdb .libs/hell
GDB is free software and you are welcome to distribute copies of it
under certain conditions; type "show copying" to see the conditions.
1998-04-20 03:29:28 +08:00
There is no warranty for GDB; type "show warranty" for details.
GDB 4.16 (i386-unknown-netbsd), (C) 1996 Free Software Foundation, Inc.
1998-01-26 03:35:11 +08:00
(gdb) @kbd{break main}
Breakpoint 1 at 0x8048547: file main.c, line 29.
(gdb) @kbd{run}
Starting program: /home/src/libtool/demo/.libs/hell
/home/src/libtool/demo/.libs/hell: can't load library 'libhello.so.2'
Program exited with code 020.
(gdb) @kbd{quit}
burger$
@end example
Argh. Now GDB complains because it cannot find the shared library that
@file{hell} is linked against. So, we must use libtool in order to
properly set the library path and run the debugger. Fortunately, we can
forget all about the @file{@value{objdir}} directory, and just run it on
the executable wrapper (@pxref{Execute mode}):
@example
burger$ @kbd{libtool gdb hell}
GDB is free software and you are welcome to distribute copies of it
under certain conditions; type "show copying" to see the conditions.
1998-04-20 03:29:28 +08:00
There is no warranty for GDB; type "show warranty" for details.
GDB 4.16 (i386-unknown-netbsd), (C) 1996 Free Software Foundation, Inc.
1998-01-26 03:35:11 +08:00
(gdb) @kbd{break main}
Breakpoint 1 at 0x8048547: file main.c, line 29.
(gdb) @kbd{run}
Starting program: /home/src/libtool/demo/.libs/hell
Breakpoint 1, main (argc=1, argv=0xbffffc40) at main.c:29
29 printf ("Welcome to GNU Hell!\n");
(gdb) @kbd{quit}
The program is running. Quit anyway (and kill it)? (y or n) @kbd{y}
burger$
@end example
1997-05-25 06:50:52 +08:00
@node Installing libraries
@section Installing libraries
1997-04-02 02:29:23 +08:00
1997-04-02 03:02:08 +08:00
@pindex strip
1997-04-02 02:29:23 +08:00
Installing libraries on a non-libtool system is quite
straightforward@dots{} just copy them into place:@footnote{Don't
accidentally strip the libraries, though, or they will be unusable.}
1997-04-02 03:02:08 +08:00
@pindex su
1997-04-02 02:29:23 +08:00
@example
burger$ @kbd{su}
1997-06-11 02:21:04 +08:00
Password: @kbd{********}
1997-04-02 02:29:23 +08:00
burger# @kbd{cp libhello.a /usr/local/lib/libhello.a}
burger#
@end example
1997-06-11 02:21:04 +08:00
Oops, don't forget the @code{ranlib} command:
1997-04-02 02:29:23 +08:00
@example
burger# @kbd{ranlib /usr/local/lib/libhello.a}
burger#
@end example
1997-04-02 03:02:08 +08:00
@pindex install
1997-04-02 02:29:23 +08:00
Libtool installation is quite simple, as well. Just use the
1998-01-26 03:35:11 +08:00
@code{install} or @code{cp} command that you normally would
(@pxref{Install mode}):
1997-04-02 02:29:23 +08:00
@example
a23# @kbd{libtool cp libhello.la /usr/local/lib/libhello.la}
1997-04-02 03:00:38 +08:00
cp libhello.la /usr/local/lib/libhello.la
1997-09-15 21:34:20 +08:00
cp @value{objdir}/libhello.a /usr/local/lib/libhello.a
1997-04-02 03:00:38 +08:00
ranlib /usr/local/lib/libhello.a
1997-04-02 03:04:40 +08:00
a23#
1997-04-02 02:29:23 +08:00
@end example
1998-04-20 03:29:28 +08:00
Note that the libtool library @file{libhello.la} is also installed, to
help libtool with uninstallation (@pxref{Uninstall mode}) and linking
(@pxref{Linking executables}) and to help programs with dlopening
(@pxref{Dlopened modules}).
1997-04-02 02:29:23 +08:00
Here is the shared library example:
@example
1997-04-02 03:00:38 +08:00
burger# @kbd{libtool install -c libhello.la /usr/local/lib/libhello.la}
1997-09-15 21:34:20 +08:00
install -c @value{objdir}/libhello.so.0.0 /usr/local/lib/libhello.so.0.0
1997-04-02 02:29:23 +08:00
install -c libhello.la /usr/local/lib/libhello.la
1997-09-15 21:34:20 +08:00
install -c @value{objdir}/libhello.a /usr/local/lib/libhello.a
1997-04-02 02:29:23 +08:00
ranlib /usr/local/lib/libhello.a
burger#
@end example
1998-05-18 19:03:32 +08:00
@cindex stripping libraries
@cindex libraries, stripping
1997-06-11 02:21:04 +08:00
It is safe to specify the @samp{-s} (strip symbols) flag if you use a
BSD-compatible install program when installing libraries.
1997-04-02 02:29:23 +08:00
Libtool will either ignore the @samp{-s} flag, or will run a program
that will strip only debugging and compiler symbols from the library.
Once the libraries have been put in place, there may be some additional
configuration that you need to do before using them. First, you must
make sure that where the library is installed actually agrees with the
@samp{-rpath} flag you used to build it.
1998-05-18 19:03:32 +08:00
@cindex postinstallation
@cindex installation, finishing
@cindex libraries, finishing installation
1997-04-02 02:29:23 +08:00
Then, running @samp{libtool -n --finish @var{libdir}} can give you
1998-01-26 03:35:11 +08:00
further hints on what to do (@pxref{Finish mode}):
1997-04-02 02:29:23 +08:00
@example
burger# @kbd{libtool -n --finish /usr/local/lib}
1998-04-20 03:29:28 +08:00
PATH="$PATH:/sbin" ldconfig -m /usr/local/lib
1998-05-18 19:03:32 +08:00
-----------------------------------------------------------------
1998-04-20 03:29:28 +08:00
Libraries have been installed in:
/usr/local/lib
To link against installed libraries in a given directory, LIBDIR,
you must use the `-LLIBDIR' flag during linking.
You will also need to do one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-RLIBDIR' linker flag
See any operating system documentation about shared libraries for
1998-05-31 03:18:08 +08:00
more information, such as the ld and ld.so manual pages.
1998-05-18 19:03:32 +08:00
-----------------------------------------------------------------
1997-04-02 03:04:40 +08:00
burger#
1997-04-02 02:29:23 +08:00
@end example
After you have completed these steps, you can go on to begin using the
installed libraries. You may also install any executables that depend
on libraries you created.
1997-05-25 06:50:52 +08:00
@node Installing executables
@section Installing executables
1997-04-02 02:29:23 +08:00
If you used libtool to link any executables against uninstalled libtool
1997-05-25 06:50:52 +08:00
libraries (@pxref{Linking executables}), you need to use libtool to
1997-04-02 02:29:23 +08:00
install the executables after the libraries have been installed
1997-05-25 06:50:52 +08:00
(@pxref{Installing libraries}).
1997-04-02 02:29:23 +08:00
So, for our Ultrix example, we would run:
@example
a23# libtool install -c hell /usr/local/bin/hell
install -c hell /usr/local/bin/hell
a23#
@end example
On shared library systems, libtool just ignores the wrapper script and
installs the correct binary:
@example
burger# libtool install -c hell /usr/local/bin/hell
1997-09-15 21:34:20 +08:00
install -c @value{objdir}/hell /usr/local/bin/hell
1997-04-02 03:04:40 +08:00
burger#
1997-04-02 02:29:23 +08:00
@end example
1997-05-25 06:50:52 +08:00
@node Static libraries
@section Linking static libraries
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex static linking
@cindex convenience libraries
1997-06-11 02:21:04 +08:00
Why return to @code{ar} and @code{ranlib} silliness when you've had a
1997-06-12 01:13:23 +08:00
taste of libtool? Well, sometimes it is desirable to create a static
archive that can never be shared. The most frequent case is when you
have a ``convenience library'' that is a collection of related object
files without a really nice interface.
1997-04-02 02:29:23 +08:00
1998-07-01 16:12:49 +08:00
If you create a libtool library (@samp{.la} file) without using the
@samp{-rpath} flag, then a libtool convenience library is generated.
You can use these libraries just as if they were libtool object files:
you can even use them to build other libtool libraries.
1997-04-02 02:29:23 +08:00
1998-07-01 16:12:49 +08:00
If you just want a static convenience library, then you should just
ignore libtool entirely, and use the old @code{ar} and @code{ranlib}
commands.
If you want to install a convenience library (but you probably don't),
then you may use libtool:
1997-04-02 02:29:23 +08:00
@example
1997-04-02 03:02:08 +08:00
burger$ @kbd{libtool ./install-sh -c libhello.a /local/lib/libhello.a}
./install-sh -c libhello.a /local/lib/libhello.a
ranlib /local/lib/libhello.a
1997-04-02 02:29:23 +08:00
burger$
@end example
1997-06-12 01:13:23 +08:00
Using libtool for static library installation protects your library from
being accidentally stripped (if the installer used the @samp{-s} flag),
as well as automatically running the correct @code{ranlib} command.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex standalone binaries
1997-04-02 02:29:23 +08:00
Another common situation where static linking is desirable is in
creating a standalone binary. Use libtool to do the linking and add the
1997-09-06 05:59:39 +08:00
@samp{-all-static} flag.
1997-04-02 02:29:23 +08:00
1997-04-02 03:21:43 +08:00
@node Invoking libtool
1997-06-11 02:21:04 +08:00
@chapter Invoking @code{libtool}
1997-06-06 05:43:58 +08:00
@pindex libtool
@cindex libtool command options
1998-05-18 19:03:32 +08:00
@cindex options, libtool command
@cindex command options, libtool
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
The @code{libtool} program has the following synopsis:
1997-04-02 02:29:23 +08:00
@example
1998-04-20 03:29:28 +08:00
libtool [@var{option}]@dots{} [@var{mode-arg}]@dots{}
1997-04-02 02:29:23 +08:00
@end example
@noindent
and accepts the following options:
@table @samp
1998-04-20 03:29:28 +08:00
@item --config
Display libtool configuration variables and exit.
1998-04-15 00:29:20 +08:00
@item --debug
Dump a trace of shell script execution to standard output. This
1998-05-31 03:18:08 +08:00
produces a lot of output, so you may wish to pipe it to @code{less} (or
@code{more}) or redirect to a file.
1998-04-15 00:29:20 +08:00
1997-04-02 02:29:23 +08:00
@item -n
@itemx --dry-run
Don't create, modify, or delete any files, just show what commands would
be executed by libtool.
1997-04-25 01:51:39 +08:00
@item --features
1998-04-20 03:29:28 +08:00
Display basic configuration options. This provides a way for packages
to determine whether shared or static libraries will be built.
1997-04-25 01:51:39 +08:00
1997-04-02 02:29:23 +08:00
@item --finish
Same as @samp{--mode=finish}.
@item --help
Display a help message and exit. If @samp{--mode=@var{mode}} is
1997-06-11 02:21:04 +08:00
specified, then detailed help for @var{mode} is
1997-04-02 02:29:23 +08:00
displayed.
@item --mode=@var{mode}
1997-06-11 02:21:04 +08:00
Use @var{mode} as the operation mode. By default, the operation mode is
1998-07-01 16:12:49 +08:00
inferred from the @var{mode-args}.
1997-04-02 02:29:23 +08:00
If @var{mode} is specified, it must be one of the following:
@table @samp
@item compile
Compile a source file into a libtool object.
1998-01-26 03:35:11 +08:00
@item execute
Automatically set the library path so that another program can use
uninstalled libtool-generated programs or libraries.
1997-06-11 02:21:04 +08:00
1997-04-02 02:29:23 +08:00
@item finish
Complete the installation of libtool libraries on the system.
@item install
Install libraries or executables.
@item link
Create a library or an executable.
@item uninstall
Delete libraries or executables.
@end table
@item --version
Print libtool version information and exit.
@end table
1998-07-01 16:12:49 +08:00
The @var{mode-args} are a variable number of arguments, depending on the
selected operation mode. In general, each @var{mode-arg} is interpreted
by programs libtool invokes, rather than libtool itself.
1997-04-02 02:29:23 +08:00
@menu
1997-05-25 06:50:52 +08:00
* Compile mode:: Creating library object files.
* Link mode:: Generating executables and libraries.
1998-01-26 03:35:11 +08:00
* Execute mode:: Debugging libtool-generated programs.
1997-05-25 06:50:52 +08:00
* Install mode:: Making libraries and executables public.
* Finish mode:: Completing a library installation.
* Uninstall mode:: Removing executables and libraries.
1997-04-02 02:29:23 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node Compile mode
@section Compile mode
1998-05-18 19:03:32 +08:00
@cindex mode, compile
@cindex compile mode
1997-04-02 02:29:23 +08:00
1998-05-31 03:18:08 +08:00
For @dfn{compile} mode, @var{mode-args} is a compiler command to be used
in creating a `standard' object file. These arguments should begin with
the name of the C compiler, and contain the @samp{-c} compiler flag so
that only an object file is created.
1997-04-02 02:29:23 +08:00
Libtool determines the name of the output file by removing the directory
component from the source file name, then substituting the C source code
1997-06-11 02:21:04 +08:00
suffix @samp{.c} with the library object suffix, @samp{.lo}.
1997-04-02 02:29:23 +08:00
If shared libraries are being built, any necessary PIC generation flags
are substituted into the compilation command.
1998-05-31 03:18:08 +08:00
If the @samp{-static} option is given, then a @samp{.o} file is built,
even if libtool was configured with @samp{--disable-static}.
Note that the @samp{-o} option is now fully supported. It is emulated
for the platforms that don't support it (by locking and moving the
objects), so it is really easy to use libtool, just with minor
modifications to your Makefiles. Typing for example
@example
libtool gcc -c foo/x.c -o foo/x.lo
@end example
will do what you expect.
1998-02-06 15:36:38 +08:00
1997-05-25 06:50:52 +08:00
@node Link mode
@section Link mode
1998-05-18 19:03:32 +08:00
@cindex link mode
@cindex mode, link
1997-04-02 02:29:23 +08:00
1998-05-31 03:18:08 +08:00
@dfn{Link} mode links together object files (including library
1997-04-02 02:29:23 +08:00
objects) to form another library or to create an executable program.
@var{mode-args} consist of a command using the C compiler to create an
output file (with the @samp{-o} flag) from several object files.
The following components of @var{mode-args} are treated specially:
@table @samp
1998-05-18 19:03:32 +08:00
@cindex undefined symbols, allowing
@cindex unresolved symbols, allowing
1997-09-06 05:59:39 +08:00
@item -all-static
If @var{output-file} is a program, then do not link it against any
shared libraries at all. If @var{output-file} is a library, then only
create a static library.
1998-12-19 06:23:51 +08:00
@item -avoid-versioning
Tries to avoid versioning (@pxref{Versioning}) for libraries and modules,
i.e. no version information is stored and no symbolic links are created.
If the platform requires versioning, this option has no effect.
1998-01-26 03:35:11 +08:00
@item -dlopen @var{file}
Same as @samp{-dlpreopen @var{file}}, if native dlopening is not
supported on the host platform (@pxref{Dlopened modules}). Otherwise,
no effect.
@item -dlpreopen @var{file}
Link @var{file} into the output program, and add its symbols to
1999-01-14 05:39:14 +08:00
@var{lt_preloaded_symbols} (@pxref{Dlpreopening}).
1997-06-06 02:00:56 +08:00
1997-05-25 06:50:52 +08:00
@item -export-dynamic
1998-05-31 03:18:08 +08:00
Allow symbols from @var{output-file} to be resolved with @code{dlsym}
1997-06-06 02:00:56 +08:00
(@pxref{Dlopened modules}).
1997-05-25 06:50:52 +08:00
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br> * ltconfig.in, ltmain.in: updated and fixed the patches below 1998-11-04 Thomas Tanner <tanner@gmx.de> * mdemo/*: added new demo to demonstrate building of dlopenend modules * tests/Makefile.am, tests/mdemo*: added some tests for mdemo 1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk> * demo/configure.in: added AC_EXEEXT macro so that the tests can work on cywin32/mingw32 hosts. This requires the current CVS autoconf 1998-11-04 Thomas Tanner <tanner@gmx.de> * ltmain.in: New flag -export-symbols; new dlpreopen system * demo/dlmain.c: removed dld_preloaded_symbol_count 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltmain.in: On installation, don't get confused if the same name appears more than once in the list of library names. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add objext and libext variables. Check for object suffix. Check for mingw32* as well as cygwin32*. Use objext when testing compiler. Add support for Visual C++ on cygwin32 when not using gcc. Add objext, libext, and fix_srcfile_path to generated libtool script. * ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path if it is set. Check for .obj as well as for .o, and for .lib as well as for .a. Use .${libext} rather than .a when creating old libraries. * libtoolize.in: Change initial /bin/sh to @SHELL@. * libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the AC_REQUIRE in AC_CHECK_TOOL. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Look in the right directory for libtool.c in archive_cmds for cygwin32. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Fix cygwin32 support to avoid using a double extension, to delete the def file, to set version_type to windows, and to include versuffix in the DLL name. * ltmain.in: Add support for a version_type of windows. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add cygwin32 support. * libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a cygwin32 host. Pass DLLTOOL and AS to ltconfig. (AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
@item -export-symbols @var{symfile}
1998-12-02 06:35:00 +08:00
Tells the linker to export only the symbols listed in @var{symfile}.
The symbol file should end in @samp{.sym} and must contain the name of one
1998-12-31 19:25:57 +08:00
symbol per line. This option does not work for modules and is not
supported on all platforms.
1998-12-02 06:35:00 +08:00
By default all symbols are exported.
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br> * ltconfig.in, ltmain.in: updated and fixed the patches below 1998-11-04 Thomas Tanner <tanner@gmx.de> * mdemo/*: added new demo to demonstrate building of dlopenend modules * tests/Makefile.am, tests/mdemo*: added some tests for mdemo 1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk> * demo/configure.in: added AC_EXEEXT macro so that the tests can work on cywin32/mingw32 hosts. This requires the current CVS autoconf 1998-11-04 Thomas Tanner <tanner@gmx.de> * ltmain.in: New flag -export-symbols; new dlpreopen system * demo/dlmain.c: removed dld_preloaded_symbol_count 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltmain.in: On installation, don't get confused if the same name appears more than once in the list of library names. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add objext and libext variables. Check for object suffix. Check for mingw32* as well as cygwin32*. Use objext when testing compiler. Add support for Visual C++ on cygwin32 when not using gcc. Add objext, libext, and fix_srcfile_path to generated libtool script. * ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path if it is set. Check for .obj as well as for .o, and for .lib as well as for .a. Use .${libext} rather than .a when creating old libraries. * libtoolize.in: Change initial /bin/sh to @SHELL@. * libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the AC_REQUIRE in AC_CHECK_TOOL. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Look in the right directory for libtool.c in archive_cmds for cygwin32. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Fix cygwin32 support to avoid using a double extension, to delete the def file, to set version_type to windows, and to include versuffix in the DLL name. * ltmain.in: Add support for a version_type of windows. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add cygwin32 support. * libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a cygwin32 host. Pass DLLTOOL and AS to ltconfig. (AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
1997-04-02 02:29:23 +08:00
@item -L@var{libdir}
Search @var{libdir} for required libraries that have already been
installed.
@item -l@var{name}
@var{output-file} requires the installed library @file{lib@var{name}}.
1997-04-02 03:21:43 +08:00
This option is required even when @var{output-file} is not an
executable.
1997-04-02 02:29:23 +08:00
1998-12-12 07:21:03 +08:00
@item -module
Creates a library that can be dlopenend (@pxref{Dlopened modules}).
This option doesn't work for programs and must not be used
together with @samp{-export-symbols}.
It implies the option @samp{-export-dynamic}.
1998-12-19 06:23:51 +08:00
Module names don't need to be prefixed with 'lib'.
In order to prevent name clashes, however, 'libname' and 'name'
must not be used at the same time.
1998-12-12 07:21:03 +08:00
1998-01-26 03:35:11 +08:00
@item -no-undefined
Declare that @var{output-file} does not depend on any other libraries.
Some platforms cannot create shared libraries that depend on other
libraries (@pxref{Inter-library dependencies}).
1997-04-02 02:29:23 +08:00
@item -o @var{output-file}
Create @var{output-file} from the specified objects and libraries.
1998-02-06 15:36:38 +08:00
@item -release @var{release}
Specify that the library was generated by release @var{release} of your
package, so that users can easily tell which versions are newer than
others. Be warned that no two releases of your package will be binary
compatible if you use this flag. If you want binary compatibility, use
1998-05-18 19:03:32 +08:00
the @samp{-version-info} flag instead (@pxref{Versioning}).
1998-02-06 15:36:38 +08:00
1997-04-02 02:29:23 +08:00
@item -rpath @var{libdir}
If @var{output-file} is a library, it will eventually be installed in
@var{libdir}. If @var{output-file} is a program, add @var{libdir} to
the run-time path of the program.
@item -R @var{libdir}
If @var{output-file} is a program, add @var{libdir} to its run-time
path. If @var{output-file} is a library, add -R@var{libdir} to its
@var{dependency_libs}, so that, whenever the library is linked into a
program, @var{libdir} will be added to its run-time path.
1997-04-02 02:29:23 +08:00
@item -static
If @var{output-file} is a program, then do not link it against any
1997-09-06 05:59:39 +08:00
uninstalled shared libtool libraries. If @var{output-file} is a
library, then only create a static library.
1997-04-02 02:29:23 +08:00
1997-04-02 02:57:49 +08:00
@item -version-info @var{current}[:@var{revision}[:@var{age}]]
1998-02-06 15:36:38 +08:00
If @var{output-file} is a libtool library, use interface version
information @var{current}, @var{revision}, and @var{age} to build it
(@pxref{Versioning}). Do @strong{not} use this flag to specify package
release information, rather see the @samp{-release} flag.
1997-04-02 02:29:23 +08:00
@end table
1997-06-11 02:21:04 +08:00
If the @var{output-file} ends in @samp{.la}, then a libtool library is
created, which must be built only from library objects (@samp{.lo} files).
1997-04-02 03:04:40 +08:00
The @samp{-rpath} option is required. In the current implementation,
1997-06-06 02:00:56 +08:00
libtool libraries may not depend on other uninstalled libtool libraries
(@pxref{Inter-library dependencies}).
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
If the @var{output-file} ends in @samp{.a}, then a standard library is
created using @code{ar} and possibly @code{ranlib}.
1997-04-02 02:29:23 +08:00
1998-05-18 19:03:32 +08:00
@cindex partial linking
@cindex linking, partial
1997-06-11 02:21:04 +08:00
If @var{output-file} ends in @samp{.o} or @samp{.lo}, then a reloadable object
1997-04-02 03:00:38 +08:00
file is created from the input files (generally using @samp{ld -r}).
1997-06-14 04:05:46 +08:00
This method is often called @dfn{partial linking}.
1997-04-02 03:00:38 +08:00
1997-04-02 02:29:23 +08:00
Otherwise, an executable program is created.
1998-01-26 03:35:11 +08:00
@node Execute mode
@section Execute mode
1998-05-18 19:03:32 +08:00
@cindex execute mode
@cindex mode, execute
1998-01-26 03:35:11 +08:00
1998-05-31 03:18:08 +08:00
For @dfn{execute} mode, the library path is automatically set, then a
1998-01-26 03:35:11 +08:00
program is executed.
The first of the @var{mode-args} is treated as a program name, with the
rest as arguments to that program.
The following components of @var{mode-args} are treated specially:
@table @samp
@item -dlopen @var{file}
Add the directory containing @var{file} to the library path.
@end table
This mode sets the library path environment variable according to any
@samp{-dlopen} flags.
If any of the @var{args} are libtool executable wrappers, then they are
translated into the name of their corresponding uninstalled binary, and
any of their required library directories are added to the library path.
1997-05-25 06:50:52 +08:00
@node Install mode
@section Install mode
1998-05-18 19:03:32 +08:00
@cindex install mode
@cindex mode, install
1997-04-02 02:29:23 +08:00
1998-05-31 03:18:08 +08:00
In @dfn{install} mode, libtool interprets @var{mode-args} as an
1997-06-11 02:21:04 +08:00
installation command beginning with @code{cp}, or a BSD-compatible
@code{install} program.
1997-04-02 02:29:23 +08:00
The rest of the @var{mode-args} are interpreted as arguments to that
command.
The command is run, and any necessary unprivileged post-installation
commands are also completed.
1997-05-25 06:50:52 +08:00
@node Finish mode
@section Finish mode
1998-05-18 19:03:32 +08:00
@cindex finish mode
@cindex mode, finish
1997-04-02 02:29:23 +08:00
1998-05-31 03:18:08 +08:00
@dfn{Finish} mode helps system administrators install libtool libraries
so that they can be located and linked into user programs.
1997-04-02 02:29:23 +08:00
Each @var{mode-arg} is interpreted as the name of a library directory.
Running this command may require superuser privileges, so the
@samp{--dry-run} option may be useful.
1997-05-25 06:50:52 +08:00
@node Uninstall mode
@section Uninstall mode
1998-05-18 19:03:32 +08:00
@cindex uninstall mode
@cindex mode, uninstall
1997-04-02 02:29:23 +08:00
1998-05-31 03:18:08 +08:00
@dfn{Uninstall} mode deletes installed libraries (and other files).
1997-04-02 02:29:23 +08:00
The first @var{mode-arg} is the name of the program to use to delete
files (typically @file{/bin/rm}).
1997-06-12 01:13:23 +08:00
The remaining @var{mode-args} are either flags for the deletion program
1997-04-02 02:29:23 +08:00
(beginning with a `-'), or the names of files to delete.
1997-05-25 06:50:52 +08:00
@node Integrating libtool
1998-05-18 19:03:32 +08:00
@chapter Integrating libtool with your package
1997-04-02 02:29:23 +08:00
This chapter describes how to integrate libtool with your packages so
that your users can install hassle-free shared libraries.
@menu
1997-06-11 02:21:04 +08:00
* Makefile rules:: Writing @file{Makefile} rules for libtool.
1997-04-02 02:29:23 +08:00
* Using Automake:: Automatically supporting libtool.
* Configuring:: Configuring libtool for a host system.
* Distributing:: What files to distribute with your package.
1998-02-06 15:36:38 +08:00
* Static-only libraries:: Sometimes shared libraries are just a pain.
1997-04-02 02:29:23 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node Makefile rules
1997-06-11 02:21:04 +08:00
@section Writing @file{Makefile} rules for libtool
1997-06-06 05:43:58 +08:00
@cindex Makefile
@cindex Makefile.am
@cindex Makefile.in
1997-04-02 02:29:23 +08:00
1997-06-12 01:13:23 +08:00
Libtool is fully integrated with Automake (@pxref{Top,, Introduction,
automake, The Automake Manual}), starting with Automake version 1.2.
1997-04-02 02:29:23 +08:00
If you want to use libtool in a regular @file{Makefile} (or
@file{Makefile.in}), you are on your own. If you're not using Automake
1.2, and you don't know how to incorporate libtool into your package you
need to do one of the following:
@enumerate 1
@item
Download Automake (version 1.2 or later) from your nearest GNU mirror,
install it, and start using it.
@item
1997-06-11 02:21:04 +08:00
Learn how to write @file{Makefile} rules by hand. They're sometimes complex,
1997-04-02 02:29:23 +08:00
but if you're clever enough to write rules for compiling your old
1997-04-02 03:04:40 +08:00
libraries, then you should be able to figure out new rules for libtool
libraries (hint: examine the @file{Makefile.in} in the @file{demo}
subdirectory of the libtool distribution@dots{} note especially that it
1997-06-11 02:21:04 +08:00
was automatically generated from the @file{Makefile.am} by Automake).
1997-04-02 02:29:23 +08:00
@end enumerate
1997-04-02 03:21:43 +08:00
@node Using Automake
1997-05-25 06:50:52 +08:00
@section Using Automake with libtool
1997-04-02 02:29:23 +08:00
1997-06-06 05:43:58 +08:00
@vindex LTLIBRARIES
1997-04-02 03:53:01 +08:00
Libtool library support is implemented under the @samp{LTLIBRARIES}
primary.
1997-04-02 02:29:23 +08:00
Here are some samples from the Automake @file{Makefile.am} in the
libtool distribution's @file{demo} subdirectory.
First, to link a program against a libtool library, just use the
@samp{program_LDADD} variable:
@example
1997-09-06 05:59:39 +08:00
bin_PROGRAMS = hell hell.debug
1997-04-02 02:59:30 +08:00
1997-04-02 03:02:08 +08:00
# Build hell from main.c and libhello.la
1997-04-02 02:29:23 +08:00
hell_SOURCES = main.c
1997-04-02 03:02:08 +08:00
hell_LDADD = libhello.la
1997-04-02 02:59:30 +08:00
1997-09-06 05:59:39 +08:00
# Create an easier-to-debug version of hell.
hell_debug_SOURCES = main.c
hell_debug_LDADD = libhello.la
hell_debug_LDFLAGS = -static
1997-04-02 02:29:23 +08:00
@end example
You may use the @samp{program_LDFLAGS} variable to stuff in any flags
1997-04-02 02:59:30 +08:00
you want to pass to libtool while linking @samp{program} (such as
1997-09-06 05:59:39 +08:00
@samp{-static} to avoid linking uninstalled shared libtool libraries).
1997-04-02 02:29:23 +08:00
Building a libtool library is almost as trivial@dots{} note the use of
1997-04-02 03:02:08 +08:00
@samp{libhello_la_LDFLAGS} to pass the @samp{-version-info}
1997-04-02 03:53:01 +08:00
(@pxref{Versioning}) option to libtool:
1997-04-02 02:29:23 +08:00
@example
1997-04-02 03:02:08 +08:00
# Build a libtool library, libhello.la for installation in libdir.
1997-04-02 03:53:01 +08:00
lib_LTLIBRARIES = libhello.la
1997-04-02 03:02:08 +08:00
libhello_la_SOURCES = hello.c foo.c
1997-04-02 03:53:01 +08:00
libhello_la_LDFLAGS = -version-info 3:12:1
1997-04-02 02:29:23 +08:00
@end example
1997-04-02 03:53:01 +08:00
The @samp{-rpath} option is passed automatically by Automake, so you
should not specify it.
@xref{A Shared Library, Building a Shared Library, The Automake Manual,
automake, The Automake Manual}, for more information.
1997-04-02 03:21:43 +08:00
@node Configuring
1997-05-25 06:50:52 +08:00
@section Configuring libtool
1998-05-18 19:03:32 +08:00
@cindex configuring libtool
1997-04-02 02:29:23 +08:00
1997-04-02 02:57:49 +08:00
Libtool requires intimate knowledge of your compiler suite and operating
system in order to be able to create shared libraries and link against
them properly. When you install the libtool distribution, a
system-specific libtool script is installed into your binary directory.
However, when you distribute libtool with your own packages
(@pxref{Distributing}), you do not always know which compiler suite and
operating system are used to compile your package.
For this reason, libtool must be @dfn{configured} before it can be
used. This idea should be familiar to anybody who has used a GNU
1997-06-11 02:21:04 +08:00
@code{configure} script. @code{configure} runs a number of tests for
1997-04-02 02:57:49 +08:00
system features, then generates the @file{Makefiles} (and possibly a
1997-06-11 02:21:04 +08:00
@file{config.h} header file), after which you can run @code{make} and
1997-04-02 02:57:49 +08:00
build the package.
1997-06-11 02:21:04 +08:00
Libtool has its own equivalent to the @code{configure} script,
@code{ltconfig}.
1997-04-02 02:57:49 +08:00
@menu
1997-06-11 02:21:04 +08:00
* Invoking ltconfig:: @code{ltconfig} command line options.
* ltconfig example:: Manually configuring a @code{libtool}.
* AM_PROG_LIBTOOL:: Configuring @code{libtool} in @file{configure.in}.
1997-04-02 02:57:49 +08:00
@end menu
1997-04-02 03:21:43 +08:00
@node Invoking ltconfig
1997-06-11 02:21:04 +08:00
@subsection Invoking @code{ltconfig}
1997-06-06 05:43:58 +08:00
@pindex ltconfig
@cindex ltconfig command options
1998-05-18 19:03:32 +08:00
@cindex options, ltconfig command
@cindex command options, ltconfig
1997-04-02 02:57:49 +08:00
1997-06-11 02:21:04 +08:00
@code{ltconfig} runs a series of configuration tests, then creates a
system-specific @code{libtool} in the current directory. The
@code{ltconfig} program has the following synopsis:
1997-04-02 02:57:49 +08:00
@example
ltconfig [@var{option}]@dots{} @var{ltmain} [@var{host}]
@end example
@noindent
and accepts the following options:
@table @samp
1998-04-15 00:29:20 +08:00
@item --debug
Dump a trace of shell script execution to standard output. This
1998-05-31 03:18:08 +08:00
produces a lot of output, so you may wish to pipe it to @code{less} (or
@code{more}) or redirect to a file.
1998-04-15 00:29:20 +08:00
1997-04-02 02:57:49 +08:00
@item --disable-shared
1997-06-11 02:21:04 +08:00
Create a @code{libtool} that only builds static libraries.
1997-04-02 02:57:49 +08:00
1997-05-25 06:50:52 +08:00
@item --disable-static
1997-06-11 02:21:04 +08:00
Create a @code{libtool} that builds only shared libraries if they are
1997-05-25 06:50:52 +08:00
available. If only static libraries can be built, then this flag has
no effect.
1997-04-02 02:57:49 +08:00
@item --help
Display a help message and exit.
@item --no-verify
1997-06-11 02:21:04 +08:00
Do not use @code{config.sub} to verify that @var{host} is a valid
1997-04-02 02:57:49 +08:00
canonical host system name.
1998-04-20 03:29:28 +08:00
@item --output=@var{file}
@item -o @var{file}
Instead of creating a libtool script called @code{libtool}, create one
called @var{file}. This can be useful if you want to create libtool
scripts for cross-compilers, or you want to have more than one libtool
in the same directory.
1997-04-02 02:57:49 +08:00
@item --quiet
1997-06-11 02:21:04 +08:00
@itemx --silent
1997-04-02 02:57:49 +08:00
Do not print informational messages when running configuration tests.
@item --srcdir=@var{dir}
1997-06-11 02:21:04 +08:00
Look for @code{config.guess} and @code{config.sub} in @var{dir}.
1997-04-02 02:57:49 +08:00
@item --version
1997-06-11 02:21:04 +08:00
Print @code{ltconfig} version information and exit.
1997-04-02 02:57:49 +08:00
@item --with-gcc
Assume that the GNU C compiler will be used when invoking the created
1997-06-11 02:21:04 +08:00
@code{libtool} to compile and link object files.
1997-04-02 02:57:49 +08:00
@end table
1997-06-11 02:21:04 +08:00
@var{ltmain} is the @code{ltmain.sh} shell script fragment that provides
1997-04-02 02:57:49 +08:00
the basic libtool functionality (@pxref{Distributing}).
@var{host} is the canonical host system name, which by default is
1997-06-11 02:21:04 +08:00
guessed by running @code{config.guess}.
1997-04-02 02:57:49 +08:00
1997-06-11 02:21:04 +08:00
@code{ltconfig} also recognizes the following environment variables:
1997-04-02 02:57:49 +08:00
1997-04-02 03:53:01 +08:00
@defvar CC
1997-06-11 02:21:04 +08:00
The C compiler that will be used by the generated @code{libtool}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 02:57:49 +08:00
1997-04-02 03:53:01 +08:00
@defvar CFLAGS
1997-04-02 02:57:49 +08:00
Compiler flags used to generate standard object files.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 02:57:49 +08:00
1997-04-02 03:53:01 +08:00
@defvar CPPFLAGS
1997-04-02 02:59:30 +08:00
C preprocessor flags.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 02:59:30 +08:00
1997-04-02 03:53:01 +08:00
@defvar LD
1997-06-11 02:21:04 +08:00
The system linker to use (if the generated @code{libtool} requires one).
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 02:57:49 +08:00
1997-04-02 03:53:01 +08:00
@defvar RANLIB
1997-06-11 02:21:04 +08:00
Program to use rather than checking for @code{ranlib}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 02:57:49 +08:00
1997-05-25 06:50:52 +08:00
@node ltconfig example
1997-06-11 02:21:04 +08:00
@subsection Using @code{ltconfig}
1997-04-02 02:57:49 +08:00
1997-06-11 02:21:04 +08:00
Here is a simple example of using @code{ltconfig} to configure libtool
1998-04-15 00:29:20 +08:00
on a NetBSD/i386 1.2 system:
1997-04-02 02:57:49 +08:00
@example
burger$ @kbd{./ltconfig ltmain.sh}
checking host system type... i386-unknown-netbsd1.2
checking for ranlib... ranlib
checking for gcc... gcc
checking whether we are using GNU C... yes
checking for gcc option to produce PIC... -fPIC -DPIC
checking for gcc option to statically link programs... -static
checking if ld is GNU ld... no
checking if ld supports shared libraries... yes
checking dynamic linker characteristics... netbsd1.2 ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
creating libtool
burger$
@end example
1997-06-11 02:21:04 +08:00
This example shows how to configure @code{libtool} for cross-compiling
1997-04-02 02:57:49 +08:00
to a i486 GNU/Hurd 0.1 system (assuming compiler tools reside in
@file{/local/i486-gnu/bin}):
@example
burger$ export PATH=/local/i486-gnu/bin:$PATH
burger$ ./ltconfig ltmain.sh i486-gnu0.1
checking host system type... i486-unknown-gnu0.1
checking for ranlib... ranlib
checking for gcc... gcc
checking whether we are using GNU C... yes
checking for gcc option to produce PIC... -fPIC -DPIC
checking for gcc option to statically link programs... -static
checking if ld is GNU ld... yes
checking if GNU ld supports shared libraries... yes
checking dynamic linker characteristics... gnu0.1 ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
creating libtool
burger$
@end example
1997-04-02 03:21:43 +08:00
@node AM_PROG_LIBTOOL
1997-04-02 02:57:49 +08:00
@subsection The @code{AM_PROG_LIBTOOL} macro
If you are using GNU Autoconf (or Automake), you should add a call to
@code{AM_PROG_LIBTOOL} to your @file{configure.in} file. This macro
1997-06-11 02:21:04 +08:00
offers seamless integration between the @code{configure} script and
@code{ltconfig}:
1997-04-02 03:53:01 +08:00
@defmac AM_PROG_LIBTOOL
Add support for the @samp{--enable-shared} and @samp{--disable-shared}
1997-06-11 02:21:04 +08:00
@code{configure} flags. Invoke @code{ltconfig} with the correct
1998-02-06 15:36:38 +08:00
arguments to configure the package (@pxref{Invoking
ltconfig}).@footnote{@code{AM_PROG_LIBTOOL} requires that you define the
@file{Makefile} variable @code{top_builddir} in your @file{Makefile.in}.
Automake does this automatically, but Autoconf users should set it to
the relative path to the top of your build directory (@file{../..}, for
example).}
1998-02-12 13:45:15 +08:00
By default, this macro turns on shared libraries if they are available,
and also enables static libraries if they don't conflict with the shared
1998-04-15 00:29:20 +08:00
libraries. You can modify these defaults by calling either the
1998-02-12 13:45:15 +08:00
@code{AM_DISABLE_SHARED} or @code{AM_DISABLE_STATIC} macros:
@example
1998-04-20 03:29:28 +08:00
# Turn off shared libraries during beta-testing, since they
# make the build process take too long.
1998-02-12 13:45:15 +08:00
AM_DISABLE_SHARED
AM_PROG_LIBTOOL
@end example
1998-03-06 00:23:43 +08:00
1998-04-20 03:29:28 +08:00
The user may specify modified forms of both the @samp{--enable-shared}
and @samp{--enable-static} flags to choose whether shared or static
libraries are built based on the name of the package. For example, to
have shared @samp{bfd} and @samp{gdb} libraries built, but not shared
@samp{libg++}, you can run all three @code{configure} scripts as
follows:
1998-03-06 00:23:43 +08:00
@example
trick$ ./configure --enable-shared=bfd,gdb
@end example
In general, specifying @samp{--enable-shared=@var{pkgs}} is the same as
specifying @samp{--enable-shared} to every package named in the
1998-04-20 03:29:28 +08:00
comma-separated @var{pkgs} list, and @samp{--disable-shared} to every
other package. The @samp{--enable-static=@var{pkgs}} flag behaves
similarly, but it uses @samp{--enable-static} and
@samp{--disable-static}.
1998-03-06 00:23:43 +08:00
The package name @samp{default} matches any packages which have not set
their name in the @code{PACKAGE} environment variable.
1998-02-12 13:45:15 +08:00
@end defmac
@defmac AM_DISABLE_SHARED
Change the default behaviour for @code{AM_PROG_LIBTOOL} to disable
shared libraries. The user may still override this default by
specifying @samp{--enable-shared}.
@end defmac
@defmac AM_DISABLE_STATIC
Change the default behaviour for @code{AM_PROG_LIBTOOL} to disable
static libraries. The user may still override this default by
specifying @samp{--enable-static}.
1997-04-02 03:53:01 +08:00
@end defmac
1997-04-02 02:57:49 +08:00
1997-06-11 02:21:04 +08:00
@pindex aclocal
When you invoke the @code{libtoolize} program (@pxref{Invoking
1997-04-02 02:57:49 +08:00
libtoolize}), it will tell you where to find a definition of
1997-06-11 02:21:04 +08:00
@code{AM_PROG_LIBTOOL}. If you use Automake, the @code{aclocal} program
1997-04-02 03:00:38 +08:00
will automatically add @code{AM_PROG_LIBTOOL} support to your
1997-06-11 02:21:04 +08:00
@code{configure} script.
1997-04-02 02:29:23 +08:00
1997-04-02 03:21:43 +08:00
@node Distributing
1998-05-18 19:03:32 +08:00
@section Including libtool in your package
1997-04-02 02:29:23 +08:00
In order to use libtool, you need to include the following files with
your package:
@table @file
@item config.guess
1997-06-06 05:43:58 +08:00
@pindex config.guess
1997-04-02 02:29:23 +08:00
Attempt to guess a canonical system name.
@item config.sub
1997-06-06 05:43:58 +08:00
@pindex config.sub
1997-04-02 02:29:23 +08:00
Canonical system name validation subroutine script.
@item ltconfig
Generate a libtool script for a given system.
@item ltmain.sh
1997-06-06 05:43:58 +08:00
@pindex ltmain.sh
1997-04-02 02:29:23 +08:00
A generic script implementing basic libtool functionality.
@end table
Note that the libtool script itself should @emph{not} be included with
your package. @xref{Configuring}.
1997-06-11 02:21:04 +08:00
You should use the @code{libtoolize} program, rather than manually
1997-06-07 05:55:10 +08:00
copying these files into your package.
1997-04-02 02:29:23 +08:00
@menu
1997-06-11 02:21:04 +08:00
* Invoking libtoolize:: @code{libtoolize} command line options.
1997-05-25 06:50:52 +08:00
* Autoconf .o macros:: Autoconf macros that set object file names.
1997-04-02 02:29:23 +08:00
@end menu
1997-04-02 03:21:43 +08:00
@node Invoking libtoolize
1997-06-11 02:21:04 +08:00
@subsection Invoking @code{libtoolize}
1997-06-06 05:43:58 +08:00
@pindex libtoolize
@cindex libtoolize command options
1998-05-18 19:03:32 +08:00
@cindex command options, libtoolize
@cindex options, libtoolize command
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
The @code{libtoolize} program provides a standard way to add libtool
1997-04-02 02:29:23 +08:00
support to your package. In the future, it may implement better usage
checking, or other features to make libtool even easier to use.
1997-06-11 02:21:04 +08:00
The @code{libtoolize} program has the following synopsis:
1997-04-02 02:29:23 +08:00
@example
libtoolize [@var{option}]@dots{}
@end example
@noindent
and accepts the following options:
@table @samp
@item --automake
Work silently, and assume that Automake libtool support is used.
@samp{libtoolize --automake} is used by Automake to add libtool files to
1998-02-12 13:45:15 +08:00
your package, when @code{AM_PROG_LIBTOOL} appears in your
1997-04-02 02:29:23 +08:00
@file{configure.in}.
@item --copy
@itemx -c
Copy files from the libtool data directory rather than creating
symlinks.
1998-04-15 00:29:20 +08:00
@item --debug
Dump a trace of shell script execution to standard output. This
1998-05-31 03:18:08 +08:00
produces a lot of output, so you may wish to pipe it to @code{less} (or
@code{more}) or redirect to a file.
1998-04-15 00:29:20 +08:00
1997-04-02 03:04:40 +08:00
@item --dry-run
@itemx -n
Don't run any commands that modify the file system, just print them
out.
1997-04-02 02:29:23 +08:00
@item --force
@itemx -f
1997-06-11 02:21:04 +08:00
Replace existing libtool files. By default, @code{libtoolize} won't
1997-04-02 02:29:23 +08:00
overwrite existing files.
@item --help
Display a help message and exit.
@item --version
1997-06-11 02:21:04 +08:00
Print @code{libtoolize} version information and exit.
1997-04-02 02:29:23 +08:00
@end table
1997-06-06 05:43:58 +08:00
@findex AC_CONFIG_AUX_DIR
1997-06-11 02:21:04 +08:00
If @code{libtoolize} detects an explicit call to
1997-04-02 03:19:30 +08:00
@code{AC_CONFIG_AUX_DIR} (@pxref{Input, , The Autoconf Manual,
1997-04-02 03:53:01 +08:00
autoconf, The Autoconf Manual}) in your @file{configure.in}, it
1997-04-02 03:19:30 +08:00
will put the files in the specified directory.
1997-06-11 02:21:04 +08:00
@code{libtoolize} displays hints for adding libtool support to your
1997-04-02 02:29:23 +08:00
package, as well.
1997-05-25 06:50:52 +08:00
@node Autoconf .o macros
@subsection Autoconf @samp{.o} macros
1997-04-02 03:53:01 +08:00
The Autoconf package comes with a few macros that run tests, then set a
variable corresponding to the name of an object file. Sometimes it is
necessary to use corresponding names for libtool objects.
1997-04-06 02:48:44 +08:00
Here are the names of variables that list libtool objects:
1997-04-02 03:53:01 +08:00
1997-06-06 05:43:58 +08:00
@defvar LTALLOCA
@findex AC_FUNC_ALLOCA
1997-04-06 02:48:44 +08:00
Substituted by @code{AC_FUNC_ALLOCA} (@pxref{Particular Functions, Particular
1997-04-02 03:53:01 +08:00
Function Checks, The Autoconf Manual, autoconf, The Autoconf
1997-04-06 02:48:44 +08:00
Manual}). Is either empty, or contains @samp{alloca.lo}.
1997-06-06 05:43:58 +08:00
@end defvar
1997-04-02 03:53:01 +08:00
1997-06-06 05:43:58 +08:00
@defvar LTLIBOBJS
@findex AC_REPLACE_FUNCS
1997-04-06 02:48:44 +08:00
Substituted by @code{AC_REPLACE_FUNCS} (@pxref{Generic Functions, Generic
1997-04-02 03:53:01 +08:00
Function Checks, The Autoconf Manual, autoconf, The Autoconf
1997-04-06 02:48:44 +08:00
Manual}), and a few other functions.
1997-06-06 05:43:58 +08:00
@end defvar
1997-04-06 02:48:44 +08:00
Unfortunately, the most recent version of Autoconf (2.12, at the time of
this writing) does not have any way for libtool to provide support for
these variables. So, if you depend on them, use the following code
immediately before the call to @code{AC_OUTPUT} in your
@file{configure.in}:
1997-04-02 03:53:01 +08:00
1997-04-06 02:48:44 +08:00
@example
1997-06-30 20:20:49 +08:00
LTLIBOBJS=`echo "$LIBOBJS" | sed 's/\.o/.lo/g'`
1997-04-06 02:48:44 +08:00
AC_SUBST(LTLIBOBJS)
1997-06-30 20:20:49 +08:00
LTALLOCA=`echo "$ALLOCA" | sed 's/\.o/.lo/g'`
1997-04-06 02:48:44 +08:00
AC_SUBST(LTALLOCA)
AC_OUTPUT(@dots{})
@end example
1997-04-02 03:53:01 +08:00
1998-02-06 15:36:38 +08:00
@node Static-only libraries
@section Static-only libraries
1998-05-18 19:03:32 +08:00
@cindex debugging libraries
@cindex developing libraries
@cindex double-compilation, avoiding
@cindex avoiding shared libraries
@cindex eliding shared libraries
@cindex using shared libraries, not
@cindex shared libraries, not using
@cindex time, saving
@cindex saving time
1998-02-06 15:36:38 +08:00
When you are developing a package, it is often worthwhile to configure
1998-02-12 13:45:15 +08:00
your package with the @samp{--disable-shared} flag, or to override the
1998-05-31 03:18:08 +08:00
defaults for @code{AM_PROG_LIBTOOL} by using the
@code{AM_DISABLE_SHARED} Autoconf macro (@pxref{AM_PROG_LIBTOOL, , The
@code{AM_PROG_LIBTOOL} macro}). This prevents libtool from building
shared libraries, which has several advantages:
1998-02-06 15:36:38 +08:00
@itemize @bullet
@item
1998-05-31 03:18:08 +08:00
compilation is twice as fast, which can speed up your development cycle,
1998-02-06 15:36:38 +08:00
@item
debugging is easier because you don't need to deal with any complexities
1998-05-31 03:18:08 +08:00
added by shared libraries, and
1998-02-06 15:36:38 +08:00
@item
1998-05-31 03:18:08 +08:00
you can see how libtool behaves on static-only platforms.
1998-02-06 15:36:38 +08:00
@end itemize
You may want to put a small note in your package @file{README} to let
other developers know that @samp{--disable-shared} can save them time.
The following example note is taken from the GIMP@footnote{GNU Image
Manipulation Program, for those who haven't taken the plunge. See
@url{http://www.gimp.org/}.} distribution @file{README}:
@example
1998-02-12 13:45:15 +08:00
The GIMP uses GNU Libtool in order to build shared libraries on a
1998-02-06 15:36:38 +08:00
variety of systems. While this is very nice for making usable
binaries, it can be a pain when trying to debug a program. For that
reason, compilation of shared libraries can be turned off by
1998-02-12 13:45:15 +08:00
specifying the @samp{--disable-shared} option to @file{configure}.
1998-02-06 15:36:38 +08:00
@end example
1997-04-02 03:21:43 +08:00
@node Versioning
1997-05-25 06:50:52 +08:00
@chapter Library interface versions
1998-05-18 19:03:32 +08:00
@cindex dynamic dependencies
@cindex dependency versioning
@cindex shared library versions
1997-04-02 02:29:23 +08:00
The most difficult issue introduced by shared libraries is that of
creating and resolving runtime dependencies. Dependencies on programs
and libraries are often described in terms of a single name, such as
1998-04-15 00:29:20 +08:00
@code{sed}. So, one may say ``libtool depends on sed,'' and that is
good enough for most purposes.
1997-04-02 02:29:23 +08:00
However, when an interface changes regularly, we need to be more
specific: ``Gnus 5.1 requires Emacs 19.28 or above.'' Here, the
description of an interface consists of a name, and a ``version
number.''
Even that sort of description is not accurate enough for some purposes.
What if Emacs 20 changes enough to break Gnus 5.1?
The same problem exists in shared libraries: we require a formal version
system to describe the sorts of dependencies that programs have on
shared libraries, so that the dynamic linker can guarantee that programs
are linked only against libraries that provide the interface they
require.
@menu
* Interfaces:: What are library interfaces?
1997-05-25 06:50:52 +08:00
* Libtool versioning:: Libtool's versioning system.
* Updating version info:: Changing version information before releases.
1998-02-06 15:36:38 +08:00
* Release numbers:: Breaking binary compatibility for aesthetics.
1997-04-02 02:29:23 +08:00
@end menu
1997-04-02 03:21:43 +08:00
@node Interfaces
1997-05-25 06:50:52 +08:00
@section What are library interfaces?
1998-05-18 19:03:32 +08:00
@cindex library interfaces
1997-04-02 02:29:23 +08:00
Interfaces for libraries may be any of the following (and more):
@itemize @bullet
@item
1997-06-11 02:21:04 +08:00
global variables: both names and types
1997-04-02 02:29:23 +08:00
@item
1997-06-11 02:21:04 +08:00
global functions: argument types and number, return types, and function names
1997-04-02 02:29:23 +08:00
@item
standard input, standard output, standard error, and file formats
@item
1997-06-06 05:43:58 +08:00
sockets, pipes, and other inter-process communication protocol formats
1997-04-02 02:29:23 +08:00
@end itemize
Note that static functions do not count as interfaces, because they are
not directly available to the user of the library.
1997-05-25 06:50:52 +08:00
@node Libtool versioning
@section Libtool's versioning system
1998-05-18 19:03:32 +08:00
@cindex libtool library versions
@cindex formal versioning
@cindex versioning, formal
1997-04-02 02:29:23 +08:00
Libtool has its own formal versioning system. It is not as flexible as
some, but it is definitely the simplest of the more powerful versioning
systems.
Think of a library as exporting several sets of interfaces, arbitrarily
represented by integers. When a program is linked against a library, it
1997-06-11 02:21:04 +08:00
may use any subset of those interfaces.
1997-04-02 02:29:23 +08:00
1998-03-20 15:58:42 +08:00
Libtool's description of the interfaces that a program uses is simple:
it encodes the least and the greatest interface numbers in the resulting
binary (@var{first-interface}, @var{last-interface}).
1997-04-02 02:29:23 +08:00
1998-01-26 03:35:11 +08:00
The dynamic linker is guaranteed that if a library supports @emph{every}
interface number between @var{first-interface} and @var{last-interface},
then the program can be relinked against that library.
1997-04-02 02:29:23 +08:00
Note that this can cause problems because libtool's compatibility
requirements are actually stricter than is necessary.
1997-04-02 03:02:08 +08:00
Say @file{libhello} supports interfaces 5, 16, 17, 18, and 19, and that
libtool is used to link @file{test} against @file{libhello}.
1997-04-02 02:29:23 +08:00
Libtool encodes the numbers 5 and 19 in @file{test}, and the dynamic
linker will only link @file{test} against libraries that support
@emph{every} interface between 5 and 19. So, the dynamic linker refuses
1997-04-02 03:02:08 +08:00
to link @file{test} against @file{libhello}!
1997-04-02 02:29:23 +08:00
In order to eliminate this problem, libtool only allows libraries to
1997-04-02 03:02:08 +08:00
declare consecutive interface numbers. So, @file{libhello} can declare at
1997-04-02 02:29:23 +08:00
most that it supports interfaces 16 through 19. Then, the dynamic
1997-04-02 03:02:08 +08:00
linker will link @file{test} against @file{libhello}.
1997-04-02 02:29:23 +08:00
So, libtool library versions are described by three integers:
@table @var
@item current
The most recent interface number that this library implements.
1997-10-15 02:33:24 +08:00
@item revision
The implementation number of the @var{current} interface.
1997-04-02 02:29:23 +08:00
@item age
1998-01-26 03:35:11 +08:00
The difference between the newest and oldest interfaces that this
1997-04-02 02:29:23 +08:00
library implements. In other words, the library implements all the
interface numbers in the range from number @code{@var{current} -
@var{age}} to @code{@var{current}}.
@end table
If two libraries have identical @var{current} and @var{age} numbers,
then the dynamic linker chooses the library with the greater
@var{revision} number.
1997-05-25 06:50:52 +08:00
@node Updating version info
1997-06-11 02:21:04 +08:00
@section Updating library version information
1997-04-02 02:29:23 +08:00
1997-04-02 02:57:49 +08:00
If you want to use libtool's versioning system, then you must specify
the version information to libtool using the @samp{-version-info} flag
1997-05-25 06:50:52 +08:00
during link mode (@pxref{Link mode}).
1997-04-02 02:29:23 +08:00
1997-04-02 02:57:49 +08:00
This flag accepts an argument of the form
@samp{@var{current}[:@var{revision}[:@var{age}]]}. So, passing
@samp{-version-info 3:12:1} sets @var{current} to 3, @var{revision} to
12, and @var{age} to 1.
1997-04-02 02:29:23 +08:00
1998-01-26 03:35:11 +08:00
If either @var{revision} or @var{age} are omitted, they default to 0.
1997-04-02 02:57:49 +08:00
Also note that @var{age} must be less than or equal to the @var{current}
interface number.
1997-04-02 02:29:23 +08:00
1997-04-02 02:57:49 +08:00
Here are a set of rules to help you update your library version
information:
1997-04-02 02:29:23 +08:00
@enumerate 1
@item
1997-04-02 02:57:49 +08:00
Start with version information of @samp{0:0:0} for each libtool library.
1997-04-02 02:29:23 +08:00
@item
1997-04-02 02:57:49 +08:00
Update the version information only immediately before a public release
of your software. More frequent updates are unnecessary, and only
guarantee that the current interface number gets larger faster.
1997-04-02 02:29:23 +08:00
@item
If the library source code has changed at all since the last update,
1997-04-02 02:57:49 +08:00
then increment @var{revision} (@samp{@var{c}:@var{r}:@var{a}} becomes
1998-05-31 03:18:08 +08:00
@samp{@var{c}:@math{r+1}:@var{a}}).
1997-04-02 02:29:23 +08:00
@item
If any interfaces have been added, removed, or changed since the last
update, increment @var{current}, and set @var{revision} to 0.
@item
If any interfaces have been added since the last public release, then
increment @var{age}.
@item
If any interfaces have been removed since the last public release, then
set @var{age} to 0.
@end enumerate
1998-02-06 15:36:38 +08:00
@strong{@emph{Never}} try to set the interface numbers so that they
1997-06-11 02:21:04 +08:00
correspond to the release number of your package. This is an abuse that
only fosters misunderstanding of the purpose of library versions.
1998-05-18 19:03:32 +08:00
Instead, use the @samp{-release} flag (@pxref{Release numbers}), but be
warned that every release of your package will not be binary compatible
with any other release.
1998-02-06 15:36:38 +08:00
@node Release numbers
@section Managing release information
Often, people want to encode the name of the package release into the
shared library so that it is obvious to the user which package their
programs are linked against. This convention is used especially on
1998-05-31 03:18:08 +08:00
GNU/Linux:
1998-02-06 15:36:38 +08:00
@example
trick$ @kbd{ls /usr/lib/libbfd*}
/usr/lib/libbfd.a /usr/lib/libbfd.so.2.7.0.2
/usr/lib/libbfd.so
trick$
@end example
1998-04-20 03:29:28 +08:00
On @samp{trick}, @file{/usr/lib/libbfd.so} is a symbolic link to
@file{libbfd.so.2.7.0.2}, which was distributed as a part of
1998-02-06 15:36:38 +08:00
@samp{binutils-2.7.0.2}.
Unfortunately, this convention conflicts directly with libtool's idea of
library interface versions, because the library interface rarely changes
at the same time that the release number does, and the library suffix is
never the same across all platforms.
1998-03-06 00:23:43 +08:00
So, in order to accomodate both views, you can use the @samp{-release}
flag in order to set release information for libraries which you do not
want to use @samp{-version-info}. For the @file{libbfd} example, the
next release which uses libtool should be built with @samp{-release
1998-05-31 03:18:08 +08:00
2.9.0}, which will produce the following files on GNU/Linux:
1998-02-06 15:36:38 +08:00
@example
trick$ @kbd{ls /usr/lib/libbfd*}
1998-05-18 19:03:32 +08:00
/usr/lib/libbfd-2.9.0.so /usr/lib/libbfd.a
/usr/lib/libbfd.so
1998-02-06 15:36:38 +08:00
trick$
@end example
In this case, @file{/usr/lib/libbfd.so} is a symbolic link to
1998-05-18 19:03:32 +08:00
@file{libbfd-2.9.0.so}. This makes it obvious that the user is dealing
with @samp{binutils-2.9.0}, without compromising libtool's idea of
interface versions.
1998-02-06 15:36:38 +08:00
1998-05-18 19:03:32 +08:00
Note that this option causes a modification of the library name, so do
not use it unless you want to break binary compatibility with any past
library releases. In general, you should only use @samp{-release} for
package-internal libraries or for ones whose interfaces change very
frequently.
1997-04-02 02:29:23 +08:00
1997-05-25 06:50:52 +08:00
@node Library tips
@chapter Tips for interface design
1998-05-18 19:03:32 +08:00
@cindex library interfaces, design
@cindex design of library interfaces
1997-04-02 02:29:23 +08:00
Writing a good library interface takes a lot of practice and thorough
understanding of the problem that the library is intended to solve.
If you design a good interface, it won't have to change often, you won't
have to keep updating documentation, and users won't have to keep
relearning how to use the library.
Here is a brief list of tips for library interface design, which may
help you in your exploits:
@table @asis
@item Plan ahead
Try to make every interface truly minimal, so that you won't need to
delete entry points very often.
@item Avoid interface changes
1998-05-18 19:03:32 +08:00
@cindex renaming interface functions
1997-04-02 02:29:23 +08:00
Some people love redesigning and changing entry points just for the heck
of it (note: @emph{renaming} a function is considered changing an entry
point). Don't be one of those people. If you must redesign an
1997-06-11 02:21:04 +08:00
interface, then try to leave compatibility functions behind so that
users don't need to rewrite their existing code.
1997-04-02 02:29:23 +08:00
@item Use opaque data types
1998-05-18 19:03:32 +08:00
@cindex opaque data types
1997-04-02 02:29:23 +08:00
The fewer data type definitions a library user has access to, the
better. If possible, design your functions to accept a generic pointer
(which you can cast to an internal data type), and provide access
1997-06-11 02:21:04 +08:00
functions rather than allowing the library user to directly manipulate
the data.
1997-04-02 02:29:23 +08:00
That way, you have the freedom to change the data structures without
changing the interface.
This is essentially the same thing as using abstract data types and
inheritance in an object-oriented system.
@item Use header files
1998-05-18 19:03:32 +08:00
@cindex header files
1997-04-02 02:29:23 +08:00
If you are careful to document each of your library's global functions
1997-06-11 02:21:04 +08:00
and variables in header files, and include them in your library source
files, then the compiler will let you know if you make any interface
changes by accident (@pxref{C header files}).
1997-04-02 02:29:23 +08:00
1997-04-02 03:04:40 +08:00
@item Use the @code{static} keyword (or equivalent) whenever possible
1998-05-18 19:03:32 +08:00
@cindex global functions
1997-04-02 02:29:23 +08:00
The fewer global functions your library has, the more flexibility you'll
have in changing them. Static functions and variables may change forms
as often as you like@dots{} your users cannot access them, so they
aren't interface changes.
@end table
1997-04-02 02:57:49 +08:00
@menu
1997-05-25 06:50:52 +08:00
* C header files:: How to write portable include files.
1997-04-02 02:57:49 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node C header files
@section Writing C header files
1998-05-18 19:03:32 +08:00
@cindex portable C headers
1997-06-06 05:43:58 +08:00
@cindex C header files, portable
1998-05-18 19:03:32 +08:00
@cindex include files, portable
1997-04-02 02:57:49 +08:00
Writing portable C header files can be difficult, since they may be read
by different types of compilers:
@table @asis
@item C++ compilers
C++ compilers require that functions be declared with full prototypes,
since C++ is more strongly typed than C. C functions and variables also
need to be declared with the @code{extern "C"} directive, so that the
1997-05-25 06:50:52 +08:00
names aren't mangled. @xref{C++ libraries}, for other issues relevant
1997-04-02 03:04:40 +08:00
to using C++ with libtool.
1997-04-02 02:57:49 +08:00
@item ANSI C compilers
ANSI C compilers are not as strict as C++ compilers, but functions
should be prototyped to avoid unnecessary warnings when the header file
is @code{#include}d.
@item non-ANSI C compilers
Non-ANSI compilers will report errors if functions are prototyped.
@end table
These complications mean that your library interface headers must use
some C preprocessor magic in order to be usable by each of the above
compilers.
@file{foo.h} in the @file{demo} subdirectory of the libtool distribution
serves as an example for how to write a header file that can be
safely installed in a system directory.
Here are the relevant portions of that file:
@example
1997-06-11 02:21:04 +08:00
/* __BEGIN_DECLS should be used at the beginning of your declarations,
so that C++ compilers don't mangle their names. Use __END_DECLS at
the end of C declarations. */
1997-04-02 03:04:40 +08:00
#undef __BEGIN_DECLS
#undef __END_DECLS
#ifdef __cplusplus
# define __BEGIN_DECLS extern "C" @{
# define __END_DECLS @}
#else
# define __BEGIN_DECLS /* empty */
# define __END_DECLS /* empty */
1997-04-02 02:57:49 +08:00
#endif
1997-06-07 05:55:10 +08:00
/* __P is a macro used to wrap function prototypes, so that compilers
that don't understand ANSI C prototypes still work, and ANSI C
compilers can issue warnings about type mismatches. */
1997-04-02 03:04:40 +08:00
#undef __P
#if defined (__STDC__) || defined (_AIX) \
1997-04-02 02:57:49 +08:00
|| (defined (__mips) && defined (_SYSTYPE_SVR4)) \
|| defined(WIN32) || defined(__cplusplus)
1997-04-02 03:04:40 +08:00
# define __P(protos) protos
#else
# define __P(protos) ()
1997-04-02 02:57:49 +08:00
#endif
@end example
These macros are used in @file{foo.h} as follows:
@example
1997-04-02 03:04:40 +08:00
#ifndef _FOO_H_
#define _FOO_H_ 1
1997-04-02 02:57:49 +08:00
/* The above macro definitions. */
@dots{}
__BEGIN_DECLS
int foo __P((void));
int hello __P((void));
__END_DECLS
#endif /* !_FOO_H_ */
@end example
1997-04-02 03:04:40 +08:00
Note that the @file{#ifndef _FOO_H_} prevents the body of @file{foo.h}
from being read more than once in a given compilation.
1997-04-02 02:57:49 +08:00
Feel free to copy the definitions of @code{__P}, @code{__BEGIN_DECLS},
and @code{__END_DECLS} into your own headers. Then, you may use them to
create header files that are valid for C++, ANSI, and non-ANSI
compilers.
1997-04-02 03:04:40 +08:00
Do not be naive about writing portable code. Following the tips given
above will help you miss the most obvious problems, but there are
definitely other subtle portability issues. You may need to cope with
1997-04-02 03:19:30 +08:00
some of the following issues:
1997-04-02 03:04:40 +08:00
@itemize @bullet
@item
Pre-ANSI compilers do not always support the @code{void *} generic
pointer type, and so need to use @code{char *} in its place.
1997-04-02 03:19:30 +08:00
@item
The @code{const} and @code{signed} keywords are not supported by some
compilers, especially pre-ANSI compilers.
@item
The @code{long double} type is not supported by many compilers.
1997-04-02 03:04:40 +08:00
@end itemize
1997-06-06 02:00:56 +08:00
@node Inter-library dependencies
@chapter Inter-library dependencies
1998-05-18 19:03:32 +08:00
@cindex dependencies between libraries
@cindex inter-library dependencies
1997-06-06 02:00:56 +08:00
By definition, every shared library system provides a way for
executables to depend on libraries, so that symbol resolution is
deferred until runtime.
1997-06-06 05:43:58 +08:00
An @dfn{inter-library dependency} is one in which a library depends on
other libraries. For example, if the libtool library @file{libhello}
1998-05-31 03:18:08 +08:00
uses the @code{cos} function, then it has an inter-library dependency
on @file{libm}, the math library that implements @code{cos}.
1997-06-06 05:43:58 +08:00
Some shared library systems provide this feature in an
internally-consistent way: these systems allow chains of dependencies of
potentially infinite length.
However, most shared library systems are restricted in that they only
allow a single level of dependencies. In these systems, programs may
depend on shared libraries, but shared libraries may not depend on other
shared libraries.
In any event, libtool provides a simple mechanism for you to declare
inter-library dependencies: for every library @file{lib@var{name}} that
your own library depends on, simply add a corresponding
@code{-l@var{name}} option to the link line when you create your
library.@footnote{Unfortunately, as of libtool version @value{VERSION},
there is no way to specify inter-library dependencies on libtool
libraries that have not yet been installed.} To make an example of our
@file{libhello} that depends on @file{libm}:
@example
burger$ @kbd{libtool gcc -g -O -o libhello.la foo.lo hello.lo \
-rpath /usr/local/lib -lm}
1997-06-11 02:21:04 +08:00
burger$
1997-06-06 05:43:58 +08:00
@end example
When you link a program against @file{libhello}, you don't need to
specify the same @samp{-l} options again: libtool will do that for you,
in order to guarantee that all the required libraries are found. This
restriction is only necessary to preserve compatibility with static
library systems and simple dynamic library systems.
1997-06-06 05:43:58 +08:00
1998-04-20 03:29:28 +08:00
Some platforms, such as AIX and Windows 95, do not even allow you this
flexibility. In order to build a shared library, it must be entirely
self-contained (that is, have references only to symbols that are found
in the @samp{.lo} files or the specified @samp{-l} libraries), and you
need to specify the @var{-no-undefined} flag. By default, libtool
builds only static libraries on these kinds of platforms.
1997-06-06 02:00:56 +08:00
The simple-minded inter-library dependency tracking code of libtool
releases prior to 1.2 was disabled because it was not clear when it was
possible to link one library with another, and complex failures would
occur. A more complex implementation of this concept was re-introduced
before release 1.3, but it has not been ported to all platforms that
libtool supports. The default, conservative behavior is to avoid
linking one library with another, introducing their inter-dependencies
only when a program is linked with them.
1997-05-25 06:50:52 +08:00
@node Dlopened modules
@chapter Dlopened modules
1998-05-31 03:18:08 +08:00
@findex dlopen
@findex dlsym
@findex dlclose
@findex shl_load
1998-05-18 19:03:32 +08:00
@cindex dynamic linking, applications
1997-06-06 05:43:58 +08:00
@cindex dlopening modules
1998-05-18 19:03:32 +08:00
@cindex modules, dynamic
@cindex application-level dynamic linking
1997-05-25 06:50:52 +08:00
It can sometimes be confusing to discuss @dfn{dynamic linking}, because
1997-06-06 02:00:56 +08:00
the term is used to refer to two different concepts:
1997-05-25 06:50:52 +08:00
@enumerate 1
@item
Compiling and linking a program against a shared library, which is
resolved automatically at run time by the dynamic linker. In this
1997-06-12 01:13:23 +08:00
process, dynamic linking is transparent to the application.
1997-05-25 06:50:52 +08:00
@item
1998-05-31 03:18:08 +08:00
The application calling functions such as @code{dlopen},@footnote{HP-UX,
to be different, uses a function named @code{shl_load}.} which load
arbitrary, user-specified modules at runtime. This type of dynamic
linking is explicitly controlled by the application.
1997-05-25 06:50:52 +08:00
@end enumerate
To mitigate confusion, this manual refers to the second type of dynamic
linking as @dfn{dlopening} a module.
The main benefit to dlopening object modules is the ability to access
compiled object code to extend your program, rather than using an
interpreted language. In fact, dlopen calls are frequently used in
language interpreters to provide an efficient way to extend the
language.
1997-07-30 02:31:08 +08:00
As of version @value{VERSION}, libtool provides experimental support for
dlopened modules, which does not radically simplify the development of
dlopening applications. However, this support is designed to be a
portable foundation for generic, higher-level dlopen functions.
1997-05-25 06:50:52 +08:00
This chapter discusses the preliminary support that libtool offers, and
how you as a dlopen application developer might use libtool to generate
dlopen-accessible modules. It is important to remember that these are
experimental features, and not to rely on them for easy answers to the
problems associated with dlopened modules.
1997-06-06 02:00:56 +08:00
@menu
1997-07-30 02:31:08 +08:00
* Building modules:: Creating dlopenable objects and libraries.
1998-01-26 03:35:11 +08:00
* Dlpreopening:: Dlopening that works on static platforms.
1998-05-31 03:18:08 +08:00
* Finding the dlname:: Choosing the right file to @code{dlopen}.
1997-06-06 02:00:56 +08:00
* Dlopen issues:: Unresolved problems that need your attention.
@end menu
1997-07-30 02:31:08 +08:00
@node Building modules
@section Building modules to dlopen
1997-05-25 06:50:52 +08:00
1997-07-30 02:31:08 +08:00
On some operating systems, a program symbol must be specially declared
1998-05-31 03:18:08 +08:00
in order to be dynamically resolved with the @code{dlsym} (or
1997-07-30 02:31:08 +08:00
equivalent) function.
1997-05-25 06:50:52 +08:00
1998-12-02 06:35:00 +08:00
Libtool provides the @samp{-export-dynamic} link
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br> * ltconfig.in, ltmain.in: updated and fixed the patches below 1998-11-04 Thomas Tanner <tanner@gmx.de> * mdemo/*: added new demo to demonstrate building of dlopenend modules * tests/Makefile.am, tests/mdemo*: added some tests for mdemo 1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk> * demo/configure.in: added AC_EXEEXT macro so that the tests can work on cywin32/mingw32 hosts. This requires the current CVS autoconf 1998-11-04 Thomas Tanner <tanner@gmx.de> * ltmain.in: New flag -export-symbols; new dlpreopen system * demo/dlmain.c: removed dld_preloaded_symbol_count 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltmain.in: On installation, don't get confused if the same name appears more than once in the list of library names. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add objext and libext variables. Check for object suffix. Check for mingw32* as well as cygwin32*. Use objext when testing compiler. Add support for Visual C++ on cygwin32 when not using gcc. Add objext, libext, and fix_srcfile_path to generated libtool script. * ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path if it is set. Check for .obj as well as for .o, and for .lib as well as for .a. Use .${libext} rather than .a when creating old libraries. * libtoolize.in: Change initial /bin/sh to @SHELL@. * libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the AC_REQUIRE in AC_CHECK_TOOL. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Look in the right directory for libtool.c in archive_cmds for cygwin32. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Fix cygwin32 support to avoid using a double extension, to delete the def file, to set version_type to windows, and to include versuffix in the DLL name. * ltmain.in: Add support for a version_type of windows. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add cygwin32 support. * libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a cygwin32 host. Pass DLLTOOL and AS to ltconfig. (AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
flags (@pxref{Link mode}), which does this declaration.
You need to use this flag if you are linking an application program that
dlopens other modules or a libtool library that will also be dlopened.
1997-05-25 06:50:52 +08:00
1997-06-06 02:00:56 +08:00
For example, if we wanted to build a shared library, @file{libhello},
that would later be dlopened by an application, we would add
@samp{-export-dynamic} to the other link flags:
@example
burger$ @kbd{libtool gcc -export-dynamic -o libhello.la foo.lo \
hello.lo -rpath /usr/local/lib -lm}
1997-06-11 02:21:04 +08:00
burger$
1997-06-06 02:00:56 +08:00
@end example
Another situation where you would use @samp{-export-dynamic} is if
symbols from your @emph{executable} are needed to satisfy unresolved
references in a library you want to dlopen. In this case, you should
use @samp{-export-dynamic} while linking the executable that calls
dlopen:
@example
burger$ @kbd{libtool gcc -export-dynamic -o hell-dlopener main.o}
1997-06-11 02:21:04 +08:00
burger$
1997-06-06 02:00:56 +08:00
@end example
1997-07-30 02:31:08 +08:00
@node Dlpreopening
@section Dlpreopening
Libtool provides special support for dlopening libtool object and
libtool library files, so that their symbols can be resolved @emph{even
1998-05-31 03:18:08 +08:00
on platforms without any @code{dlopen} and @code{dlsym}
1997-07-30 02:31:08 +08:00
functions.}.
Consider the following alternative ways of loading code into your
program, in order of increasing ``laziness'':
@enumerate 1
@item
Linking against object files that become part of the program executable,
whether or not they are referenced. If an object file cannot be found,
then the linker refuses to create the executable.
@item
Declaring a static library to the linker, so that it is searched at link
time in order to satisfy any undefined references in the above object
files. If the static library cannot be found, then the linker refuses
to link the executable.
@item
Declaring a shared library to the runtime linker, so that it is searched
at runtime in order to satisfy any undefined references in the above
files. If the shared library cannot be found, then the dynamic linker
aborts the program before it runs.
@item
Dlopening a module, so that the application can resolve its own,
dynamically-computed references. If there is an error opening the
1997-08-27 02:44:05 +08:00
module, or the module is not found, then the application can recover
without crashing.
1997-07-30 02:31:08 +08:00
@end enumerate
1998-12-02 06:35:00 +08:00
Libtool emulates @samp{-export-dynamic}
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br> * ltconfig.in, ltmain.in: updated and fixed the patches below 1998-11-04 Thomas Tanner <tanner@gmx.de> * mdemo/*: added new demo to demonstrate building of dlopenend modules * tests/Makefile.am, tests/mdemo*: added some tests for mdemo 1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk> * demo/configure.in: added AC_EXEEXT macro so that the tests can work on cywin32/mingw32 hosts. This requires the current CVS autoconf 1998-11-04 Thomas Tanner <tanner@gmx.de> * ltmain.in: New flag -export-symbols; new dlpreopen system * demo/dlmain.c: removed dld_preloaded_symbol_count 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltmain.in: On installation, don't get confused if the same name appears more than once in the list of library names. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add objext and libext variables. Check for object suffix. Check for mingw32* as well as cygwin32*. Use objext when testing compiler. Add support for Visual C++ on cygwin32 when not using gcc. Add objext, libext, and fix_srcfile_path to generated libtool script. * ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path if it is set. Check for .obj as well as for .o, and for .lib as well as for .a. Use .${libext} rather than .a when creating old libraries. * libtoolize.in: Change initial /bin/sh to @SHELL@. * libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the AC_REQUIRE in AC_CHECK_TOOL. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Look in the right directory for libtool.c in archive_cmds for cygwin32. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Fix cygwin32 support to avoid using a double extension, to delete the def file, to set version_type to windows, and to include versuffix in the DLL name. * ltmain.in: Add support for a version_type of windows. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add cygwin32 support. * libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a cygwin32 host. Pass DLLTOOL and AS to ltconfig. (AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
on static platforms by linking objects into the program at compile time,
and creating data structures that represent the program's symbol table.
1998-01-26 03:35:11 +08:00
In order to use this feature, you must declare the objects you want your
application to dlopen by using the @samp{-dlopen} or @samp{-dlpreopen}
flags when you link your program (@pxref{Link mode}).
1999-01-14 05:39:14 +08:00
@deftypefn {Structure} {typedef struct}
lt_symbol @{ @w{const char *@var{name};} @w{lt_ptr_t @var{address};} @}
1998-05-18 19:03:32 +08:00
The @var{name} attribute is a zero-terminated character string of the
1998-01-26 03:35:11 +08:00
symbol name, such as @code{"fprintf"}. The @var{address} attribute is a
1998-05-18 19:03:32 +08:00
generic pointer to the appropriate object, such as @code{&fprintf}.
@end deftypefn
1998-01-26 03:35:11 +08:00
1999-01-14 05:39:14 +08:00
@deftypevar {const lt_symbol *} lt_preloaded_symbols
An array of @var{lt_symbol} structures, representing all the preloaded
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br> * ltconfig.in, ltmain.in: updated and fixed the patches below 1998-11-04 Thomas Tanner <tanner@gmx.de> * mdemo/*: added new demo to demonstrate building of dlopenend modules * tests/Makefile.am, tests/mdemo*: added some tests for mdemo 1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk> * demo/configure.in: added AC_EXEEXT macro so that the tests can work on cywin32/mingw32 hosts. This requires the current CVS autoconf 1998-11-04 Thomas Tanner <tanner@gmx.de> * ltmain.in: New flag -export-symbols; new dlpreopen system * demo/dlmain.c: removed dld_preloaded_symbol_count 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltmain.in: On installation, don't get confused if the same name appears more than once in the list of library names. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add objext and libext variables. Check for object suffix. Check for mingw32* as well as cygwin32*. Use objext when testing compiler. Add support for Visual C++ on cygwin32 when not using gcc. Add objext, libext, and fix_srcfile_path to generated libtool script. * ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path if it is set. Check for .obj as well as for .o, and for .lib as well as for .a. Use .${libext} rather than .a when creating old libraries. * libtoolize.in: Change initial /bin/sh to @SHELL@. * libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the AC_REQUIRE in AC_CHECK_TOOL. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Look in the right directory for libtool.c in archive_cmds for cygwin32. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Fix cygwin32 support to avoid using a double extension, to delete the def file, to set version_type to windows, and to include versuffix in the DLL name. * ltmain.in: Add support for a version_type of windows. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add cygwin32 support. * libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a cygwin32 host. Pass DLLTOOL and AS to ltconfig. (AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
symbols linked into the program. For each @samp{-dlpreloaded} file
there is an element with the @var{name} of the file and a @var{address}
of @code{0}, followed by all symbols exported from this file.
The last element has a @var{name} and @var{address} of @code{0}.
1998-05-18 19:03:32 +08:00
@end deftypevar
1998-01-26 03:35:11 +08:00
Some compilers may allow identifiers which are not valid in ANSI C, such
as dollar signs. Libtool only recognizes valid ANSI C symbols (an
initial ASCII letter or underscore, followed by zero or more ASCII
letters, digits, and underscores), so non-ANSI symbols will not appear
1999-01-14 05:39:14 +08:00
in @var{lt_preloaded_symbols}.
1998-01-26 03:35:11 +08:00
1997-06-06 02:00:56 +08:00
@node Finding the dlname
@section Finding the correct name to dlopen
1998-05-18 19:03:32 +08:00
@cindex names of dynamic modules
@cindex dynamic modules, names
1997-06-06 02:00:56 +08:00
1998-12-12 07:21:03 +08:00
After a library has been linked with @samp{-module}, it can be dlopened.
1998-11-04 Alexandre Oliva <oliva@dcc.unicamp.br> * ltconfig.in, ltmain.in: updated and fixed the patches below 1998-11-04 Thomas Tanner <tanner@gmx.de> * mdemo/*: added new demo to demonstrate building of dlopenend modules * tests/Makefile.am, tests/mdemo*: added some tests for mdemo 1998-11-04 Gary V. Vaughan <gvaughan@oranda.demon.co.uk> * demo/configure.in: added AC_EXEEXT macro so that the tests can work on cywin32/mingw32 hosts. This requires the current CVS autoconf 1998-11-04 Thomas Tanner <tanner@gmx.de> * ltmain.in: New flag -export-symbols; new dlpreopen system * demo/dlmain.c: removed dld_preloaded_symbol_count 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltmain.in: On installation, don't get confused if the same name appears more than once in the list of library names. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add objext and libext variables. Check for object suffix. Check for mingw32* as well as cygwin32*. Use objext when testing compiler. Add support for Visual C++ on cygwin32 when not using gcc. Add objext, libext, and fix_srcfile_path to generated libtool script. * ltmain.in: Use .${objext} rather than .o. Use fix_srcfile_path if it is set. Check for .obj as well as for .o, and for .lib as well as for .a. Use .${libext} rather than .a when creating old libraries. * libtoolize.in: Change initial /bin/sh to @SHELL@. * libtool.m4 (AM_PROG_LIBTOOL): Add AC_REQUIRE for AC_CANONICAL_BUILD, so that autoconf doesn't get mixed up by the AC_REQUIRE in AC_CHECK_TOOL. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Look in the right directory for libtool.c in archive_cmds for cygwin32. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Fix cygwin32 support to avoid using a double extension, to delete the def file, to set version_type to windows, and to include versuffix in the DLL name. * ltmain.in: Add support for a version_type of windows. 1998-11-04 Ian Lance Taylor <ian@cygnus.com> * ltconfig.in: Add cygwin32 support. * libtool.m4 (AM_PROG_LIBTOOL): Call AM_SYS_LIBTOOL_CYGWIN32 on a cygwin32 host. Pass DLLTOOL and AS to ltconfig. (AM_SYS_LIBTOOL_CYGWIN32): New macro.
1998-11-04 17:43:29 +08:00
Unfortunately, because of the variation in library names,
1997-06-06 02:00:56 +08:00
your package needs to determine the correct file to dlopen.
1997-08-27 02:44:05 +08:00
The most straightforward and flexible implementation is to determine the
name at runtime, by finding the installed @samp{.la} file, and searching
it for the following lines:
1997-06-06 02:00:56 +08:00
@example
1998-05-31 03:18:08 +08:00
# The name that we can @code{dlopen}.
1997-06-06 02:00:56 +08:00
dlname='@var{dlname}'
@end example
If @var{dlname} is empty, then the library cannot be dlopened.
Otherwise, it gives the dlname of the library. So, if the library was
installed as @file{/usr/local/lib/libhello.la}, and the @var{dlname} was
1997-06-07 05:55:10 +08:00
@file{libhello.so.3}, then @file{/usr/local/lib/libhello.so.3} should be
dlopened.
1997-06-06 02:00:56 +08:00
1997-06-11 02:21:04 +08:00
If your program uses this approach, then it should search the
1998-05-31 03:18:08 +08:00
directories listed in the @code{LD_LIBRARY_PATH}@footnote{@code{LIBPATH}
on AIX, and @code{SHLIB_PATH} on HP-UX.} environment variable, as well as
1997-06-11 02:21:04 +08:00
the directory where libraries will eventually be installed. Searching
this variable (or equivalent) will guarantee that your program can find
its dlopened modules, even before installation, provided you have linked
them using libtool.
1997-06-06 02:00:56 +08:00
@node Dlopen issues
@section Unresolved dlopen issues
1998-05-18 19:03:32 +08:00
@cindex pitfalls with dlopen
@cindex dlopening, pitfalls
@cindex trouble with dlopen
1997-06-06 02:00:56 +08:00
The following problems are not solved by using libtool's dlopen support:
@itemize @bullet
@item
Dlopen functions are generally only available on shared library
platforms. If you want your package to be portable to static platforms,
you have to develop your own alternatives to dlopening dynamic code.
Most reasonable solutions involve writing wrapper functions for the
1998-05-31 03:18:08 +08:00
@code{dlopen} family, which do package-specific tricks when dlopening
1997-06-06 02:00:56 +08:00
is unsupported or not available on a given platform.
@item
1998-05-31 03:18:08 +08:00
There are major differences in implementations of the @code{dlopen}
1997-06-06 02:00:56 +08:00
family of functions. Some platforms do not even use the same function
1998-05-31 03:18:08 +08:00
names (notably HP-UX, with its @code{shl_load} family).
1997-06-06 02:00:56 +08:00
@item
1997-07-26 01:11:35 +08:00
The application developer must write a custom search function in order
1998-05-31 03:18:08 +08:00
to discover the correct module filename to supply to @code{dlopen}.
1997-06-06 02:00:56 +08:00
@end itemize
Libtool provides a small library, called @file{libltdl}, that aims at
hiding the various difficulties of dlopening libraries from programmers.
It consists of a header-file and a small C source file that can be
distributed with applications that need dlopening functionality. Note,
however, that its experimental interface is not document and is subject
to change; use it at your own risk. On some platforms, whose dynamic
linkers are too limited for a simple implementation of @file{libltdl}
services, it will require GNU DLD.
1997-06-06 02:00:56 +08:00
1997-05-25 06:50:52 +08:00
@node Other languages
@chapter Using libtool with other languages
1997-06-06 05:43:58 +08:00
@cindex C, not using
1998-05-18 19:03:32 +08:00
@cindex languages, non-C
1997-06-06 05:43:58 +08:00
@cindex C++, using
1997-04-02 03:04:40 +08:00
Libtool was first implemented in order to add support for writing shared
libraries in the C language. However, over time, libtool is being
integrated with other languages, so that programmers are free to reap
the benefits of shared libraries in their favorite programming language.
This chapter describes how libtool interacts with other languages,
and what special considerations you need to make if you do not use C.
@menu
1998-02-06 15:36:38 +08:00
* C++ libraries::
1997-04-02 03:04:40 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node C++ libraries
@section Writing libraries for C++
1997-06-11 02:21:04 +08:00
@c FIXME: in the TOC, the ++ is too large (seems to be math mode)
1998-05-18 19:03:32 +08:00
@cindex trouble with C++
@cindex pitfalls using C++
1997-06-06 05:43:58 +08:00
@cindex C++, pitfalls
1997-04-02 03:04:40 +08:00
Creating libraries of C++ code should be a fairly straightforward
process, because its object files differ from C ones in only two ways:
1997-04-02 03:04:40 +08:00
@enumerate 1
@item
1997-04-02 03:19:30 +08:00
Because of name mangling, C++ libraries are only usable by the C++
compiler that created them. This decision was made by the designers of
C++ in order to protect users from conflicting implementations of
features such as constructors, exception handling, and RTTI.
1997-04-02 03:04:40 +08:00
@item
On some systems, the C++ compiler must take special actions for the
dynamic linker to run dynamic (i.e., run-time) initializers. This means
that we should not call @file{ld} directly to link such libraries, and
we should use the C++ compiler instead.
@item
C++ compilers will link some Standard C++ library in by default, but
libtool does not know which are these libraries, so it cannot even run
the inter-library dependence analyzer to check how to link it in.
Therefore, running @file{ld} to link a C++ program or library is deemed
to fail. However, running the C++ compiler directly may lead to
problems related with inter-library dependencies.
1997-04-02 03:04:40 +08:00
@end enumerate
The conclusion is that libtool is not ready for general use for C++
libraries. You should avoid any global or static variable
initializations that would cause an ``initializer element is not
constant'' error if you compiled them with a standard C compiler.
1997-04-02 03:19:30 +08:00
1997-04-25 01:51:39 +08:00
There are other ways of working around this problem, but they are beyond
the scope of this manual.
1997-04-02 03:19:30 +08:00
Furthermore, you'd better find out, at configure time, what are the C++
Standard libraries that the C++ compiler will link in by default, and
explicitly list them in the link command line. Hopefully, in the
future, libtool will be able to do this job by itself.
1997-04-02 03:21:43 +08:00
@node Troubleshooting
1997-04-02 03:19:30 +08:00
@chapter Troubleshooting
1998-05-18 19:03:32 +08:00
@cindex troubleshooting
@cindex problems, solving
@cindex solving problems
@cindex problems, blaming somebody else for
1997-04-02 03:19:30 +08:00
1997-06-11 02:21:04 +08:00
Libtool is under constant development, changing to remain up-to-date
with modern operating systems. If libtool doesn't work the way you
think it should on your platform, you should read this chapter to help
determine what the problem is, and how to resolve it.
1997-04-02 03:19:30 +08:00
@menu
1997-05-25 06:50:52 +08:00
* Libtool test suite:: Libtool's self-tests.
* Reporting bugs:: How to report problems with libtool.
1997-04-02 03:19:30 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node Libtool test suite
@section The libtool test suite
1998-05-18 19:03:32 +08:00
@cindex test suite
1997-04-02 03:19:30 +08:00
Libtool comes with its own set of programs that test its capabilities,
and report obvious bugs in the libtool program. These tests, too, are
constantly evolving, based on past problems with libtool, and known
deficiencies in other operating systems.
As described in the @file{INSTALL} file, you may run @kbd{make check}
after you have built libtool (possibly before you install it) in order
1997-06-11 02:21:04 +08:00
to make sure that it meets basic functional requirements.
1997-04-02 03:04:40 +08:00
1997-04-02 03:19:30 +08:00
@menu
1997-05-25 06:50:52 +08:00
* Test descriptions:: The contents of the test suite.
* When tests fail:: What to do when a test fails.
1997-04-02 03:19:30 +08:00
@end menu
1997-04-02 03:04:40 +08:00
1997-05-25 06:50:52 +08:00
@node Test descriptions
@subsection Description of test suite
1997-04-02 03:19:30 +08:00
Here is a list of the current programs in the test suite, and what they
test for:
1998-05-31 03:18:08 +08:00
@table @file
1998-12-19 06:23:51 +08:00
@item assign.test
@pindex assign.test
Checks whether we don't put break or continue on the same
line as an assignment in the libtool script.
1997-04-02 03:19:30 +08:00
@item demo-conf.test
@itemx demo-exec.test
@itemx demo-inst.test
@itemx demo-make.test
@itemx demo-unst.test
1997-06-06 05:43:58 +08:00
@pindex demo-conf.test
@pindex demo-exec.test
@pindex demo-inst.test
@pindex demo-make.test
@pindex demo-unst.test
1997-04-02 03:19:30 +08:00
These programs check to see that the @file{demo} subdirectory of the
libtool distribution can be configured, built, installed, and
uninstalled correctly.
1997-04-02 03:04:40 +08:00
1997-04-02 03:19:30 +08:00
The @file{demo} subdirectory contains a demonstration of a trivial
package that uses libtool.
1997-04-02 03:04:40 +08:00
1998-12-12 07:21:03 +08:00
@item mdemo-conf.test
@itemx mdemo-exec.test
@itemx mdemo-inst.test
@itemx mdemo-make.test
@itemx mdemo-unst.test
@pindex mdemo-conf.test
@pindex mdemo-exec.test
@pindex mdemo-inst.test
@pindex mdemo-make.test
@pindex mdemo-unst.test
These programs check to see that the @file{mdemo} subdirectory of the
libtool distribution can be configured, built, installed, and
uninstalled correctly.
The @file{mdemo} subdirectory contains a demonstration of a package that
uses libtool and the system independent dlopen wrapper @file{libltdl} to
load modules. The library @file{libltdl} provides an experimental
dlopen wrapper for various platforms (Linux, Solaris, HP/UX, Win32 etc.)
including support for dlpreopened modules (@pxref{Dlpreopening}).
1998-12-12 07:21:03 +08:00
NOTE: The tests @file{mdemo-exec.test} and @file{mdemo-inst.test} are
known to fail on platforms that do not fully support inter-library
dependencies. We'd appreciate your help in porting the recently
introduced inter-library dependencies code to various platforms, even
some very common platforms haven't been updated yet (@pxref{Porting
inter-library dependencies}).
@item cdemo-conf.test
@itemx cdemo-exec.test
@itemx cdemo-make.test
@itemx cdemo-static.test
@itemx cdemo-shared.test
@pindex cdemo-conf.test
@pindex cdemo-exec.test
@pindex cdemo-make.test
@pindex cdemo-static.test
These programs check to see that the @file{cdemo} subdirectory of the
libtool distribution can be configured and built correctly.
The @file{cdemo} subdirectory contains a demonstration of libtool
convenience libraries, a mechanism that allows build-time static
libraries to be created, in a way that their components can be later
linked into programs or other libraries, even shared ones.
The tests @file{cdemo-make.test} and @file{cdemo-exec.test} are executed
three times, under three different libtool configurations:
@file{cdemo-conf.test} configures @file{cdemo/libtool} to build both
static and shared libraries, @file{cdemo-static.test} builds only static
libraries (@samp{--disable-shared}), and @file{cdemo-shared.test} builds
only shared libraries (@samp{--disable-static}).
1997-04-02 03:19:30 +08:00
@item hardcode.test
1997-06-06 05:43:58 +08:00
@pindex hardcode.test
1997-04-02 03:19:30 +08:00
On all systems with shared libraries, the location of the library can be
encoded in executables that are linked against it @pxref{Linking
1997-05-25 06:50:52 +08:00
executables}. This test checks the conditions under which your system
1997-04-02 03:19:30 +08:00
linker hardcodes the library location, and guarantees that they
correspond to libtool's own notion of how your linker behaves.
@item link.test
1997-06-06 05:43:58 +08:00
@pindex link.test
1997-04-02 03:19:30 +08:00
This test guarantees that linking directly against a non-libtool static
library works properly.
@item link-2.test
1997-06-06 05:43:58 +08:00
@pindex link-2.test
1997-04-02 03:19:30 +08:00
This test makes sure that files ending in @samp{.lo} are never linked
directly into a program file.
1998-12-19 06:23:51 +08:00
@item nomode.test
@pindex nomode.test
Check whether we can actually get help for libtool.
@item quote.test
@pindex quote.test
This program checks libtool's metacharacter quoting.
@item sh.test
@pindex sh.test
Checks whether a `test' command was forgotton in libtool.
1997-04-02 03:19:30 +08:00
@item suffix.test
1997-06-06 05:43:58 +08:00
@pindex suffix.test
1997-04-02 03:19:30 +08:00
When other programming languages are used with libtool (@pxref{Other
1997-05-25 06:50:52 +08:00
languages}), the source files may end in suffixes other than @samp{.c}.
1997-04-02 03:19:30 +08:00
This test validates that libtool can handle suffixes for all the file
types that it supports, and that it fails when the suffix is invalid.
@end table
1997-05-25 06:50:52 +08:00
@node When tests fail
@subsection When tests fail
1998-05-18 19:03:32 +08:00
@cindex failed tests
@cindex tests, failed
1997-04-02 03:19:30 +08:00
Each of the above tests are designed to produce no output when they are
run via @kbd{make check}. The exit status of each program tells the
1997-06-11 02:21:04 +08:00
@file{Makefile} whether or not the test succeeded.
1997-04-02 03:19:30 +08:00
If a test fails, it means that there is either a programming error in
1997-06-11 02:21:04 +08:00
libtool, or in the test program itself.
1997-04-02 03:19:30 +08:00
To investigate a particular test, you may run it directly, as you would
a normal program. When the test is invoked in this way, it produces
output which may be useful in determining what the problem is.
Another way to have the test programs produce output is to set the
@var{VERBOSE} environment variable to @samp{yes} before running them.
For example, @kbd{env VERBOSE=yes make check} runs all the tests, and
has each of them display debugging information.
1997-05-25 06:50:52 +08:00
@node Reporting bugs
@section Reporting bugs
1998-05-18 19:03:32 +08:00
@cindex bug reports
@cindex reporting bugs
@cindex problem reports
1997-04-02 03:19:30 +08:00
If you think you have discovered a bug in libtool, you should think
twice: the libtool maintainer is notorious for passing the buck (or
1997-06-11 02:21:04 +08:00
maybe that should be ``passing the bug''). Libtool was invented to fix
known deficiencies in shared library implementations, so, in a way, most
of the bugs in libtool are actually bugs in other operating systems.
1997-04-02 03:19:30 +08:00
However, the libtool maintainer would definitely be happy to add support
for somebody else's buggy operating system. [I wish there was a good
1998-04-15 00:29:20 +08:00
way to do winking smiley-faces in Texinfo.]
1997-04-02 03:19:30 +08:00
Genuine bugs in libtool include problems with shell script portability,
documentation errors, and failures in the test suite (@pxref{Libtool
1997-05-25 06:50:52 +08:00
test suite}).
1997-04-02 03:19:30 +08:00
First, check the documentation and help screens to make sure that the
behaviour you think is a problem is not already mentioned as a feature.
1997-06-11 02:21:04 +08:00
Then, you should read the Emacs guide to reporting bugs (@pxref{Bugs, ,
Reporting Bugs, emacs, The Emacs Manual}). Some of the details
1997-06-12 01:13:23 +08:00
listed there are specific to Emacs, but the principle behind them is a
1997-04-02 03:19:30 +08:00
general one.
Finally, send a bug report to @value{BUGADDR} with any appropriate
1997-05-25 06:50:52 +08:00
@emph{facts}, such as test suite output (@pxref{When tests fail}), all
1997-04-02 03:19:30 +08:00
the details needed to reproduce the bug, and a brief description of why
you think the behaviour is a bug. Be sure to include the word
1997-04-13 03:34:54 +08:00
``libtool'' in the subject line, as well as the version number you are
using (which can be found by typing @kbd{ltconfig --version}).
1997-04-02 03:04:40 +08:00
1997-04-02 03:21:43 +08:00
@node Maintaining
1997-07-26 01:11:35 +08:00
@chapter Maintenance notes for libtool
1997-04-02 03:04:40 +08:00
This chapter contains information that the libtool maintainer finds
important. It will be of no use to you unless you are considering
porting libtool to new systems, or writing your own libtool.
@menu
1997-05-25 06:50:52 +08:00
* New ports:: How to port libtool to new systems.
* Tested platforms:: When libtool was last tested.
* Platform quirks:: Information about different library systems.
* libtool script contents:: Configuration information that libtool uses.
1998-04-20 03:29:28 +08:00
* Cheap tricks:: Making libtool maintainership easier.
1997-04-02 03:04:40 +08:00
@end menu
1997-05-25 06:50:52 +08:00
@node New ports
@section Porting libtool to new systems
1997-04-02 03:04:40 +08:00
1998-04-27 23:10:35 +08:00
Before you embark on porting libtool to an unsupported system, it is
worthwhile to send e-mail to @value{BUGADDR}, to make sure that you are
not duplicating existing work.
If you find that any porting documentation is missing, please complain!
Complaints with patches and improvements to the documentation, or to
libtool itself, are more than welcome.
@menu
* Information sources:: Where to find relevant documentation
* Porting inter-library dependencies:: Implementation details explained
@end menu
@node Information sources
@subsection Information sources
1998-04-27 23:10:35 +08:00
Once it is clear that a new port is necessary, you'll generally need the
following information:
1997-04-02 03:04:40 +08:00
@table @asis
1998-04-27 23:10:35 +08:00
@item canonical system name
You need the output of @code{config.guess} for this system, so that you
can make changes to the libtool configuration process without affecting
other systems.
1998-05-31 03:18:08 +08:00
@item man pages for @code{ld} and @code{cc}
1997-04-02 03:04:40 +08:00
These generally describe what flags are used to generate PIC, to create
shared libraries, and to link against only static libraries. You may
need to follow some cross references to find the information that is
required.
1998-05-31 03:18:08 +08:00
@item man pages for @code{ld.so}, @code{rtld}, or equivalent
1997-04-25 01:51:39 +08:00
These are a valuable resource for understanding how shared libraries are
loaded on the system.
1997-04-02 03:04:40 +08:00
1998-05-31 03:18:08 +08:00
@item man page for @code{ldconfig}, or equivalent
1997-04-02 03:04:40 +08:00
This page usually describes how to install shared libraries.
1997-06-11 02:21:04 +08:00
@item output from @kbd{ls -l /lib /usr/lib}
1997-04-02 03:04:40 +08:00
This shows the naming convention for shared libraries on the system,
including which names should be symbolic links.
@item any additional documentation
Some systems have special documentation on how to build and install
shared libraries.
@end table
1998-05-18 19:03:32 +08:00
If you know how to program the Bourne shell, then you can complete the
1998-04-27 23:10:35 +08:00
port yourself; otherwise, you'll have to find somebody with the relevant
skills who will do the work. People on the libtool mailing list are
usually willing to volunteer to help you with new ports, so you can send
the information to them.
To do the port yourself, you'll definitely need to modify the
@code{ltconfig} script in order to make platform-specific changes to the
configuration process. You should search the script for the
@code{PORTME} keyword, which will give you some hints on what you'll
need to change. In general, all that is involved is modifying the
appropriate configuration variables (@pxref{libtool script contents}).
Your best bet is to find an already-supported system that is similar to
yours, and make your changes based on that. In some cases, however,
your system will differ significantly from every other supported system,
and it may be necessary to add new configuration variables, and modify
the @code{ltmain.sh} script accordingly. Be sure to write to the
mailing list before you make changes to @code{ltmain.sh}, since they may
have advice on the most effective way of accomplishing what you want.
@node Porting inter-library dependencies
@subsection Porting inter-library dependencies support
@cindex inter-library dependency
1998-12-22 01:30:48 +08:00
@vindex deplibs_check_method
Since version 1.2c, libtool has re-introduced the ability to do
inter-library dependency on some platforms, thanks to a patch by Toshio
Kuratomi @email{badger@@prtr-13.ucsc.edu}. Here's a shortened version
of the message that contained his patch:
The basic architecture is this: in @file{ltconfig.in}, the person who
1998-12-24 01:30:12 +08:00
writes libtool makes sure @samp{$deplibs}, or @samp{$compile_dependencylibs}
are included in @samp{$archive_cmds} somewhere and also sets the
@samp{$deplibs_check_method}, and maybe @samp{$file_magic_command} when
@samp{deplibs_check_method} is file_magic.
@samp{deplibs_check_method} can be one of five things:
@table @samp
@item file_magic [@var{regex}]
@vindex file_magic
1998-12-24 01:30:12 +08:00
@vindex file_magic_command
looks in the library link path for libraries that have the right
1998-12-24 01:30:12 +08:00
libname. Then it runs @samp{$file_magic_command} on the library and checks
for a match against [regex] using expr. I currently have linux-elf looking
for the string: "ELF [0-9][0-9]*-bit [LM]SB shared object" on the output of
@samp{file}, and some of the win32 ports looking for the string: "file format
pei*-i386.*architecture: i386" on the output of @samp{objdump -f}.
This is option that works best I think.
@item file_regex
@vindex file_regex
will look for a filename in the link path. It doesn't take an argument
because I use the @samp{libname_spec} and @samp{library_names_spec}
variables to create the string to look for. I don't like it because
symlinks and random files can make it give false positives.
@item test_compile
@vindex test_compile
handles @samp{-L} correctly, I hope. It also takes the names of it's
libraries from libname_spec instead of a hardcoded lib`expr $a_deplib :
'-l/(.*/)'`.so line.
@item pass_all
@vindex pass_all
will pass everything without any checking. I put it in because osf3&4
appear to be treated that way right now... It might be wise to perform
checks here to see if the libraries exist on the system, but I don't
know how osf3&4 handle that, so I thought it would be better just to do
it the way the current code does.
@item none
@vindex none
It causes deplibs to be reassigned deplibs="". That way
@samp{archive_cmds} can contain deplibs on all platforms, but not have
deplibs used unless needed.
@item unkwnon
@vindex unknown
is the default for all systems unless overridden in @file{ltconfig.in}.
It is the same as @samp{none}, but it documents that we really don't
know what the correct value should be, and we welcome patches that
improve it.
@end table
Then in @file{ltmain.in} we have the real workhorse: a litle
initialization and postprocessing (to setup/release variables for use
with eval echo libname_spec etc.) and a case statement that decides
which method is being used. This is the real code... I wish I could
condense it a little more, but I don't think I can without function
calls. I've mostly optimized it (moved things out of loops, etc) but
there is probably some fat left. I thought I should stop while I was
ahead, work on whatever bugs you discover, etc before thinking about
more than obvious optimizations.
1998-04-27 23:10:35 +08:00
1997-05-25 06:50:52 +08:00
@node Tested platforms
@section Tested platforms
1997-04-02 03:18:28 +08:00
1997-04-02 03:21:43 +08:00
This table describes when libtool was last known to be tested on
platforms where it claims to support shared libraries:
1997-04-02 03:18:28 +08:00
@example
1998-02-12 13:45:15 +08:00
@include PLATFORMS
1997-04-02 03:18:28 +08:00
@end example
Note: The vendor-distributed HP-UX @code{sed}(1) programs are horribly
broken, and cannot handle libtool's requirements, so users may report
unusual problems. There is no workaround except to install a working
@code{sed} (such as GNU @code{sed}) on these systems.
Note: The vendor-distributed NCR MP-RAS @code{cc} programs emits
copyright on standard error that confuse tests on size of
@file{conftest.err}. The workaround is to specify @code{CC}
when run @code{configure} with @kbd{CC='cc -Hnocopyr'}.
1997-05-25 06:50:52 +08:00
@node Platform quirks
@section Platform quirks
1997-04-02 03:04:40 +08:00
This section is dedicated to the sanity of the libtool maintainer. It
describes the programs that libtool uses, how they vary from system to
system, and how to test for them.
1998-05-31 03:18:08 +08:00
Because libtool is a shell script, it can be difficult to understand
just by reading it from top to bottom. This section helps show why
libtool does things a certain way. Combined with the scripts
1998-03-20 15:58:42 +08:00
themselves, you should have a better sense of how to improve libtool, or
write your own.
1997-04-02 03:04:40 +08:00
@menu
1998-02-06 15:36:38 +08:00
* References:: Finding more information.
1997-04-02 03:04:40 +08:00
* Compilers:: Creating object files from source files.
1997-05-25 06:50:52 +08:00
* Reloadable objects:: Binding object files together.
1997-04-02 03:04:40 +08:00
* Archivers:: Programs that create static archives.
@end menu
1998-02-06 15:36:38 +08:00
@node References
@subsection References
The following is a list of valuable documentation references:
@itemize @bullet
@item
1998-04-20 03:29:28 +08:00
SGI's IRIX Manual Pages, which can be found at
1998-02-06 15:36:38 +08:00
@url{http://techpubs.sgi.com/cgi-bin/infosrch.cgi?cmd=browse&db=man}.
@item
Sun's free service area
(@url{http://www.sun.com/service/online/free.html}) and documentation
server (@url{http://docs.sun.com/}).
@end itemize
1997-04-02 03:21:43 +08:00
@node Compilers
1997-04-02 03:04:40 +08:00
@subsection Compilers
The only compiler characteristics that affect libtool are the flags
needed (if any) to generate PIC objects. In general, if a C compiler
1997-06-11 02:21:04 +08:00
supports certain PIC flags, then any derivative compilers support the
same flags. Until there are some noteworthy exceptions to this rule,
this section will document only C compilers.
1997-04-02 03:04:40 +08:00
The following C compilers have standard command line options, regardless
of the platform:
1997-06-11 02:21:04 +08:00
@table @code
1997-04-02 03:04:40 +08:00
@item gcc
This is the GNU C compiler, which is also the system compiler for many
1998-05-31 03:18:08 +08:00
free operating systems (FreeBSD, GNU/Hurd, GNU/Linux, Lites, NetBSD, and
1997-04-02 03:04:40 +08:00
OpenBSD, to name a few).
The @samp{-fpic} or @samp{-fPIC} flags can be used to generate
position-independent code. @samp{-fPIC} is guaranteed to generate
working code, but the code is slower on m68k, m88k, and Sparc chips.
However, using @samp{-fpic} on those chips imposes arbitrary size limits
on the shared libraries.
@end table
The rest of this subsection lists compilers by the operating system that
they are bundled with:
@c FIXME these should all be better-documented
@table @code
@item aix3*
1997-06-11 02:21:04 +08:00
@itemx aix4*
1997-04-02 03:04:40 +08:00
AIX compilers have no PIC flags, since AIX has been ported only to
PowerPC and RS/6000 chips. @footnote{All code compiled for the PowerPC
and RS/6000 chips (@code{powerpc-*-*}, @code{powerpcle-*-*}, and
@code{rs6000-*-*}) is position-independent, regardless of the operating
system or compiler suite. So, ``regular objects'' can be used to build
shared libraries on these systems and no special PIC compiler flags are
required.}
@item hpux10*
Use @samp{+Z} to generate PIC.
@item osf3*
Digital/UNIX 3.x does not have PIC flags, at least not on the PowerPC
platform.
@item solaris2*
Use @samp{-KPIC} to generate PIC.
@item sunos4*
Use @samp{-PIC} to generate PIC.
@end table
1997-05-25 06:50:52 +08:00
@node Reloadable objects
@subsection Reloadable objects
1997-04-02 03:04:40 +08:00
On all known systems, a reloadable object can be created by running
@kbd{ld -r -o @var{output}.o @var{input1}.o @var{input2}.o}. This
reloadable object may be treated as exactly equivalent to other
objects.
1997-04-02 03:21:43 +08:00
@node Archivers
1997-04-02 03:04:40 +08:00
@subsection Archivers
On all known systems, building a static library can be accomplished by
running @kbd{ar cru lib@var{name}.a @var{obj1}.o @var{obj2}.o @dots{}},
1997-06-11 02:21:04 +08:00
where the @samp{.a} file is the output library, and each @samp{.o} file is an
1997-04-02 03:04:40 +08:00
object file.
1997-06-11 02:21:04 +08:00
On all known systems, if there is a program named @code{ranlib}, then it
1997-04-02 03:04:40 +08:00
must be used to ``bless'' the created library before linking against it,
1998-04-15 00:29:20 +08:00
with the @kbd{ranlib lib@var{name}.a} command. Some systems, like Irix,
use the @code{ar ts} command, instead.
1997-04-02 03:04:40 +08:00
1997-05-25 06:50:52 +08:00
@node libtool script contents
1997-06-11 02:21:04 +08:00
@section @code{libtool} script contents
1998-05-18 19:03:32 +08:00
@cindex implementation of libtool
1997-06-06 05:43:58 +08:00
@cindex libtool implementation
1997-04-02 03:04:40 +08:00
1997-06-11 02:21:04 +08:00
The @code{libtool} script is generated by @code{ltconfig}
1998-04-20 03:29:28 +08:00
(@pxref{Configuring}). From libtool version 0.7 to 1.0, this script
simply set shell variables, then sourced the libtool backend,
@code{ltmain.sh}. @code{ltconfig} from libtool version 1.1 and later
inlines the contents of @code{ltmain.sh} into the generated
@code{libtool}, which improves performance on many systems.
1997-04-02 03:04:40 +08:00
1998-04-20 03:29:28 +08:00
Here is a listing of each of the configuration variables, and how they
are used within @code{ltmain.sh}:
1997-04-02 03:04:40 +08:00
1997-06-06 05:43:58 +08:00
@defvar AR
The name of the system library archiver.
@end defvar
1997-07-13 05:39:00 +08:00
@defvar CC
The name of the C compiler used to configure libtool.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar LD
1997-04-02 03:04:40 +08:00
The name of the linker that libtool should use internally for reloadable
linking and possibly shared libraries.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar LTCONFIG_VERSION
1997-06-11 02:21:04 +08:00
This is set to the version number of the @code{ltconfig} script, to
1997-04-02 03:04:40 +08:00
prevent mismatches between the configuration information in
1997-06-11 02:21:04 +08:00
@code{libtool}, and how that information is used in @code{ltmain.sh}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-07-13 05:39:00 +08:00
@defvar NM
The name of a BSD-compatible @code{nm} program, which produces listings
of global symbols in one the following formats:
@example
@var{address} C @var{global-variable-name}
@var{address} D @var{global-variable-name}
@var{address} T @var{global-function-name}
@end example
@end defvar
1997-04-02 03:53:01 +08:00
@defvar RANLIB
1997-04-02 03:04:40 +08:00
Set to the name of the ranlib program, if any.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-06-06 05:43:58 +08:00
@defvar allow_undefined_flag
The flag that is used by @samp{archive_cmds} in order to declare that
there will be unresolved symbols in the resulting shared library.
Empty, if no such flag is required. Set to @samp{unsupported} if there
is no way to generate a shared library with references to symbols that
aren't defined in that library.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar archive_cmds
1998-12-19 06:23:51 +08:00
@defvarx archive_sym_cmds
1997-04-02 03:53:01 +08:00
@defvarx old_archive_cmds
1997-04-02 03:04:40 +08:00
Commands used to create shared and static libraries, respectively.
1999-01-12 00:29:45 +08:00
@samp{archive_sym_cmds} is used when -export-symbols was defined.
@end defvar
@defvar old_archive_from_new_cmds
If the shared library depends on a static library,
@samp{old_archive_from_new_cmds} contains the commands used to create that
static library. If this variable is not empty, @samp{old_archive_cmds} is
not used.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar build_libtool_libs
1997-04-02 03:04:40 +08:00
Whether libtool should build shared libraries on this system. Set to
@samp{yes} or @samp{no}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar build_old_libs
1997-04-02 03:04:40 +08:00
Whether libtool should build static libraries on this system. Set to
@samp{yes} or @samp{no}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1998-02-12 13:45:15 +08:00
@defvar echo
1998-05-31 03:18:08 +08:00
An @code{echo} program which does not interpret backslashes as an
1998-02-12 13:45:15 +08:00
escape character.
@end defvar
1997-07-25 03:00:16 +08:00
@defvar export_dynamic_flag_spec
1997-06-06 05:43:58 +08:00
Compiler link flag that allows a dlopened shared library to reference
symbols that are defined in the program.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar finish_cmds
1997-06-06 05:43:58 +08:00
Commands to tell the dynamic linker how to find shared libraries in a
1997-04-25 01:51:39 +08:00
specific directory.
1997-04-02 03:53:01 +08:00
@end defvar
1998-02-12 13:45:15 +08:00
@defvar finish_eval
Same as @var{finish_cmds}, except the commands are not displayed.
@end defvar
@defvar global_symbol_pipe
1997-07-13 05:39:00 +08:00
A pipeline that takes the output of @var{NM}, and produces a listing of
raw symbols followed by their C names. For example:
@example
1998-02-12 13:45:15 +08:00
$ @kbd{$NM | $global_symbol_pipe}
1997-07-13 05:39:00 +08:00
@var{symbol1} @var{C-symbol1}
@var{symbol2} @var{C-symbol2}
@var{symbol3} @var{C-symbol3}
@dots{}
$
@end example
@end defvar
1997-04-02 03:53:01 +08:00
@defvar hardcode_action
1997-04-25 01:51:39 +08:00
Either @samp{immediate} or @samp{relink}, depending on whether shared
1997-04-02 03:53:01 +08:00
library paths can be hardcoded into executables before they are installed,
or if they need to be relinked.
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar hardcode_direct
1997-04-02 03:04:40 +08:00
Set to @samp{yes} or @samp{no}, depending on whether the linker
1997-04-02 03:53:01 +08:00
hardcodes directories if a library is directly specified on the command
line (such as @samp{@var{dir}/lib@var{name}.a}).
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar hardcode_libdir_flag_spec
Flag to hardcode a @var{libdir} variable into a binary, so that the
dynamic linker searches @var{libdir} for shared libraries at runtime.
@end defvar
1997-04-25 01:51:39 +08:00
@defvar hardcode_libdir_separator
If the compiler only accepts a single @var{hardcode_libdir_flag}, then
this variable contains the string that should separate multiple
arguments to that flag.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar hardcode_minus_L
1997-04-02 03:04:40 +08:00
Set to @samp{yes} or @samp{no}, depending on whether the linker
hardcodes directories specified by @samp{-L} flags into the resulting
executable.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar hardcode_shlibpath_var
Set to @samp{yes} or @samp{no}, depending on whether the linker
1997-06-11 02:21:04 +08:00
hardcodes directories by writing the contents of @samp{$shlibpath_var}
into the resulting executable. Set to @samp{unsupported} if directories
1997-04-25 01:51:39 +08:00
specified by @samp{$shlibpath_var} are searched at run time, but not at
link time.
1997-04-02 03:53:01 +08:00
@end defvar
@defvar host
@defvarx host_alias
1997-04-02 03:04:40 +08:00
For information purposes, set to the specified and canonical names of
the system that libtool was configured for.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1998-02-12 13:45:15 +08:00
@defvar libname_spec
The format of a library name prefix. On all Unix systems, static
libraries are called @samp{lib@var{name}.a}, but on some systems (such
as OS/2 or MS-DOS), the library is just called @samp{@var{name}.a}.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar library_names_spec
1997-06-11 02:21:04 +08:00
A list of shared library names. The first is the name of the file,
the rest are symbolic links to the file. The name in the list is
the file name that the linker finds when given @samp{-l@var{name}}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar link_static_flag
1997-04-02 03:04:40 +08:00
Linker flag (passed through the C compiler) used to prevent dynamic
linking.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1998-12-19 06:23:51 +08:00
@defvar need_lib_prefix
Whether libtool should automatically prefix module names with 'lib'.
Set to @samp{yes} or @samp{no}. By default, it is @samp{unknown}, which
means the same as @samp{yes}, but documents that we are not really sure
about it.
1998-12-19 06:23:51 +08:00
@end defvar
@defvar need_version
Whether versioning is required for libraries.
Set to @samp{yes} or @samp{no}. By default, it is @samp{unknown}, which
means the same as @samp{yes}, but documents that we are not really sure
about it.
1998-12-19 06:23:51 +08:00
@end defvar
1997-07-25 03:00:16 +08:00
@defvar no_builtin_flag
Compiler flag to disable builtin functions that conflict with declaring
external global symbols as @code{char}.
@end defvar
1998-02-12 13:45:15 +08:00
@defvar no_undefined_flag
The flag that is used by @samp{archive_cmds} in order to declare that
there will be no unresolved symbols in the resulting shared library.
Empty, if no such flag is required.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar pic_flag
1997-04-02 03:04:40 +08:00
Any additional compiler flags for building library object files.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar postinstall_cmds
@defvarx old_postinstall_cmds
1997-06-11 02:21:04 +08:00
Commands run after installing a shared or static library, respectively.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-02 03:53:01 +08:00
@defvar reload_cmds
@defvarx reload_flag
1997-04-02 03:04:40 +08:00
Commands to create a reloadable object.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-04-25 01:51:39 +08:00
@defvar runpath_var
The environment variable that tells the linker which directories to
hardcode in the resulting executable.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar shlibpath_var
1997-04-02 03:04:40 +08:00
The environment variable that tells the dynamic linker where to find
shared libraries.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1997-06-06 05:43:58 +08:00
@defvar soname_spec
The name coded into shared libraries, if different from the real name of
the file.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar version_type
1997-04-02 03:04:40 +08:00
The library version numbering type. One of @samp{libtool},
@samp{linux}, @samp{osf}, @samp{sunos}, or @samp{none}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1998-07-01 16:12:49 +08:00
@defvar whole_archive_flag_spec
Compiler flag to generate shared objects from convenience archives.
@end defvar
1997-04-02 03:53:01 +08:00
@defvar wl
1997-04-02 03:04:40 +08:00
The C compiler flag that allows libtool to pass a flag directly to the
1998-05-31 03:18:08 +08:00
linker. Used as: @code{$@{wl@}@var{some-flag}}.
1997-04-02 03:53:01 +08:00
@end defvar
1997-04-02 03:04:40 +08:00
1998-02-12 13:45:15 +08:00
Variables ending in @samp{_cmds} or @samp{_eval} contain a
semicolon-separated list of commands that are @code{eval}ed one after
another. If any of the commands return a nonzero exit status, libtool
generally exits with an error message.
1997-04-02 02:29:23 +08:00
1997-06-11 02:21:04 +08:00
Variables ending in @samp{_spec} are @code{eval}ed before being used by
1997-04-02 03:53:01 +08:00
libtool.
1998-04-20 03:29:28 +08:00
@node Cheap tricks
@section Cheap tricks
Here are a few tricks that you can use in order to make maintainership
easier:
@itemize @bullet
@item
When people report bugs, ask them to use the @samp{--config},
@samp{--debug}, or @samp{--features} flags, if you think they will help
you. These flags are there to help you get information directly, rather
than having to trust second-hand observation.
@item
Rather than reconfiguring libtool every time I make a change to
@code{ltconfig.in} or @code{ltmain.in}, I keep a permanent
@code{libtool} script in my @var{PATH}, which sources @code{ltmain.in}
directly.
The following steps describe how to create such a script, where
@code{/home/src/libtool} is the directory containing the libtool source
1998-05-18 19:03:32 +08:00
tree, @code{/home/src/libtool/libtool} is a libtool script that has been
configured for your platform, and @code{~/bin} is a directory in your
@var{PATH}:
1998-04-20 03:29:28 +08:00
@example
1998-05-18 19:03:32 +08:00
trick$ @kbd{cd ~/bin}
trick$ @kbd{sed '/^# ltmain\.sh/q' /home/src/libtool/libtool > libtool}
trick$ @kbd{cat >> libtool
1998-04-20 03:29:28 +08:00
LTCONFIG_VERSION="@@VERSION@@"
1998-05-18 19:03:32 +08:00
. /home/src/libtool/ltmain.in
^D}
trick$ @kbd{chmod +x libtool}
trick$ @kbd{libtool --version}
ltmain.sh (GNU @@PACKAGE@@) @@VERSION@@
1998-04-20 03:29:28 +08:00
trick$
@end example
@end itemize
1998-05-18 19:03:32 +08:00
The output of the final @samp{libtool --version} command shows that the
@code{ltmain.in} script is being used directly. Now, modify
@code{~/bin/libtool} or @code{/home/src/libtool/ltmain.in} directly in
order to test new changes without having to rerun @code{ltconfig}.
1997-06-11 02:21:04 +08:00
@page
1997-04-02 03:21:43 +08:00
@node Index
1997-04-02 02:29:23 +08:00
@unnumbered Index
@printindex cp
@c summarycontents
@contents
@bye