[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4. Invoking libtool

The libtool program has the following synopsis:

 
libtool [option]... [mode-arg]...

and accepts the following options:

`--config'
Display libtool configuration variables and exit.

`--debug'
Dump a trace of shell script execution to standard output. This produces a lot of output, so you may wish to pipe it to less (or more) or redirect to a file.

`-n'
`--dry-run'
Don't create, modify, or delete any files, just show what commands would be executed by libtool.

`--features'
Display basic configuration options. This provides a way for packages to determine whether shared or static libraries will be built.

`--finish'
Same as `--mode=finish'.

`--help'
Display a help message and exit. If `--mode=mode' is specified, then detailed help for mode is displayed.

`--mode=mode'
Use mode as the operation mode. By default, the operation mode is inferred from the mode-args.

If mode is specified, it must be one of the following:

`compile'
Compile a source file into a libtool object.

`execute'
Automatically set the library path so that another program can use uninstalled libtool-generated programs or libraries.

`finish'
Complete the installation of libtool libraries on the system.

`install'
Install libraries or executables.

`link'
Create a library or an executable.

`uninstall'
Delete installed libraries or executables.

`clean'
Delete uninstalled libraries or executables.

`--version'
Print libtool version information and exit.

The mode-args are a variable number of arguments, depending on the selected operation mode. In general, each mode-arg is interpreted by programs libtool invokes, rather than libtool itself.

4.1 Compile mode  Creating library object files.
4.2 Link mode  Generating executables and libraries.
4.3 Execute mode  Debugging libtool-generated programs.
4.4 Install mode  Making libraries and executables public.
4.5 Finish mode  Completing a library installation.
4.6 Uninstall mode  Removing installed executables and libraries.
4.7 Clean mode  Removing uninstalled executables and libraries.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.1 Compile mode

For compile mode, 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 `-c' compiler flag so that only an object file is created.

Libtool determines the name of the output file by removing the directory component from the source file name, then substituting the source code suffix (e.g. `.c' for C source code) with the library object suffix, `.lo'.

If shared libraries are being built, any necessary PIC generation flags are substituted into the compilation command. You can pass compiler and linker specific flags using `-Wc,flag' and `-Xcompiler flag' or `-Wl,flag' and `-Xlinker flag', respectively.

If the `-static' option is given, then a `.o' file is built, even if libtool was configured with `--disable-static'.

Note that the `-o' option is now fully supported. It is emulated on 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
 
libtool gcc -c foo/x.c -o foo/x.lo
will do what you expect.

Note, however, that, if the compiler does not support `-c' and `-o', it is impossible to compile `foo/x.c' without overwriting an existing `./x.o'. Therefore, if you do have a source file `./x.c', make sure you introduce dependencies in your `Makefile' to make sure `./x.o' (or `./x.lo') is re-created after any sub-directory's `x.lo':
 
x.o x.lo: foo/x.lo bar/x.lo
This will also ensure that make won't try to use a temporarily corrupted `x.o' to create a program or library. It may cause needless recompilation on platforms that support `-c' and `-o' together, but it's the only way to make it safe for those that don't.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.2 Link mode

Link mode links together object files (including library objects) to form another library or to create an executable program.

mode-args consist of a command using the C compiler to create an output file (with the `-o' flag) from several object files.

The following components of mode-args are treated specially:

`-all-static'
If output-file is a program, then do not link it against any shared libraries at all. If output-file is a library, then only create a static library.

`-avoid-version'
Tries to avoid versioning (see section 6. Library interface versions) 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.

`-dlopen file'
Same as `-dlpreopen file', if native dlopening is not supported on the host platform (see section 9. Dlopened modules) or if the program is linked with `-static' or `-all-static'. Otherwise, no effect. If file is self libtool will make sure that the program can dlopen itself, either by enabling -export-dynamic or by falling back to `-dlpreopen self'.

`-dlpreopen file'
Link file into the output program, and add its symbols to lt_preloaded_symbols (see section 9.2 Dlpreopening). If file is self, the symbols of the program itself will be added to lt_preloaded_symbols. If file is force libtool will make sure that lt_preloaded_symbols is always defined, regardless of whether it's empty or not.

`-export-dynamic'
Allow symbols from output-file to be resolved with dlsym (see section 9. Dlopened modules).

`-export-symbols symfile'
Tells the linker to export only the symbols listed in symfile. The symbol file should end in `.sym' and must contain the name of one symbol per line. This option has no effect on some platforms. By default all symbols are exported.

`-export-symbols-regex regex'
Same as `-export-symbols', except that only symbols matching the regular expression regex are exported. By default all symbols are exported.

`-Llibdir'
Search libdir for required libraries that have already been installed.

`-lname'
output-file requires the installed library `libname'. This option is required even when output-file is not an executable.

`-module'
Creates a library that can be dlopened (see section 9. Dlopened modules). This option doesn't work for programs. 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 in your package.

`-no-fast-install'
Disable fast-install mode for the executable output-file. Useful if the program won't be necessarily installed.

`-no-install'
Link an executable output-file that can't be installed and therefore doesn't need a wrapper script. Useful if the program is only used in the build tree, e.g., for testing or generating other files.

`-no-undefined'
Declare that output-file does not depend on any other libraries. Some platforms cannot create shared libraries that depend on other libraries (see section 8. Inter-library dependencies).

`-o output-file'
Create output-file from the specified objects and libraries.

`-release release'
Specify that the library was generated by release 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 the `-version-info' flag instead (see section 6. Library interface versions).

`-rpath libdir'
If output-file is a library, it will eventually be installed in libdir. If output-file is a program, add libdir to the run-time path of the program.

`-R libdir'
If output-file is a program, add libdir to its run-time path. If output-file is a library, add -Rlibdir to its dependency_libs, so that, whenever the library is linked into a program, libdir will be added to its run-time path.

`-static'
If output-file is a program, then do not link it against any uninstalled shared libtool libraries. If output-file is a library, then only create a static library.

`-version-info current[:revision[:age]]'
If output-file is a libtool library, use interface version information current, revision, and age to build it (see section 6. Library interface versions). Do not use this flag to specify package release information, rather see the `-release' flag.

`-Wl,flag'
`-Xlinker flag'
Pass a linker specific flag directly to the linker.

If the output-file ends in `.la', then a libtool library is created, which must be built only from library objects (`.lo' files). The `-rpath' option is required. In the current implementation, libtool libraries may not depend on other uninstalled libtool libraries (see section 8. Inter-library dependencies).

If the output-file ends in `.a', then a standard library is created using ar and possibly ranlib.

