diff options
author | Paul Richards <paul@FreeBSD.org> | 1993-11-07 03:25:25 +0000 |
---|---|---|
committer | Paul Richards <paul@FreeBSD.org> | 1993-11-07 03:25:25 +0000 |
commit | 727c7fbdc9777830e2e52e8758bf79f5ccbceb2a (patch) | |
tree | 29555a3ad508225042df8e4901c4d7fa636a0694 /libexec | |
parent | 423a1029384c1280ddc5aa2787e71220d9563f40 (diff) | |
download | src-727c7fbdc9777830e2e52e8758bf79f5ccbceb2a.tar.gz src-727c7fbdc9777830e2e52e8758bf79f5ccbceb2a.zip |
Added -lgcc_pic to LDFLAGS in rtld/Makefile
Notes
Notes:
svn path=/head/; revision=711
Diffstat (limited to 'libexec')
-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 ea0260898ce7..31283d7d05b0 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) |