Add 64bit support to the build scripts.

Change-Id: Ibbc743981b4d1d2dd4e1ceb586f2f0a092559a27
Reviewed-on: http://gerrit.chromium.org/gerrit/1098
Tested-by: Stéphane Marchesin <marcheu@chromium.org>
Reviewed-by: Anush Elangovan <anush@chromium.org>
This commit is contained in:
Stéphane Marchesin 2011-05-17 20:19:30 -07:00
parent 308e9fd4c4
commit 2d331404a0
4 changed files with 12 additions and 0 deletions

View File

@ -86,6 +86,9 @@ else
*86)
ARCH="x86"
;;
*x86_64)
ARCH="amd64"
;;
*)
error "Unable to determine ARCH from toolchain: $CHOST"
exit 1

View File

@ -200,6 +200,9 @@ case "${TC_ARCH}" in
*86)
ARCH="x86"
;;
*x86_64)
ARCH="amd64"
;;
*)
error "Unable to determine ARCH from toolchain: ${CHOST}"
exit 1

View File

@ -138,6 +138,9 @@ case "${TC_ARCH}" in
*86)
ARCH="x86"
;;
*x86_64)
ARCH="amd64"
;;
*)
error "Unable to determine ARCH from toolchain: ${CHOST}"
exit 1

View File

@ -97,6 +97,9 @@ case "$TC_ARCH" in
*86)
ARCH="x86"
;;
*x86_64)
ARCH="amd64"
;;
*)
error "Unable to determine ARCH from toolchain: $CHOST"
exit 1