If output-file ends in `.o' or `.lo', then a reloadable object file is created from the input files (generally using `ld -r'). This method is often called partial linking.

Otherwise, an executable program is created.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.3 Execute mode

For execute mode, the library path is automatically set, then a program is executed.

The first of the mode-args is treated as a program name, with the rest as arguments to that program.

The following components of mode-args are treated specially:

`-dlopen file'
Add the directory containing file to the library path.

This mode sets the library path environment variable according to any `-dlopen' flags.

If any of the 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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.4 Install mode

In install mode, libtool interprets mode-args as an installation command beginning with cp, or a BSD-compatible install program.

The rest of the mode-args are interpreted as arguments to that command.

The command is run, and any necessary unprivileged post-installation commands are also completed.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.5 Finish mode

Finish mode helps system administrators install libtool libraries so that they can be located and linked into user programs.

Each mode-arg is interpreted as the name of a library directory. Running this command may require superuser privileges, so the `--dry-run' option may be useful.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.6 Uninstall mode

Uninstall mode deletes installed libraries, executables and objects.

The first mode-arg is the name of the program to use to delete files (typically `/bin/rm').

The remaining mode-args are either flags for the deletion program (beginning with a `-'), or the names of files to delete.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.7 Clean mode

Clean mode deletes uninstalled libraries, executables, objects and libtool's temporary files associated with them.

The first mode-arg is the name of the program to use to delete files (typically `/bin/rm').

The remaining mode-args are either flags for the deletion program (beginning with a `-'), or the names of files to delete.


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

This document was generated by Dirk Vermeir on May, 8 2002 using texi2html