From: Thiemo Seufer Date: Wed, 5 Sep 2007 20:40:33 +0000 (+0000) Subject: 1.0.9.37: MIPS shared libraries will need an explicit -fPIC soon-ish. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=9a0a0d199e9fbecd1b5acd65293af5132b6825ac;p=sbcl.git 1.0.9.37: MIPS shared libraries will need an explicit -fPIC soon-ish. --- diff --git a/tests/foreign-stack-alignment.impure.lisp b/tests/foreign-stack-alignment.impure.lisp index c678e22..cdf8844 100644 --- a/tests/foreign-stack-alignment.impure.lisp +++ b/tests/foreign-stack-alignment.impure.lisp @@ -44,7 +44,7 @@ ;;;; number. (run "cc" - #+(and (or linux freebsd) (or x86-64 ppc)) "-fPIC" + #+(and (or linux freebsd) (or x86-64 ppc mips)) "-fPIC" #+(and x86-64 darwin) "-arch" #+(and x86-64 darwin) "x86_64" "stack-alignment-offset.c" "-o" "stack-alignment-offset") @@ -55,7 +55,7 @@ ;;;; Build the tool again, this time as a shared object, and load it (run "cc" "stack-alignment-offset.c" - #+(and (or linux freebsd) (or x86-64 ppc)) "-fPIC" + #+(and (or linux freebsd) (or x86-64 ppc mips)) "-fPIC" #+(and x86-64 darwin) "-arch" #+(and x86-64 darwin) "x86_64" #+darwin "-bundle" #-darwin "-shared" "-o" "stack-alignment-offset.so") diff --git a/version.lisp-expr b/version.lisp-expr index 604073b..f707ae1 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.9.36" +"1.0.9.37"