Skip to content
Snippets Groups Projects
Commit 897f4d95 authored by rtoy's avatar rtoy
Browse files

For Darwin, we need to specify -arch i386 if we need to run ld so that

we produce 32-bit binaries instead of the default 64-bit (on 10.6 and
later).
parent ee4300cc
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.59 2010/04/20 17:57:44 rtoy Rel $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.60 2011/01/21 15:44:58 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -881,6 +881,8 @@ environment passed to Lisp." ...@@ -881,6 +881,8 @@ environment passed to Lisp."
#+(or solaris linux) "-G" #+(or solaris linux) "-G"
#+(or freebsd OpenBSD NetBSD irix) "-shared" #+(or freebsd OpenBSD NetBSD irix) "-shared"
#+darwin "-dylib" #+darwin "-dylib"
#+darwin "-arch"
#+darwin "i386"
"-o" "-o"
output-file output-file
;; Cause all specified libs to be loaded in full ;; Cause all specified libs to be loaded in full
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment