commit: 1a94eb5dd29e763e23f6276c191175722732ab16 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Sat Sep 11 18:10:17 2021 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Sat Sep 11 18:10:17 2021 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1a94eb5d
arm64 definition: add a subarch "aarch64" identical to "arm64" When CHOST is given in the spec file, the subarch is extracted from the triplet. Unfortunately that uses aarch64 instead of our arm64 ... Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> arch/arm64.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm64.toml b/arch/arm64.toml index 613b4e68..e139327f 100644 --- a/arch/arm64.toml +++ b/arch/arm64.toml @@ -2,3 +2,6 @@ COMMON_FLAGS = "-O2 -pipe" CHOST = "aarch64-unknown-linux-gnu" +[arm64.aarch64] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "aarch64-unknown-linux-gnu"
