X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Frun-compiler.sh;h=c59baae675ad09738422e689bd9ae23d47e7e01c;hb=1540c1c1d517c58fa9a41629beb65cdce7dfafb6;hp=0dd33fd78928ee808fb03f091201e2a8d8fddf3d;hpb=af0f0f905a9a48360e34581563ce97acbe0a6e13;p=sbcl.git diff --git a/tests/run-compiler.sh b/tests/run-compiler.sh index 0dd33fd..c59baae 100644 --- a/tests/run-compiler.sh +++ b/tests/run-compiler.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash platform="${SBCL_SOFTWARE_TYPE}-${SBCL_MACHINE_TYPE}" @@ -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 ;;