Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Wed, 25 Dec 2019 15:33:55
Message-Id: 1577287987.91734750c199af8e90db3d62e20e45b94d20357c.grobian@gentoo
1 commit: 91734750c199af8e90db3d62e20e45b94d20357c
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 25 15:29:08 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 25 15:33:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=91734750
7
8 scripts/bootstrap-prefix: use 10.14 profile for 10.15 and up
9
10 We don't have sources available for 10.15 (yet), so let's build a
11 10.14-based toolchain instead
12
13 Bug: https://bugs.gentoo.org/701720
14 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
15
16 scripts/bootstrap-prefix.sh | 5 +++++
17 1 file changed, 5 insertions(+)
18
19 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
20 index f1f670da9d..ce33fd945a 100755
21 --- a/scripts/bootstrap-prefix.sh
22 +++ b/scripts/bootstrap-prefix.sh
23 @@ -432,6 +432,11 @@ bootstrap_setup() {
24 rev=${CHOST##*darwin}
25 profile="prefix/darwin/macos/10.$((rev - 4))/x86"
26 ;;
27 + x86_64-apple-darwin19)
28 + # handle newer releases on the last profile we have headers
29 + # and stuff for (https://opensource.apple.com/)
30 + profile="prefix/darwin/macos/10.14/x64"
31 + ;;
32 x86_64-apple-darwin9|x86_64-apple-darwin1[012345678])
33 rev=${CHOST##*darwin}
34 profile="prefix/darwin/macos/10.$((rev - 4))/x64"