Skip to content

Commit

Permalink
1.0.9.37: MIPS shared libraries will need an explicit -fPIC soon-ish.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiemo Seufer committed Sep 5, 2007
1 parent 82d3524 commit 9a0a0d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/foreign-stack-alignment.impure.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand All @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 9a0a0d1

Please sign in to comment.