Received: by mail.netbsd.org (Postfix, from userid 605) id 5F59F84E34; Thu, 14 May 2020 19:33:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D846484E31 for ; Thu, 14 May 2020 19:33:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id rgJwGETxigGb for ; Thu, 14 May 2020 19:33:30 +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 3A70E84C6C for ; Thu, 14 May 2020 19:33:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 367E4FB27; Thu, 14 May 2020 19:33:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589484810264680" MIME-Version: 1.0 Date: Thu, 14 May 2020 19:33:30 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/emulators/pearpc To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200514193330.367E4FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589484810264680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Thu May 14 19:33:30 UTC 2020 Modified Files: pkgsrc/emulators/pearpc: Makefile Log Message: Disable LLVM IAS as the source lacks size prefixes To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/emulators/pearpc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589484810264680 Content-Disposition: inline Content-Length: 960 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/pearpc/Makefile diff -u pkgsrc/emulators/pearpc/Makefile:1.23 pkgsrc/emulators/pearpc/Makefile:1.24 --- pkgsrc/emulators/pearpc/Makefile:1.23 Fri Mar 20 11:57:36 2020 +++ pkgsrc/emulators/pearpc/Makefile Thu May 14 19:33:30 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2020/03/20 11:57:36 nia Exp $ +# $NetBSD: Makefile,v 1.24 2020/05/14 19:33:30 joerg Exp $ DISTNAME= pearpc-0.5 CATEGORIES= emulators @@ -18,8 +18,14 @@ EGDIR= ${PREFIX}/share/examples/${PKGB CONF_FILES= ${EGDIR}/ppccfg.example ${PKG_SYSCONFDIR}/ppccfg.conf .include "../../mk/bsd.prefs.mk" +.include "../../mk/compiler.mk" -.if !empty(MACHINE_ARCH:Mi386) +.if !empty(PKGSRC_COMPILER:Mclang) && ${MACHINE_ARCH} == "x86_64" +CCASFLAGS+= -fno-integrated-as +MAKE_ENV+= AM_CCASFLAGS=${CCASFLAGS:Q} +.endif + +.if ${MACHINE_ARCH} == "i386" BUILD_DEPENDS+= nasm-[0-9]*:../../devel/nasm CONFIGURE_ARGS+= --enable-cpu=jitc_x86 .endif --_----------=_1589484810264680--