Skip to content
Snippets Groups Projects
Commit b31ef5c0 authored by rtoy's avatar rtoy
Browse files

Update script to support SSE2 builds. (Basically copied from the sse2

bootstrap file.)
parent fae00663
No related branches found
No related tags found
No related merge requests found
...@@ -69,9 +69,13 @@ ...@@ -69,9 +69,13 @@
(load "vm:primtype") (load "vm:primtype")
(load "vm:move") (load "vm:move")
(load "vm:sap") (load "vm:sap")
(when (target-featurep :sse2)
(load "vm:sse2-sap"))
(load "vm:system") (load "vm:system")
(load "vm:char") (load "vm:char")
(load "vm:float") (if (target-featurep :sse2)
(load "vm:float-sse2")
(load "vm:float"))
(load "vm:memory") (load "vm:memory")
(load "vm:static-fn") (load "vm:static-fn")
...@@ -80,11 +84,18 @@ ...@@ -80,11 +84,18 @@
(load "vm:subprim") (load "vm:subprim")
(load "vm:debug") (load "vm:debug")
(load "vm:c-call") (load "vm:c-call")
(when (target-featurep :sse2)
(load "vm:sse2-c-call"))
(load "vm:print") (load "vm:print")
(load "vm:alloc") (load "vm:alloc")
(load "vm:call") (load "vm:call")
(load "vm:nlx") (load "vm:nlx")
(load "vm:values") (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:array")
(load "vm:pred") (load "vm:pred")
(load "vm:type-vops") (load "vm:type-vops")
......
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