svn commit: r569401 - head/devel/ispc
Yuri Victorovich
yuri at FreeBSD.org
Sun Mar 28 16:54:05 UTC 2021
Author: yuri
Date: Sun Mar 28 16:54:04 2021
New Revision: 569401
URL: https://svnweb.freebsd.org/changeset/ports/569401
Log:
devel/ispc: Fix build by switching dependency to devel/llvm11, the last version that currently works.
PR: 254305
Reported by: pr at aoek.com
Modified:
head/devel/ispc/Makefile
Modified: head/devel/ispc/Makefile
==============================================================================
--- head/devel/ispc/Makefile Sun Mar 28 16:41:33 2021 (r569400)
+++ head/devel/ispc/Makefile Sun Mar 28 16:54:04 2021 (r569401)
@@ -4,7 +4,7 @@
PORTNAME= ispc
DISTVERSIONPREFIX= v
DISTVERSION= 1.15.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel
MAINTAINER= yuri at FreeBSD.org
@@ -24,8 +24,10 @@ USES= bison cmake compiler:c++14-lang python:build,te
USE_GITHUB= yes
SHEBANG_FILES= *.py
-LLVM_VERSION= -devel # Release notes https://github.com/ispc/ispc/blob/master/docs/ReleaseNotes.txt list compatible LLVM versions, but they assume that extra patches are applied to LLVM
+#LLVM_VERSION= -devel # fails with 12: call to non-static member function without an object argument: llvm::DebugLoc::get
+ # Release notes https://github.com/ispc/ispc/blob/master/docs/ReleaseNotes.txt list compatible LLVM versions, but they assume that extra patches are applied to LLVM
# LLVM build script: https://github.com/ispc/ispc/blob/master/scripts/build.sh
+LLVM_VERSION= 11 # it fails with -devel (13.0.d20210308), with 12.0.0.r2 it also fails, using 11 that it succeeds with
CONFIGURE_ENV= PATH=${LOCALBASE}/llvm${LLVM_VERSION}/bin:${PATH}
CMAKE_OFF= ISPC_NO_DUMPS ISPC_INCLUDE_EXAMPLES
More information about the svn-ports-all
mailing list