1.0.9.37: MIPS shared libraries will need an explicit -fPIC soon-ish.
authorThiemo Seufer <ths@networkno.de>
Wed, 5 Sep 2007 20:40:33 +0000 (20:40 +0000)
committerThiemo Seufer <ths@networkno.de>
Wed, 5 Sep 2007 20:40:33 +0000 (20:40 +0000)
tests/foreign-stack-alignment.impure.lisp
version.lisp-expr

index c678e22..cdf8844 100644 (file)
@@ -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")
index 604073b..f707ae1 100644 (file)
@@ -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"