svn commit: r501709 - head/devel/llvm40
Brooks Davis
brooks at FreeBSD.org
Wed May 15 14:17:25 UTC 2019
Author: brooks
Date: Wed May 15 14:17:24 2019
New Revision: 501709
URL: https://svnweb.freebsd.org/changeset/ports/501709
Log:
Use GCC 7 instead of GCC 5 when the base system doesn't have libc++.
We'd use USE_GCC=yes, but GCC 8 doesn't like the obsolete C++ in this
obsolete codebase.
Requested by: gerald
Modified:
head/devel/llvm40/Makefile
Modified: head/devel/llvm40/Makefile
==============================================================================
--- head/devel/llvm40/Makefile Wed May 15 12:55:28 2019 (r501708)
+++ head/devel/llvm40/Makefile Wed May 15 14:17:24 2019 (r501709)
@@ -2,7 +2,7 @@
PORTNAME= llvm
DISTVERSION= 4.0.1
-PORTREVISION= 13
+PORTREVISION= 14
CATEGORIES= devel lang
MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR}
PKGNAMESUFFIX= ${LLVM_SUFFIX}
@@ -190,9 +190,9 @@ EXTRAS_LIBS= libclangApplyReplacements \
libmodernizeCore
EXTRAS_PATTERN= ${EXTRAS_COMMANDS:tW:C/ */|/g}|${EXTRAS_LIBS:tW:C/ */|/g}
-# Force GCC 5 on non-clang systems because GCC 8 won't compile this code.
+# Force GCC 7 on non-clang systems because GCC 8 won't compile this code.
.if exists(/usr/lib/libstdc++.so)
-USE_GCC= 5
+USE_GCC= 7
.endif
.include <bsd.port.options.mk>
More information about the svn-ports-all
mailing list