From 65c1d9a7a509ef28d6bf1bfc89a83b6ba2dc07f0 Mon Sep 17 00:00:00 2001 From: Ludwig Nussel Date: Sun, 5 Mar 2006 19:11:19 +0000 Subject: [PATCH] merge fixes from ioquake3.sh --- code/unix/setup/ioq3demo.sh | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/code/unix/setup/ioq3demo.sh b/code/unix/setup/ioq3demo.sh index e022afed..05df7ff8 100644 --- a/code/unix/setup/ioq3demo.sh +++ b/code/unix/setup/ioq3demo.sh @@ -36,9 +36,15 @@ else fi export LD_LIBRARY_PATH -arch=`uname -m` -case "$arch" in - i?86) arch=i386 ;; +archs=`uname -m` +case "$archs" in + i?86) archs=i386 ;; + x86_64) archs="x86_64 i386" ;; + ppc64) archs="ppc64 ppc" ;; esac -exec ./ioquake3.$arch +set sv_pure 0 +set vm_cgame 0 +set vm_game 0 +set vm_ui 0 +set fs_game demoq3 "$@" +for arch in $archs; do + test -x ./ioquake3.$arch || continue + exec ./ioquake3.$arch +set sv_pure 0 +set vm_cgame 0 +set vm_game 0 +set vm_ui 0 +set fs_game demoq3 "$@" +done +echo "could not execute ioquake3" >&2