X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Frun-compiler.sh;h=068b53817e44c5f1730ca0550f3c03e3012875fb;hb=cf49f2d086069a9c1b57f501df9a6a0bd3a34c3c;hp=0dd33fd78928ee808fb03f091201e2a8d8fddf3d;hpb=af0f0f905a9a48360e34581563ce97acbe0a6e13;p=sbcl.git diff --git a/tests/run-compiler.sh b/tests/run-compiler.sh old mode 100644 new mode 100755 index 0dd33fd..068b538 --- a/tests/run-compiler.sh +++ b/tests/run-compiler.sh @@ -4,7 +4,7 @@ platform="${SBCL_SOFTWARE_TYPE}-${SBCL_MACHINE_TYPE}" if [ -z "$CC" ] then - CC=cc + CC=gcc fi args= @@ -13,6 +13,7 @@ case "$platform" in Darwin-X86) args="-arch i386" ;; SunOS-X86-64) args=-m64 ;; Linux-X86) args="-m32" ;; + Linux-PowerPC) args="-m32" ;; esac while [ $# -gt 0 ]; do @@ -24,6 +25,7 @@ while [ $# -gt 0 ]; do FreeBSD-X86-64) new=-fPIC ;; Linux-MIPS) new=-fPIC ;; Linux-X86-64) new=-fPIC ;; + Linux-PowerPC) new=-fPIC ;; NetBSD-PowerPC) new=-fPIC ;; NetBSD-X86-64) new=-fPIC ;; OpenBSD-PowerPC) new=-fPIC ;;