configure: Fix msa can't be disabled when '--cpu=loongson3a' assigned.

There are compiler and runtime check for MSA and MMI.
Remove the redundant setting of MSA and MMI for cores specified by "--cpu".

Signed-off-by: Shiyou Yin <yinshiyou-hf@loongson.cn>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Shiyou Yin 2020-09-03 14:29:52 +08:00 committed by Michael Niedermayer
parent a4f7b09536
commit 5a844b638a

9
configure vendored
View File

@ -5026,8 +5026,6 @@ elif enabled mips; then
disable loongson3 disable loongson3
disable mipsdsp disable mipsdsp
disable mipsdspr2 disable mipsdspr2
disable msa
disable mmi
cpuflags="-march=$cpu" cpuflags="-march=$cpu"
@ -5036,17 +5034,13 @@ elif enabled mips; then
mips1|mips3) mips1|mips3)
;; ;;
mips32r2) mips32r2)
enable msa
enable mips32r2 enable mips32r2
;; ;;
mips32r5) mips32r5)
enable msa
enable mips32r2 enable mips32r2
enable mips32r5 enable mips32r5
;; ;;
mips64r2|mips64r5) mips64r2|mips64r5)
enable msa
enable mmi
enable mips64r2 enable mips64r2
enable loongson3 enable loongson3
;; ;;
@ -5063,7 +5057,6 @@ elif enabled mips; then
enable mips32r2 enable mips32r2
;; ;;
p5600) p5600)
enable msa
enable mips32r2 enable mips32r2
enable mips32r5 enable mips32r5
check_cflags "-mtune=p5600" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops" check_cflags "-mtune=p5600" && check_cflags "-msched-weight -mload-store-pairs -funroll-loops"
@ -5078,7 +5071,6 @@ elif enabled mips; then
;; ;;
# Cores from Loongson # Cores from Loongson
loongson2e|loongson2f|loongson3*) loongson2e|loongson2f|loongson3*)
enable mmi
enable local_aligned enable local_aligned
enable simd_align_16 enable simd_align_16
enable fast_64bit enable fast_64bit
@ -5101,7 +5093,6 @@ elif enabled mips; then
case $cpu in case $cpu in
loongson3*) loongson3*)
enable loongson3 enable loongson3
enable msa
cpuflags="-march=loongson3a -mhard-float $expensive_optimization_flag" cpuflags="-march=loongson3a -mhard-float $expensive_optimization_flag"
;; ;;
loongson2e) loongson2e)