diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-25 11:07:26 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-25 11:07:26 +0000 |
commit | 6adce30d288e6c89f9247b8bced6dc1382b72c8f (patch) | |
tree | 9490af12e8dfdddce4107ac3a4cefe6c56ba0614 /lib/libc | |
parent | 1578ed600d5f0f7553eff58b014cf5f74141ebcd (diff) | |
download | FreeBSD-src-6adce30d288e6c89f9247b8bced6dc1382b72c8f.zip FreeBSD-src-6adce30d288e6c89f9247b8bced6dc1382b72c8f.tar.gz |
Convert libraries to use LIBADD
While here reduce a bit overlinking
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/Makefile b/lib/libc/Makefile index a535edf..9853d4b 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -44,13 +44,11 @@ CFLAGS+=${CANCELPOINTS_CFLAGS} # # Link with static libcompiler_rt.a. # -DPADD+= ${LIBCOMPILER_RT} LDFLAGS+= -nodefaultlibs -LDADD+= -lcompiler_rt +LIBADD+= compiler_rt .if ${MK_SSP} != "no" -DPADD+= ${LIBSSP_NONSHARED} -LDADD+= -lssp_nonshared +LIBADD+= ssp_nonshared .endif # Extras that live in either libc.a or libc_nonshared.a |