CONFIGURE: Add x86_64 to the CPU architecture list.
This prevents it from shown as "unknown (x86_64)", even though it is an officially supported platform.
This commit is contained in:
parent
d6e0afc002
commit
6a7c87b4a4
1 changed files with 4 additions and 1 deletions
5
configure
vendored
5
configure
vendored
|
@ -1696,7 +1696,7 @@ case $_host_cpu in
|
|||
define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM'
|
||||
define_in_config_if_yes yes 'USE_ARM_GFX_ASM'
|
||||
define_in_config_if_yes yes 'USE_ARM_COSTUME_ASM'
|
||||
|
||||
|
||||
DEFINES="$DEFINES -DARM_TARGET"
|
||||
;;
|
||||
i[3-6]86)
|
||||
|
@ -1712,6 +1712,9 @@ case $_host_cpu in
|
|||
echo "PowerPC"
|
||||
DEFINES="$DEFINES -DPPC_TARGET"
|
||||
;;
|
||||
x86_64)
|
||||
echo "x86_64"
|
||||
;;
|
||||
*)
|
||||
echo "unknown ($_host_cpu)"
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue