[arch][x86][fpu] spiff up the fpu code to detect things more cleanly

Doesn't really change the functionality of the code except it'll try to
work with less fpu features present.
This commit is contained in:
Travis Geiselbrecht
2022-07-24 19:56:24 -07:00
parent c429ffcc7a
commit 7505c3087a
7 changed files with 104 additions and 52 deletions

View File

@@ -60,7 +60,7 @@ shift $((OPTIND-1))
if (( $DO_64BIT )); then
QEMU="qemu-system-x86_64"
PROJECT="pc-x86-64-test"
CPU=qemu64
CPU=max
MACHINE=q35
elif (( $DO_LEGACY )); then
QEMU="qemu-system-i386"
@@ -70,7 +70,7 @@ elif (( $DO_LEGACY )); then
else
QEMU="qemu-system-i386"
PROJECT="pc-x86-test"
CPU=qemu32
CPU=max
MACHINE=q35
fi