Author: bapt
Date: Sat Dec 10 18:29:39 2016
New Revision: 309824
URL: https://svnweb.freebsd.org/changeset/base/309824

Log:
  Now that external gcc directly natively links to libc++ we can remove
  the dirty hack made to fake libstdc++

Modified:
  head/Makefile.inc1
  head/lib/libc++/Makefile

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1  Sat Dec 10 18:07:16 2016        (r309823)
+++ head/Makefile.inc1  Sat Dec 10 18:29:39 2016        (r309824)
@@ -591,7 +591,7 @@ XCFLAGS+=   -B${WORLDTMP}/usr/lib
 # XXX: This should be checking MK_GNUCXX == no
 .if ${X_COMPILER_VERSION} >= 40800
 XCXXFLAGS+=    -isystem ${WORLDTMP}/usr/include/c++/v1 -std=c++11 \
-               -nostdinc++ -L${WORLDTMP}/../lib/libc++
+               -nostdinc++
 .endif
 .elif ${WANT_COMPILER_TYPE} == clang || \
     (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang)

Modified: head/lib/libc++/Makefile
==============================================================================
--- head/lib/libc++/Makefile    Sat Dec 10 18:07:16 2016        (r309823)
+++ head/lib/libc++/Makefile    Sat Dec 10 18:29:39 2016        (r309824)
@@ -242,14 +242,4 @@ EXT+=              ${HDRDIR}/ext/${hdr}
 .endfor
 EXTDIR=                ${CXXINCLUDEDIR}/ext
 
-.if ${MK_GNUCXX} == "no" && ${COMPILER_TYPE} == "gcc"
-CLEANFILES+=   libstdc++.so libstdc++.a
-
-afterinstall:
-       ${INSTALL_SYMLINK} ${DESTDIR}${LIBDIR}/lib${LIB}.so \
-               ${.OBJDIR}/libstdc++.so
-       ${INSTALL_SYMLINK} ${DESTDIR}${LIBDIR}/lib${LIB}.a \
-               ${.OBJDIR}/libstdc++.a
-.endif
-
 .include <bsd.lib.mk>
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to