summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2020-09-16 23:46:32 +0300
committerAndreas K. Hüttel <dilfridge@gentoo.org>2020-09-18 14:05:56 +0300
commitfd13d5621f18009d3126d37d735150261fbddd09 (patch)
tree705aa5ce38942576da6ea39f860aa5c0ae9b9af5
parentprofiles: Drop ABI_RISCV from riscv profiles; it's multilib overkill (diff)
downloadgentoo-fd13d562.tar.gz
gentoo-fd13d562.tar.bz2
gentoo-fd13d562.zip
multilib-build.eclass: Drop ABI_RISCV multilib overkill
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rw-r--r--eclass/multilib-build.eclass18
1 files changed, 0 insertions, 18 deletions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass
index 21ca275c3c77..585364de6273 100644
--- a/eclass/multilib-build.eclass
+++ b/eclass/multilib-build.eclass
@@ -47,10 +47,6 @@ _MULTILIB_FLAGS=(
abi_mips_o32:o32
# abi_ppc_32:ppc,ppc_aix,ppc_macos
# abi_ppc_64:ppc64
- abi_riscv_lp64d:lp64d
- abi_riscv_lp64:lp64
- abi_riscv_ilp32d:ilp32d
- abi_riscv_ilp32:ilp32
abi_s390_32:s390
abi_s390_64:s390x
)
@@ -493,20 +489,6 @@ multilib_prepare_wrappers() {
# elif(_MIPS_SIM == _ABIO32) /* o32 */
# error "abi_mips_o32 not supported by the package."
# endif
-#elif defined(__riscv)
-# if (__riscv_xlen == 64) && defined(__riscv_float_abi_double)
-# error "abi_riscv_lp64d not supported by the package."
-# elif (__riscv_xlen == 64) && defined(__riscv_float_abi_single)
-# error "abi_riscv_lp64f not supported by the package."
-# elif (__riscv_xlen == 64)
-# error "abi_riscv_lp64 not supported by the package."
-# elif (__riscv_xlen == 32) && defined(__riscv_float_abi_double)
-# error "abi_riscv_ilp32d not supported by the package."
-# elif (__riscv_xlen == 32) && defined(__riscv_float_abi_single)
-# error "abi_riscv_ilp32f not supported by the package."
-# else
-# error "abi_riscv_ilp32 not supported by the package."
-# endif
#elif defined(__sparc__)
# if defined(__arch64__)
# error "abi_sparc_64 not supported by the package."