Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jan 2022 22:26:28 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 427b549432cf - main - devel/ispc: Revert the previous LLVM version change to 13 back to 11
Message-ID:  <202201132226.20DMQSjl010908@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=427b549432cf3606803c0802d53f9d32abb4d713

commit 427b549432cf3606803c0802d53f9d32abb4d713
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-01-13 22:23:36 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-01-13 22:26:25 +0000

    devel/ispc: Revert the previous LLVM version change to 13 back to 11
    
    Various systems have llvm-13 crashing with assertions on ISPC.
    
    PR:             261185
    Reported by:    ddrinnon@cdor.net, fallout
---
 devel/ispc/Makefile | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/devel/ispc/Makefile b/devel/ispc/Makefile
index 9008d20dd145..8ed00522aaf9 100644
--- a/devel/ispc/Makefile
+++ b/devel/ispc/Makefile
@@ -3,7 +3,7 @@
 PORTNAME=	ispc
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.16.1
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 
 MAINTAINER=	yuri@FreeBSD.org
@@ -54,12 +54,14 @@ GENX_PLIST_FILES=	include/ispcrt/ispcrt.h \
 			lib/libispcrt.so.${PORTVERSION} \
 			lib/libispcrt_static.a
 
-.include <bsd.port.options.mk>
-.if ${LLVM_DEFAULT:M[7891]0} || ${LLVM_DEFAULT:M1[12]} # max(LLVM_DEFAULT,13)
-LLVM_VERSION=	13
-.else
-LLVM_VERSION=	${LLVM_DEFAULT}
-.endif
+#.include <bsd.port.options.mk>
+#.if ${LLVM_DEFAULT:M[7891]0} || ${LLVM_DEFAULT:M1[12]} # max(LLVM_DEFAULT,13)
+#LLVM_VERSION=	13
+#.else
+#LLVM_VERSION=	${LLVM_DEFAULT}
+#.endif
+
+LLVM_VERSION=	11 # 13 fails on some systems with: Assertion failed: (PointeeType && "Must specify element type"), function Create
 
 do-test: # some tests fail: https://github.com/ispc/ispc/issues/1868
 	@cd ${WRKSRC} && ISPC_HOME=${BUILD_WRKSRC}/bin ./run_tests.py



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