Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 May 2019 14:17:24 +0000 (UTC)
From:      Brooks Davis <brooks@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501709 - head/devel/llvm40
Message-ID:  <201905151417.x4FEHOXD035264@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905151417.x4FEHOXD035264>