Skip to content

Commit

Permalink
CONFIGURE: Allow amd64 as alias for x86_64.
Browse files Browse the repository at this point in the history
Patch from #3599990 "CONFIGURE: Equate amd64 with x86_64".
  • Loading branch information
Johannes Schickel committed Jan 9, 2013
1 parent 796867c commit ed53292
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -1904,7 +1904,7 @@ cc_check_clean tmp_find_type_with_size.cpp
# for the smaller sizes. # for the smaller sizes.
echo_n "Alignment required... " echo_n "Alignment required... "
case $_host_cpu in case $_host_cpu in
i[3-6]86 | x86_64 | ppc*) i[3-6]86 | amd64 | x86_64 | ppc*)
# Unaligned access should work # Unaligned access should work
_need_memalign=no _need_memalign=no
;; ;;
Expand Down Expand Up @@ -1951,7 +1951,7 @@ case $_host_cpu in
echo "PowerPC" echo "PowerPC"
DEFINES="$DEFINES -DPPC_TARGET" DEFINES="$DEFINES -DPPC_TARGET"
;; ;;
x86_64) amd64 | x86_64)
echo "x86_64" echo "x86_64"
;; ;;
*) *)
Expand Down

0 comments on commit ed53292

Please sign in to comment.