Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
b31ef5c0
Commit
b31ef5c0
authored
Jan 22, 2009
by
rtoy
Browse files
Update script to support SSE2 builds. (Basically copied from the sse2
bootstrap file.)
parent
fae00663
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/cross-scripts/cross-x86-x86.lisp
View file @
b31ef5c0
...
...
@@ -69,9 +69,13 @@
(
load
"vm:primtype"
)
(
load
"vm:move"
)
(
load
"vm:sap"
)
(
when
(
target-featurep
:sse2
)
(
load
"vm:sse2-sap"
))
(
load
"vm:system"
)
(
load
"vm:char"
)
(
load
"vm:float"
)
(
if
(
target-featurep
:sse2
)
(
load
"vm:float-sse2"
)
(
load
"vm:float"
))
(
load
"vm:memory"
)
(
load
"vm:static-fn"
)
...
...
@@ -80,11 +84,18 @@
(
load
"vm:subprim"
)
(
load
"vm:debug"
)
(
load
"vm:c-call"
)
(
when
(
target-featurep
:sse2
)
(
load
"vm:sse2-c-call"
))
(
load
"vm:print"
)
(
load
"vm:alloc"
)
(
load
"vm:call"
)
(
load
"vm:nlx"
)
(
load
"vm:values"
)
;; These need to be loaded before array because array wants to use
;; some vops as templates.
(
load
(
if
(
target-featurep
:sse2
)
"vm:sse2-array"
"vm:x87-array"
))
(
load
"vm:array"
)
(
load
"vm:pred"
)
(
load
"vm:type-vops"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment