GNU Libtool

From Wikipedia, the free encyclopedia
GNU Libtool
Libtool.jpg
Developer(s)GNU Project[1]
Initial releaseJuly 9, 1997; 24 years ago (1997-07-09)
Stable release2.4.6 (February 15, 2015; 6 years ago (2015-02-15)[2])
Repository
Operating systemCross-platform
TypeLibrary
LicenseGPLv2
Websitegnu.org/s/libtool

GNU Libtool in computer programming is a software development tool that is part of the GNU build system. It is a shell script.[3] It was created to address the software portability problem when compiling shared libraries from source code. It hides the differences between computing platforms for the commands which compile shared libraries.[4] It provides a commandline interface that is identical across platforms and it executes the platform's native commands.

Rationale[]

Different operating systems handle shared libraries differently. Some platforms do not use shared libraries at all. It can be difficult to make a software program portable: the C compiler differs from system to system; certain library functions are missing on some systems; header files may have different names. One way to handle this is to write conditional code, with code blocks selected by means of preprocessor directives (#ifdef); but because of the wide variety of build environments this approach quickly becomes unmanageable. The GNU build system is designed to address this problem more manageably.

Libtool helps manage the creation of static and dynamic libraries on various Unix-like operating systems. Libtool accomplishes this by abstracting the library-creation process, hiding differences between various systems (e.g. Linux systems vs. Solaris).

GNU Libtool is designed to simplify the process of compiling a computer program on a new system, by "encapsulating both the platform-specific dependencies, and the user interface, in a single script". [5] When porting a program to a new system, Libtool is designed so the porter need not read low-level documentation for the shared libraries to be built, rather just run a configure script (or equivalent). [5]

Use[]

Libtool is used by Autoconf and Automake, two other portability tools in the GNU build system. It can also be used directly. [6]

Clones and derivatives[]

Since GNU Libtool was released, other free software projects have created drop-in replacements under different software licenses.[7]

See also[]

References[]

  1. ^ "GNU". Retrieved 25 June 2012.
  2. ^ Gary V. Vaughan (15 February 2015). "GNU Libtool - News: libtool-2.4.6 released [stable]". GNU Libtool - News. savannah.gnu.org.
  3. ^ "A postmortem analysis of other implementations". The GNU Libtool manual. The GNU project. 2015-02-15. Retrieved 2021-02-02.
  4. ^ "Introduction". The GNU Libtool manual. The GNU project. 2015-02-15. Retrieved 2021-02-02.
  5. ^ a b Libtool Manual
  6. ^ "Writing Makefile rules for libtool". The GNU Libtool manual. The GNU project. 2015-02-15. Retrieved 2021-02-02.
  7. ^ BSD-licensed libtool.

External links[]


Retrieved from ""