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:
Johannes Schickel 2011-08-08 20:36:06 +02:00
parent d6e0afc002
commit 6a7c87b4a4

5
configure vendored
View File

@ -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)"
;;