From eb162ea52794b25eabf1bb0a878dc544b59db760 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 5 Sep 2009 14:22:12 +0000 Subject: [PATCH] Fix build on native 64-bit architecture --- build-scripts/fatbuild.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-scripts/fatbuild.sh b/build-scripts/fatbuild.sh index 251d0014a..51888bd4e 100755 --- a/build-scripts/fatbuild.sh +++ b/build-scripts/fatbuild.sh @@ -218,9 +218,15 @@ case `uname -p` in powerpc) native_path=ppc ;; + powerpc64) + native_path=ppc64 + ;; *86) native_path=x86 ;; + x86_64) + native_path=x64 + ;; *) echo "Couldn't figure out native architecture path" exit 1