Skip to content
Snippets Groups Projects
Commit 2c4dc13d authored by pw's avatar pw
Browse files

Add missing reference to DLL for Linux

parent 76ed7755
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/compiler/generic/core.lisp,v 1.32 1997/01/18 14:31:14 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.33 1997/04/01 12:04:25 pw Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -95,8 +95,13 @@
(gethash name lisp::*assembler-routines*))
(:foreign
(assert (stringp name))
(gethash name lisp::*foreign-symbols*))
;;; pw -- don't the RISC systems need this too?
(multiple-value-bind
(value found)
(gethash name lisp::*foreign-symbols*)
(if found
(values value found)
(gethash (concatenate 'string "PVE_stub_" name)
lisp::*foreign-symbols*))))
#+x86
(:code-object
(values
......
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