Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
6e9dfee8
Commit
6e9dfee8
authored
24 years ago
by
dtc
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/foreign.lisp
+24
-9
24 additions, 9 deletions
code/foreign.lisp
with
24 additions
and
9 deletions
code/foreign.lisp
+
24
−
9
View file @
6e9dfee8
...
@@ -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.3
1
200
0/09/27 11:10:00
dtc Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.3
2
200
1/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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment