NOMAN no longer true.
Failed to mention -assert option.
This commit is contained in:
parent
27bc255b86
commit
a12fe8bc68
@ -1,9 +1,8 @@
|
|||||||
# $Id: Makefile,v 1.5 1993/10/16 21:52:27 pk Exp $
|
# $Id: Makefile,v 1.6 1993/10/18 23:34:29 pk Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
PROG= ld
|
PROG= ld
|
||||||
SRCS= ld.c symbol.c lib.c shlib.c warnings.c etc.c rrs.c xbits.c md.c
|
SRCS= ld.c symbol.c lib.c shlib.c warnings.c etc.c rrs.c xbits.c md.c
|
||||||
NOMAN= noman
|
|
||||||
CFLAGS += -g -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE)
|
CFLAGS += -g -I$(.CURDIR) -I$(.CURDIR)/$(MACHINE)
|
||||||
|
|
||||||
.PATH: $(.CURDIR)/$(MACHINE)
|
.PATH: $(.CURDIR)/$(MACHINE)
|
||||||
|
@ -1,3 +1,34 @@
|
|||||||
|
.\"
|
||||||
|
.\" Copyright (c) 1993 Paul Kranenburg
|
||||||
|
.\" All rights reserved.
|
||||||
|
.\"
|
||||||
|
.\" Redistribution and use in source and binary forms, with or without
|
||||||
|
.\" modification, are permitted provided that the following conditions
|
||||||
|
.\" are met:
|
||||||
|
.\" 1. Redistributions of source code must retain the above copyright
|
||||||
|
.\" notice, this list of conditions and the following disclaimer.
|
||||||
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
.\" notice, this list of conditions and the following disclaimer in the
|
||||||
|
.\" documentation and/or other materials provided with the distribution.
|
||||||
|
.\" 3. All advertising materials mentioning features or use of this software
|
||||||
|
.\" must display the following acknowledgement:
|
||||||
|
.\" This product includes software developed by Paul Kranenburg.
|
||||||
|
.\" 3. The name of the author may not be used to endorse or promote products
|
||||||
|
.\" derived from this software withough specific prior written permission
|
||||||
|
.\"
|
||||||
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||||
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||||
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||||
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
.\"
|
||||||
|
.\" $Id: ld.1,v 1.2 1993/10/18 23:34:31 pk Exp $
|
||||||
|
.\"
|
||||||
.Dd October 14, 1993
|
.Dd October 14, 1993
|
||||||
.Dt LD 8
|
.Dt LD 8
|
||||||
.Os NetBSD 0.9
|
.Os NetBSD 0.9
|
||||||
@ -38,6 +69,11 @@ The options are as follows:
|
|||||||
.It Fl A Ar symbol-file
|
.It Fl A Ar symbol-file
|
||||||
The the symbol-file is taken as a base for link-editing the object files
|
The the symbol-file is taken as a base for link-editing the object files
|
||||||
on the command line.
|
on the command line.
|
||||||
|
.It \-assert Ar keyword
|
||||||
|
This option has currently no effect. It is here for compatibility with
|
||||||
|
SunOS ld. All conditions which would cause a Sun assertion to fail will
|
||||||
|
currently always cause error or warning messages from
|
||||||
|
.Nm ld\&.
|
||||||
.It Fl B Ar dynamic
|
.It Fl B Ar dynamic
|
||||||
Specifies that linking against dynamic libraries can take place. If a library
|
Specifies that linking against dynamic libraries can take place. If a library
|
||||||
specifier of the form -lx appears on the command line,
|
specifier of the form -lx appears on the command line,
|
||||||
|
@ -1,3 +1,34 @@
|
|||||||
|
.\"
|
||||||
|
.\" Copyright (c) 1993 Paul Kranenburg
|
||||||
|
.\" All rights reserved.
|
||||||
|
.\"
|
||||||
|
.\" Redistribution and use in source and binary forms, with or without
|
||||||
|
.\" modification, are permitted provided that the following conditions
|
||||||
|
.\" are met:
|
||||||
|
.\" 1. Redistributions of source code must retain the above copyright
|
||||||
|
.\" notice, this list of conditions and the following disclaimer.
|
||||||
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
.\" notice, this list of conditions and the following disclaimer in the
|
||||||
|
.\" documentation and/or other materials provided with the distribution.
|
||||||
|
.\" 3. All advertising materials mentioning features or use of this software
|
||||||
|
.\" must display the following acknowledgement:
|
||||||
|
.\" This product includes software developed by Paul Kranenburg.
|
||||||
|
.\" 3. The name of the author may not be used to endorse or promote products
|
||||||
|
.\" derived from this software withough specific prior written permission
|
||||||
|
.\"
|
||||||
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||||
|
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||||
|
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||||
|
.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
.\"
|
||||||
|
.\" $Id: ld.1,v 1.2 1993/10/18 23:34:31 pk Exp $
|
||||||
|
.\"
|
||||||
.Dd October 14, 1993
|
.Dd October 14, 1993
|
||||||
.Dt LD 8
|
.Dt LD 8
|
||||||
.Os NetBSD 0.9
|
.Os NetBSD 0.9
|
||||||
@ -38,6 +69,11 @@ The options are as follows:
|
|||||||
.It Fl A Ar symbol-file
|
.It Fl A Ar symbol-file
|
||||||
The the symbol-file is taken as a base for link-editing the object files
|
The the symbol-file is taken as a base for link-editing the object files
|
||||||
on the command line.
|
on the command line.
|
||||||
|
.It \-assert Ar keyword
|
||||||
|
This option has currently no effect. It is here for compatibility with
|
||||||
|
SunOS ld. All conditions which would cause a Sun assertion to fail will
|
||||||
|
currently always cause error or warning messages from
|
||||||
|
.Nm ld\&.
|
||||||
.It Fl B Ar dynamic
|
.It Fl B Ar dynamic
|
||||||
Specifies that linking against dynamic libraries can take place. If a library
|
Specifies that linking against dynamic libraries can take place. If a library
|
||||||
specifier of the form -lx appears on the command line,
|
specifier of the form -lx appears on the command line,
|
||||||
|
Loading…
Reference in New Issue
Block a user