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
a1946b35
Commit
a1946b35
authored
10 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Prepend underscore in extern-alien-name for darwin/ppc.
parent
571dd490
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/code/ppc-vm.lisp
+1
-1
1 addition, 1 deletion
src/code/ppc-vm.lisp
src/tools/cross-scripts/cross-ppc-ppc-darwin.lisp
+2
-2
2 additions, 2 deletions
src/tools/cross-scripts/cross-ppc-ppc-darwin.lisp
with
3 additions
and
3 deletions
src/code/ppc-vm.lisp
+
1
−
1
View file @
a1946b35
...
@@ -297,7 +297,7 @@
...
@@ -297,7 +297,7 @@
;;;
;;;
(
defun
extern-alien-name
(
name
)
(
defun
extern-alien-name
(
name
)
(
declare
(
type
simple-base-string
name
))
(
declare
(
type
simple-base-string
name
))
name
)
(
concatenate
'simple-base-string
"_"
name
)
)
#-
linkage-table
#-
linkage-table
(
defun
lisp::foreign-symbol-address-aux
(
name
flavor
)
(
defun
lisp::foreign-symbol-address-aux
(
name
flavor
)
...
...
This diff is collapsed.
Click to expand it.
src/tools/cross-scripts/cross-ppc-ppc-darwin.lisp
+
2
−
2
View file @
a1946b35
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
(
in-package
:vm
)
(
in-package
:vm
)
(
defun
extern-alien-name
(
name
)
(
defun
extern-alien-name
(
name
)
(
declare
(
type
simple-string
name
))
(
declare
(
type
simple-string
name
))
name
)
(
concatenate
'simple-string
"_"
name
)
)
;; When compiling the compiler, vm:fixup-code-object and
;; When compiling the compiler, vm:fixup-code-object and
;; vm:sanctify-for-execution are undefined. Import these to get rid
;; vm:sanctify-for-execution are undefined. Import these to get rid
;; of that error.
;; of that error.
...
@@ -199,7 +199,7 @@
...
@@ -199,7 +199,7 @@
(
in-package
:vm
)
(
in-package
:vm
)
(
defun
extern-alien-name
(
name
)
(
defun
extern-alien-name
(
name
)
(
declare
(
type
simple-string
name
))
(
declare
(
type
simple-string
name
))
name
)
(
concatenate
'simple-string
"_"
name
)
)
(
export
'extern-alien-name
)
(
export
'extern-alien-name
)
(
export
'fixup-code-object
)
(
export
'fixup-code-object
)
(
export
'sanctify-for-execution
)
(
export
'sanctify-for-execution
)
...
...
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