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
443b6526
Commit
443b6526
authored
18 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Merge in changes from the cross-compile scripts used for the
double-double work. This makes the script a bit more up-to-date.
parent
cea9b728
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
tools/cross-scripts/cross-sparc-sparc.lisp
+19
-2
19 additions, 2 deletions
tools/cross-scripts/cross-sparc-sparc.lisp
with
19 additions
and
2 deletions
tools/cross-scripts/cross-sparc-sparc.lisp
+
19
−
2
View file @
443b6526
...
@@ -12,15 +12,17 @@
...
@@ -12,15 +12,17 @@
:complex-fp-vops
; Some slightly faster FP vops on complex numbers
:complex-fp-vops
; Some slightly faster FP vops on complex numbers
:linkage-table
:linkage-table
:stack-checking
; Throw error if we run out of stack
:stack-checking
; Throw error if we run out of stack
:heap-overflow-check
; Throw error if we run out of heap
:heap-overflow-check
; Throw error if we run out of
; heap (This requires gencgc!)
:gencgc
; Generational GC
:gencgc
; Generational GC
:relative-package-names
; Relative package names from Allegro
:relative-package-names
; Relative package names from Allegro
:conservative-float-type
:conservative-float-type
:hash-new
:hash-new
:random-mt19937
; MT-19937 generator
:random-mt19937
; MT-19937 generator
:cmu
; Announce this is CMUCL
:cmu
; Announce this is CMUCL
:cmu19
:cmu19
a
; Current version identifier
:cmu19
:cmu19
c
; Current version identifier
:modular-arith
; Modular arithmetic
:modular-arith
; Modular arithmetic
:double-double
; Double-double float support
)
)
;; Features to remove from current *features* here
;; Features to remove from current *features* here
'
(
:sparc-v8
:sparc-v7
; Choose only one of :sparc-v7, :sparc-v8, :sparc-v9
'
(
:sparc-v8
:sparc-v7
; Choose only one of :sparc-v7, :sparc-v8, :sparc-v9
...
@@ -161,8 +163,23 @@
...
@@ -161,8 +163,23 @@
OLD-SPARC:SIMPLE-BIT-VECTOR-TYPE
OLD-SPARC:SIMPLE-BIT-VECTOR-TYPE
OLD-SPARC:SIMPLE-STRING-TYPE
OLD-SPARC:SIMPLE-VECTOR-TYPE
OLD-SPARC:SIMPLE-STRING-TYPE
OLD-SPARC:SIMPLE-VECTOR-TYPE
OLD-SPARC:SIMPLE-ARRAY-TYPE
OLD-SPARC:VECTOR-DATA-OFFSET
OLD-SPARC:SIMPLE-ARRAY-TYPE
OLD-SPARC:VECTOR-DATA-OFFSET
OLD-SPARC:DOUBLE-FLOAT-DIGITS
old-sparc:single-float-digits
OLD-SPARC:DOUBLE-FLOAT-EXPONENT-BYTE
OLD-SPARC:DOUBLE-FLOAT-NORMAL-EXPONENT-MAX
OLD-SPARC:DOUBLE-FLOAT-SIGNIFICAND-BYTE
OLD-SPARC:SINGLE-FLOAT-EXPONENT-BYTE
OLD-SPARC:SINGLE-FLOAT-NORMAL-EXPONENT-MAX
OLD-SPARC:SINGLE-FLOAT-SIGNIFICAND-BYTE
))
))
;; Modular arith hacks. When cross-compiling, the compiler wants to
;; constant-fold some stuff, and it needs the following functions to
;; do so. This just gets rid of the hundreds of errors that happen.
(
setf
(
fdefinition
'vm::ash-left-mod32
)
#'
old-sparc::ash-left-mod32
)
(
setf
(
fdefinition
'vm::lognot-mod32
)
#'
old-sparc::lognot-mod32
)
;; End modular arith hacks
(
let
((
function
(
symbol-function
'kernel:error-number-or-lose
)))
(
let
((
function
(
symbol-function
'kernel:error-number-or-lose
)))
(
let
((
*info-environment*
(
c:backend-info-environment
c:*target-backend*
)))
(
let
((
*info-environment*
(
c:backend-info-environment
c:*target-backend*
)))
(
setf
(
symbol-function
'kernel:error-number-or-lose
)
function
)
(
setf
(
symbol-function
'kernel:error-number-or-lose
)
function
)
...
...
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