Skip to content

Commit

Permalink
multilib-build.eclass: Drop ABI_RISCV multilib overkill
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas K. Hüttel <[email protected]>
  • Loading branch information
akhuettel committed Sep 18, 2020
1 parent ca545f5 commit fd13d56
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions eclass/multilib-build.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -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."
Expand Down

0 comments on commit fd13d56

Please sign in to comment.