Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 217297A293 for ; Mon, 2 Jan 2017 00:03:44 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C85F585610; Mon, 2 Jan 2017 00:03:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 56B9D8560C for ; Mon, 2 Jan 2017 00:03:43 +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 SnPKKmrSUTcO for ; Mon, 2 Jan 2017 00:03:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B755584CEA for ; Mon, 2 Jan 2017 00:03:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B1B9BFBA6; Mon, 2 Jan 2017 00:03:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483315422228280" MIME-Version: 1.0 Date: Mon, 2 Jan 2017 00:03:42 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/lang/llvm To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20170102000342.B1B9BFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1483315422228280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Jan 2 00:03:42 UTC 2017 Modified Files: pkgsrc/lang/llvm: Makefile Log Message: On i386, use -march=i586 for 64-bit CAS This matches tnn's change to lang/libLLVM. No PKGREVISION; no change on !i386 and on i386 this did not build before. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/lang/llvm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483315422228280 Content-Disposition: inline Content-Length: 737 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/llvm/Makefile diff -u pkgsrc/lang/llvm/Makefile:1.10 pkgsrc/lang/llvm/Makefile:1.11 --- pkgsrc/lang/llvm/Makefile:1.10 Sat Dec 17 23:28:34 2016 +++ pkgsrc/lang/llvm/Makefile Mon Jan 2 00:03:42 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2016/12/17 23:28:34 joerg Exp $ +# $NetBSD: Makefile,v 1.11 2017/01/02 00:03:42 gdt Exp $ # # when updating this, please also update: # devel/include-what-you-use @@ -92,6 +92,11 @@ PLIST_SUBST+= SOEXT=${SOEXT} # automatically. CXXFLAGS+= -std=c++11 +# needs std::atomic with 64-bit CAS +.if ${MACHINE_ARCH} == "i386" +CXXFLAGS+= -march=i586 +.endif + .if ${OPSYS} == "Darwin" .PHONY: fix-darwin-install-name post-install: fix-darwin-install-name --_----------=_1483315422228280--