From owner-svn-ports-head@freebsd.org Sun Mar 28 16:54:05 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5D2EF57F41B; Sun, 28 Mar 2021 16:54:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F7hcs2Fqvz4qVD; Sun, 28 Mar 2021 16:54:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 403FD2337A; Sun, 28 Mar 2021 16:54:05 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12SGs5b0050987; Sun, 28 Mar 2021 16:54:05 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12SGs5bR050986; Sun, 28 Mar 2021 16:54:05 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202103281654.12SGs5bR050986@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 28 Mar 2021 16:54:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r569401 - head/devel/ispc X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/ispc X-SVN-Commit-Revision: 569401 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Mar 2021 16:54:05 -0000 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@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@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