Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: arch/
Date: Sat, 11 Sep 2021 18:11:33
Message-Id: 1631383817.1a94eb5dd29e763e23f6276c191175722732ab16.dilfridge@gentoo
1 commit: 1a94eb5dd29e763e23f6276c191175722732ab16
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 11 18:10:17 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 11 18:10:17 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1a94eb5d
7
8 arm64 definition: add a subarch "aarch64" identical to "arm64"
9
10 When CHOST is given in the spec file, the subarch is extracted from the triplet.
11 Unfortunately that uses aarch64 instead of our arm64 ...
12
13 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
14
15 arch/arm64.toml | 3 +++
16 1 file changed, 3 insertions(+)
17
18 diff --git a/arch/arm64.toml b/arch/arm64.toml
19 index 613b4e68..e139327f 100644
20 --- a/arch/arm64.toml
21 +++ b/arch/arm64.toml
22 @@ -2,3 +2,6 @@
23 COMMON_FLAGS = "-O2 -pipe"
24 CHOST = "aarch64-unknown-linux-gnu"
25
26 +[arm64.aarch64]
27 +COMMON_FLAGS = "-O2 -pipe"
28 +CHOST = "aarch64-unknown-linux-gnu"