comparison build-scripts/fatbuild.sh @ 3249:2befcf0c5ce0

Fix build on native 64-bit architecture
author Sam Lantinga <slouken@libsdl.org>
date Sat, 05 Sep 2009 14:22:12 +0000
parents cde30895105d
children 10a12f77f597
comparison
equal deleted inserted replaced
3248:cde30895105d 3249:2befcf0c5ce0
216 esac 216 esac
217 case `uname -p` in 217 case `uname -p` in
218 powerpc) 218 powerpc)
219 native_path=ppc 219 native_path=ppc
220 ;; 220 ;;
221 powerpc64)
222 native_path=ppc64
223 ;;
221 *86) 224 *86)
222 native_path=x86 225 native_path=x86
226 ;;
227 x86_64)
228 native_path=x64
223 ;; 229 ;;
224 *) 230 *)
225 echo "Couldn't figure out native architecture path" 231 echo "Couldn't figure out native architecture path"
226 exit 1 232 exit 1
227 ;; 233 ;;