diff options
author | paul <paul@FreeBSD.org> | 1993-11-07 03:25:25 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1993-11-07 03:25:25 +0000 |
commit | 6de07adf6a20dd38ed359239a243199ef00b95ce (patch) | |
tree | 29555a3ad508225042df8e4901c4d7fa636a0694 /libexec/rtld-aout/Makefile | |
parent | 0d7b7c986daf263a4507dbf4ffb553fa05d64aa3 (diff) | |
download | FreeBSD-src-6de07adf6a20dd38ed359239a243199ef00b95ce.zip FreeBSD-src-6de07adf6a20dd38ed359239a243199ef00b95ce.tar.gz |
Added -lgcc_pic to LDFLAGS in rtld/Makefile
Diffstat (limited to 'libexec/rtld-aout/Makefile')
-rw-r--r-- | libexec/rtld-aout/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rtld-aout/Makefile b/libexec/rtld-aout/Makefile index ea02608..31283d7 100644 --- a/libexec/rtld-aout/Makefile +++ b/libexec/rtld-aout/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1993/10/27 00:55:24 pk Exp $ +# $Id: Makefile,v 1.1 1993/11/03 23:41:46 paul Exp $ PROG= ld.so SRCS= mdprologue.S rtld.c shlib.c etc.c md.c @@ -8,7 +8,7 @@ LDDIR?= $(.CURDIR)/.. PICFLAG=-fpic CFLAGS += -I$(LDDIR) -I$(.CURDIR) -I$(LDDIR)/$(MACHINE) -O $(PICFLAG) -DRTLD LDFLAGS = -Bshareable -Bsymbolic -assert nosymbolic -LIBS = -lc_pic +LIBS = -lc_pic -lgcc_pic BINDIR= /usr/libexec .PATH: $(LDDIR) $(LDDIR)/$(MACHINE) |