summaryrefslogtreecommitdiff
path: root/static/openbsd/man1/libtool.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 19:54:44 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-25 19:54:44 -0400
commita9157ce950dfe2fc30795d43b9d79b9d1bffc48b (patch)
tree9df484304b560466d145e662c1c254ff0e9ae0ba /static/openbsd/man1/libtool.1
parent160aa82b2d39c46ad33723d7d909cb4972efbb03 (diff)
docs: Added All OpenBSD Manuals
Diffstat (limited to 'static/openbsd/man1/libtool.1')
-rw-r--r--static/openbsd/man1/libtool.150
1 files changed, 50 insertions, 0 deletions
diff --git a/static/openbsd/man1/libtool.1 b/static/openbsd/man1/libtool.1
new file mode 100644
index 00000000..819de186
--- /dev/null
+++ b/static/openbsd/man1/libtool.1
@@ -0,0 +1,50 @@
+.\" $OpenBSD: libtool.1,v 1.3 2017/01/02 09:21:56 jmc Exp $
+.\"
+.\" Copyright (c) 2012 Marc Espie <espie@openbsd.org>
+.\"
+.\" Permission to use, copy, modify, and distribute this software for any
+.\" purpose with or without fee is hereby granted, provided that the above
+.\" copyright notice and this permission notice appear in all copies.
+.\"
+.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+.\"
+.Dd $Mdocdate: January 2 2017 $
+.Dt LIBTOOL 1
+.Os
+.Sh NAME
+.Nm libtool
+.Nd compile and link complex libraries
+.Sh DESCRIPTION
+.Nm
+is supposed to be a drop-in replacement for the eponymous GNU project.
+The following differences in behaviour with GNU Libtool are intentional:
+.Bl -bullet
+.It
+Relative
+.Fl L
+paths are put before absolute ones.
+This fixes many (but not all, unfortunately) issues when software
+links to libraries already installed instead of those just built because,
+for example,
+.Qq -L/usr/local/lib
+comes before
+.Qq -L../libfoo .
+.It
+Extra (duplicate)
+.Fl L
+and
+.Fl l
+items are stripped from the link command line.
+.It
+When both
+.Qq -lstdc++
+and
+.Qq -lestdc++
+are encountered in the link command line, only the latter is kept.
+.El