Skip to content
Snippets Groups Projects
Commit 520bb5c7 authored by ram's avatar ram
Browse files

Fix assemfile load.

parent 6348f0d8
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.61 1993/08/19 17:17:44 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.62 1993/08/19 17:22:08 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -18,8 +18,6 @@ ...@@ -18,8 +18,6 @@
(defvar *byte-compile* #+small t #-small :maybe) (defvar *byte-compile* #+small t #-small :maybe)
(load "target:assembly/assem-file")
(with-compiler-log-file (with-compiler-log-file
("target:compile-lisp.log" ("target:compile-lisp.log"
:optimize '(optimize (speed 2) (space 2) (inhibit-warnings 2) :optimize '(optimize (speed 2) (space 2) (inhibit-warnings 2)
...@@ -44,6 +42,10 @@ ...@@ -44,6 +42,10 @@
(comf "target:code/sysmacs" :byte-compile *byte-compile*) (comf "target:code/sysmacs" :byte-compile *byte-compile*)
;;; Assembly files. ;;; Assembly files.
(comf "target:assembly/assemfile")
(load "target:assembly/assemfile")
(when (c:backend-featurep :pmax) (when (c:backend-featurep :pmax)
(comf "target:assembly/mips/assem-rtns" :assem t) (comf "target:assembly/mips/assem-rtns" :assem t)
(comf "target:assembly/mips/array" :assem t) (comf "target:assembly/mips/array" :assem t)
......
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