Skip to content
Snippets Groups Projects
Commit 6e9dfee8 authored by dtc's avatar dtc
Browse files

o Signal an error if a file given to load-foreign is not found. Suggested

  by Colin Walters.
parent c705f0cb
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.31 2000/09/27 11:10:00 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.32 2001/01/05 05:43:47 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -503,9 +503,17 @@ to skip undefined symbols which don't have an address." ...@@ -503,9 +503,17 @@ to skip undefined symbols which don't have an address."
*foreign-segment-free-pointer*) *foreign-segment-free-pointer*)
output-file output-file
symbol-table-file symbol-table-file
(append (mapcar #'(lambda (name) (append (mapcar
(unix-namestring name)) #'(lambda (name)
files) (or (unix-namestring name)
(error 'simple-file-error
:pathname name
:format-control
"File does not exist: ~A."
:format-arguments
(list name))))
files)
libraries)) libraries))
:env env :env env
:input nil :input nil
...@@ -633,11 +641,18 @@ to skip undefined symbols which don't have an address." ...@@ -633,11 +641,18 @@ to skip undefined symbols which don't have an address."
#+(or solaris linux) "-G" #+irix "-shared" #+(or solaris linux) "-G" #+irix "-shared"
"-o" "-o"
output-file output-file
(append (mapcar #'(lambda (name) (append (mapcar
(unix-namestring name)) #'(lambda (name)
(if (atom files) (or (unix-namestring name)
(list files) (error 'simple-file-error
files)) :pathname name
:format-control
"File does not exist: ~A."
:format-arguments
(list name))))
(if (atom files)
(list files)
files))
libraries)) libraries))
:env env :env env
:input nil :input nil
......
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