diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2018-11-03 14:22:04 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2018-11-03 14:22:04 +0000 |
commit | a2515cdcd1320ccf654ef64c1b62121de155159d (patch) | |
tree | 11e9400cdc77e8a4651ee27677f30a10470e5b8f | |
parent | Properly register info files (diff) |
GCC 8 removed CilkPlus support, so we cannot USE_GCC=yes. Instead
force the use of GCC 7, the last version with CilPlus support.
PR: 231590
Notes
Notes:
svn path=/head/; revision=483896
-rw-r--r-- | lang/cilkplus/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/cilkplus/Makefile b/lang/cilkplus/Makefile index 236f68aeff70..fd0501460e6f 100644 --- a/lang/cilkplus/Makefile +++ b/lang/cilkplus/Makefile @@ -18,7 +18,7 @@ ONLY_FOR_ARCHS= amd64 i386 sparc64 HG_REVISION= 004467 -USE_GCC= yes +USE_GCC= 7 # GCC 8 removed CilkPlus support USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-src-${HG_REVISION} |