public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/darwin/macos/10.11/x64/, profiles/prefix/darwin/macos/10.7/x86/, ...
@ 2016-12-21  9:24 Fabian Groffen
  0 siblings, 0 replies; only message in thread
From: Fabian Groffen @ 2016-12-21  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     53c1db3906e8aab535f98381f25807700f43507a
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 09:23:47 2016 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 09:23:56 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53c1db39

profiles/prefix/darwin: define CHOST_<ABI> for llvm

 profiles/prefix/darwin/macos/10.10/x64/make.defaults | 8 ++------
 profiles/prefix/darwin/macos/10.10/x86/make.defaults | 8 ++------
 profiles/prefix/darwin/macos/10.11/x64/make.defaults | 8 ++------
 profiles/prefix/darwin/macos/10.11/x86/make.defaults | 8 ++------
 profiles/prefix/darwin/macos/10.12/x64/make.defaults | 6 +-----
 profiles/prefix/darwin/macos/10.12/x86/make.defaults | 6 +-----
 profiles/prefix/darwin/macos/10.4/ppc/make.defaults  | 5 ++---
 profiles/prefix/darwin/macos/10.4/x86/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.5/ppc/make.defaults  | 5 ++---
 profiles/prefix/darwin/macos/10.5/x64/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.5/x86/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.6/x64/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.6/x86/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.7/x64/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.7/x86/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.8/x64/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.8/x86/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.9/x64/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/10.9/x86/make.defaults  | 8 ++------
 profiles/prefix/darwin/macos/arch/ppc/make.defaults  | 5 ++++-
 profiles/prefix/darwin/macos/arch/x64/make.defaults  | 8 +++++++-
 profiles/prefix/darwin/macos/arch/x86/make.defaults  | 8 +++++++-
 22 files changed, 54 insertions(+), 109 deletions(-)

diff --git a/profiles/prefix/darwin/macos/10.10/x64/make.defaults b/profiles/prefix/darwin/macos/10.10/x64/make.defaults
index 0209010..71591b9 100644
--- a/profiles/prefix/darwin/macos/10.10/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.10/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin14"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.10/x86/make.defaults b/profiles/prefix/darwin/macos/10.10/x86/make.defaults
index c372b5c..99b9e28 100644
--- a/profiles/prefix/darwin/macos/10.10/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.10/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin14"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.11/x64/make.defaults b/profiles/prefix/darwin/macos/10.11/x64/make.defaults
index b9464e7..8ca8470 100644
--- a/profiles/prefix/darwin/macos/10.11/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.11/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin15"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.11/x86/make.defaults b/profiles/prefix/darwin/macos/10.11/x86/make.defaults
index 2e9a6de..bdcf037 100644
--- a/profiles/prefix/darwin/macos/10.11/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.11/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin15"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.12/x64/make.defaults b/profiles/prefix/darwin/macos/10.12/x64/make.defaults
index 05c9481..8abc6ae 100644
--- a/profiles/prefix/darwin/macos/10.12/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.12/x64/make.defaults
@@ -2,9 +2,5 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin16"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.12/x86/make.defaults b/profiles/prefix/darwin/macos/10.12/x86/make.defaults
index a85c683..0ea641e 100644
--- a/profiles/prefix/darwin/macos/10.12/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.12/x86/make.defaults
@@ -2,9 +2,5 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin16"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.4/ppc/make.defaults b/profiles/prefix/darwin/macos/10.4/ppc/make.defaults
index 8c58b7f..de5ac9b 100644
--- a/profiles/prefix/darwin/macos/10.4/ppc/make.defaults
+++ b/profiles/prefix/darwin/macos/10.4/ppc/make.defaults
@@ -1,7 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="ppc-macos"
 CHOST="powerpc-apple-darwin8"
-ACCEPT_KEYWORDS="~ppc-macos"
+CHOST_ppc="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.4/x86/make.defaults b/profiles/prefix/darwin/macos/10.4/x86/make.defaults
index ff7d41e..8196d98 100644
--- a/profiles/prefix/darwin/macos/10.4/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.4/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin8"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.5/ppc/make.defaults b/profiles/prefix/darwin/macos/10.5/ppc/make.defaults
index ccee30c..1ec662c 100644
--- a/profiles/prefix/darwin/macos/10.5/ppc/make.defaults
+++ b/profiles/prefix/darwin/macos/10.5/ppc/make.defaults
@@ -1,7 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="ppc-macos"
 CHOST="powerpc-apple-darwin9"
