Received: by mail.netbsd.org (Postfix, from userid 605) id A8EE484E55; Wed, 17 Aug 2022 15:34:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E19F884D8C for ; Wed, 17 Aug 2022 15:34:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id X-1r-ONX9VqE for ; Wed, 17 Aug 2022 15:34:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4159B84CFD for ; Wed, 17 Aug 2022 15:34:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3B085FB1A; Wed, 17 Aug 2022 15:34:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1660750476110660" MIME-Version: 1.0 Date: Wed, 17 Aug 2022 15:34:36 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/parallel/opencl-clang To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220817153436.3B085FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1660750476110660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Wed Aug 17 15:34:36 UTC 2022 Modified Files: pkgsrc/parallel/opencl-clang: Makefile Log Message: opencl-clang: take out --version-script where not supported To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/parallel/opencl-clang/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1660750476110660 Content-Disposition: inline Content-Length: 832 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/parallel/opencl-clang/Makefile diff -u pkgsrc/parallel/opencl-clang/Makefile:1.7 pkgsrc/parallel/opencl-clang/Makefile:1.8 --- pkgsrc/parallel/opencl-clang/Makefile:1.7 Mon Aug 15 20:45:21 2022 +++ pkgsrc/parallel/opencl-clang/Makefile Wed Aug 17 15:34:36 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2022/08/15 20:45:21 tnn Exp $ +# $NetBSD: Makefile,v 1.8 2022/08/17 15:34:36 tnn Exp $ DISTNAME= opencl-clang-14.0.0 CATEGORIES= parallel @@ -16,6 +16,10 @@ USE_LANGUAGES= c c++ # C++14 GCC_REQD+= 7 # sync with llvm/clang +.for os in Darwin SunOS +BUILDLINK_TRANSFORM.${os}+= rm:-Wl,--version-script=${WRKDIR}/${DISTNAME}/common_clang.map +.endfor + .include "../../parallel/spirv-llvm-translator/buildlink3.mk" .include "../../lang/clang/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1660750476110660--