Skip to content
Snippets Groups Projects
Commit 3083db6d authored by emarsden's avatar emarsden
Browse files

Fix for EXT:LOAD-FOREIGN: LDEMULATION environment variable passed to linker

via EXT:RUN-PROGRAM should be a keyword, not a string.

From Immanuel Litzroth.
parent a986dd58
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.46 2004/04/28 13:01:57 emarsden Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.47 2004/06/01 16:11:29 emarsden Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -732,7 +732,7 @@ environment passed to Lisp."
;; via the LDEMULATION environment variable, or via the "-m" command-line
;; option. Here we assume that LDEMULATION will be ignored by the platform
;; linker on Linux/i386 platforms.
:env `(#+(and x86 linux) ("LDEMULATION" . "elf_i386") ,@env)
:env `(#+(and x86 linux) (:ldemulation . "elf_i386") ,@env)
:input nil
:output error-output
:error :output)))
......
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