-ACCEPT_KEYWORDS="~ppc-macos"
+CHOST_ppc="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.5/x64/make.defaults b/profiles/prefix/darwin/macos/10.5/x64/make.defaults
index 1c265fd..0f49e26 100644
--- a/profiles/prefix/darwin/macos/10.5/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.5/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin9"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.5/x86/make.defaults b/profiles/prefix/darwin/macos/10.5/x86/make.defaults
index 701853b..60efeba 100644
--- a/profiles/prefix/darwin/macos/10.5/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.5/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin9"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.6/x64/make.defaults b/profiles/prefix/darwin/macos/10.6/x64/make.defaults
index de733d2..56a2ce9 100644
--- a/profiles/prefix/darwin/macos/10.6/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.6/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin10"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.6/x86/make.defaults b/profiles/prefix/darwin/macos/10.6/x86/make.defaults
index 7cd2a2c..e9eb0bc 100644
--- a/profiles/prefix/darwin/macos/10.6/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.6/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin10"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.7/x64/make.defaults b/profiles/prefix/darwin/macos/10.7/x64/make.defaults
index 34a480e..ef1a45d 100644
--- a/profiles/prefix/darwin/macos/10.7/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.7/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin11"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.7/x86/make.defaults b/profiles/prefix/darwin/macos/10.7/x86/make.defaults
index a0835e2..dfffd8e 100644
--- a/profiles/prefix/darwin/macos/10.7/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.7/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin11"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.8/x64/make.defaults b/profiles/prefix/darwin/macos/10.8/x64/make.defaults
index f606f1f..59cce77 100644
--- a/profiles/prefix/darwin/macos/10.8/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.8/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin12"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.8/x86/make.defaults b/profiles/prefix/darwin/macos/10.8/x86/make.defaults
index 23d3fd2..3f8cf18 100644
--- a/profiles/prefix/darwin/macos/10.8/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.8/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin12"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.9/x64/make.defaults b/profiles/prefix/darwin/macos/10.9/x64/make.defaults
index e883118..ad96e6c 100644
--- a/profiles/prefix/darwin/macos/10.9/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/10.9/x64/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x64-macos"
 CHOST="x86_64-apple-darwin13"
-ACCEPT_KEYWORDS="~x64-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_amd64="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/10.9/x86/make.defaults b/profiles/prefix/darwin/macos/10.9/x86/make.defaults
index 092253c..c0c8c53 100644
--- a/profiles/prefix/darwin/macos/10.9/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/10.9/x86/make.defaults
@@ -1,10 +1,6 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-ARCH="x86-macos"
 CHOST="i686-apple-darwin13"
-ACCEPT_KEYWORDS="~x86-macos"
-
-USE="mmx mmxext sse sse2"
-CPU_FLAGS_X86="mmx mmxext sse sse2"
+CHOST_x86="${CHOST}"

diff --git a/profiles/prefix/darwin/macos/arch/ppc/make.defaults b/profiles/prefix/darwin/macos/arch/ppc/make.defaults
index 6c28906..dec207a 100644
--- a/profiles/prefix/darwin/macos/arch/ppc/make.defaults
+++ b/profiles/prefix/darwin/macos/arch/ppc/make.defaults
@@ -1,7 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+ARCH="ppc-macos"
+ACCEPT_KEYWORDS="~ppc-macos"
+
 # multilib build stuff, single ABI (no multilib)
 MULTILIB_ABIS="ppc"
 DEFAULT_ABI="ppc"

diff --git a/profiles/prefix/darwin/macos/arch/x64/make.defaults b/profiles/prefix/darwin/macos/arch/x64/make.defaults
index 8b99414..51246a7 100644
--- a/profiles/prefix/darwin/macos/arch/x64/make.defaults
+++ b/profiles/prefix/darwin/macos/arch/x64/make.defaults
@@ -1,7 +1,13 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+ARCH="x64-macos"
+ACCEPT_KEYWORDS="~x64-macos"
+
+USE="mmx mmxext sse sse2"
+CPU_FLAGS_X86="mmx mmxext sse sse2"
+
 # multilib build stuff, single ABI (no multilib)
 MULTILIB_ABIS="amd64"
 DEFAULT_ABI="amd64"

diff --git a/profiles/prefix/darwin/macos/arch/x86/make.defaults b/profiles/prefix/darwin/macos/arch/x86/make.defaults
index 3a38bd9..8a721e6 100644
--- a/profiles/prefix/darwin/macos/arch/x86/make.defaults
+++ b/profiles/prefix/darwin/macos/arch/x86/make.defaults
@@ -1,7 +1,13 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+ARCH="x86-macos"
+ACCEPT_KEYWORDS="~x86-macos"
+
+USE="mmx mmxext sse sse2"
+CPU_FLAGS_X86="mmx mmxext sse sse2"
+
 # multilib build stuff, single ABI (no multilib)
 MULTILIB_ABIS="x86"
 DEFAULT_ABI="x86"


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-12-21  9:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-21  9:24 [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/darwin/macos/10.11/x64/, profiles/prefix/darwin/macos/10.7/x86/, Fabian Groffen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox