summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2015-04-04 00:42:09 +0000
committerbdrewery <bdrewery@FreeBSD.org>2015-04-04 00:42:09 +0000
commit44dfc90bcd426f5f12c49e21eace0fe5d1edd2f0 (patch)
tree4d580f376425f895285036aeae5ff7da4741e715 /share
parente247370125655f0c959f224089b349eef7280c4c (diff)
downloadFreeBSD-src-44dfc90bcd426f5f12c49e21eace0fe5d1edd2f0.zip
FreeBSD-src-44dfc90bcd426f5f12c49e21eace0fe5d1edd2f0.tar.gz
MFC r280179,r280180:
r280179: Add LIB_CXX so that C++ libraries will use CXX to link. This adds some extra dependencies directly to Makefile.inc1 as atf is still a prebuild library in stable/10. If r273449 is MFCd these can come out. r280180: Document LIB and LIB_CXX.
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.README7
-rw-r--r--share/mk/bsd.lib.mk9
2 files changed, 15 insertions, 1 deletions
diff --git a/share/mk/bsd.README b/share/mk/bsd.README
index 9740dac..8121c63 100644
--- a/share/mk/bsd.README
+++ b/share/mk/bsd.README
@@ -334,6 +334,13 @@ with the current needs of the BSD tree.
It sets/uses the following variables:
+LIB The name of the library to build.
+
+LIB_CXX The name of the library to build. It also causes
+ <bsd.lib.mk> to link the library with the
+ standard C++ library. LIB_CXX overrides the value
+ of LIB if LIB is also set.
+
LIBDIR Target directory for libraries.
LINTLIBDIR Target directory for lint libraries.
diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk
index b87bc6c..bda3d47 100644
--- a/share/mk/bsd.lib.mk
+++ b/share/mk/bsd.lib.mk
@@ -4,6 +4,13 @@
.include <bsd.init.mk>
+.if defined(LIB_CXX)
+LIB= ${LIB_CXX}
+_LD= ${CXX}
+.else
+_LD= ${CC}
+.endif
+
# Set up the variables controlling shared libraries. After this section,
# SHLIB_NAME will be defined only if we are to create a shared library.
# SHLIB_LINK will be defined only if we are to create a link to it.
@@ -208,7 +215,7 @@ ${SHLIB_NAME_FULL}: ${SOBJS}
.if defined(SHLIB_LINK)
@${INSTALL_SYMLINK} ${SHLIB_NAME} ${SHLIB_LINK}
.endif
- ${CC} ${LDFLAGS} ${SSP_CFLAGS} ${SOLINKOPTS} \
+ ${_LD} ${LDFLAGS} ${SSP_CFLAGS} ${SOLINKOPTS} \
-o ${.TARGET} -Wl,-soname,${SONAME} \
`NM='${NM}' lorder ${SOBJS} | tsort -q` ${LDADD}
.if ${MK_CTF} != "no"
OpenPOWER on IntegriCloud