Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix build on native 64-bit architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 5, 2009
1 parent 94eca3b commit eb162ea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build-scripts/fatbuild.sh
Expand Up @@ -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
Expand Down

0 comments on commit eb162ea

Please sign in to comment.