diff options
author | 2021-02-07 20:22:13 +0100 | |
---|---|---|
committer | 2021-02-07 20:22:13 +0100 | |
commit | 6cc6d48909ec277399f170bf5bcbe56fe337f1ad (patch) | |
tree | cd59b950ea87180f408ea84492cb5fb02ed720d3 | |
parent | sys-devel/gcc-11: fix build on arm64-macos (diff) | |
download | prefix-6cc6d48909ec277399f170bf5bcbe56fe337f1ad.tar.gz prefix-6cc6d48909ec277399f170bf5bcbe56fe337f1ad.tar.bz2 prefix-6cc6d48909ec277399f170bf5bcbe56fe337f1ad.zip |
toolchain-funcs.eclass: forcefully disable softfloat for arm64-macos
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rw-r--r-- | eclass/toolchain-funcs.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index c2ac4a5d15..d591c9574e 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -229,7 +229,7 @@ tc-detect-is-softfloat() { case ${CTARGET:-${CHOST}} in # Avoid autodetection for bare-metal targets. bug #666896 - *-newlib|*-elf|*-eabi) + *-newlib|*-elf|*-eabi|arm64-apple-darwin*) return 1 ;; # arm-unknown-linux-gnueabi is ambiguous. We used to treat it as |