gcc: Add mipshf-musl arch support
This commit is contained in:
parent
d7fd36f5ec
commit
b27149137d
1 changed files with 2 additions and 0 deletions
|
@ -53,6 +53,7 @@ case "$XBPS_TARGET_MACHINE" in
|
|||
aarch64) _triplet="aarch64-linux-gnu";;
|
||||
aarch64-musl) _triplet="aarch64-linux-musl";;
|
||||
mips-musl) _triplet="mips-linux-musl";;
|
||||
mipshf-musl) _triplet="mips-linux-muslhf";;
|
||||
mipsel-musl) _triplet="mipsel-linux-musl";;
|
||||
mipselhf-musl) _triplet="mipsel-linux-muslhf";;
|
||||
esac
|
||||
|
@ -88,6 +89,7 @@ do_configure() {
|
|||
case "$XBPS_TARGET_MACHINE" in
|
||||
mipselhf-musl) _args+=" --with-arch=mips32r2 --with-float=hard"; _hash=sysv;;
|
||||
mipsel-musl) _args+=" --with-arch=mips32r2 --with-float=soft"; _hash=sysv;;
|
||||
mipshf-musl) _args+=" --with-arch=mip32r2 --with-float=hard";;
|
||||
mips-musl) _args+=" --with-arch=mip32r2 --with-float=soft";;
|
||||
armv5*) _args+=" --with-arch=armv5te --with-float=soft";;
|
||||
armv6l*) _args+=" --with-arch=armv6 --with-fpu=vfp --with-float=hard";;
|
||||
|
|
Loading…
Reference in a new issue