From 355f3342dafa66fac0395d2f7e4881f1044c1928 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 25 Aug 1992 17:50:23 +0000 Subject: [PATCH] If *backend* and *native-backend* are all the same then load macros and stuff as we compile them. --- tools/comcom.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/comcom.lisp b/tools/comcom.lisp index 84ed7bc93..89084b7fd 100644 --- a/tools/comcom.lisp +++ b/tools/comcom.lisp @@ -7,7 +7,9 @@ #+bootstrap (export '(assem::nop) "ASSEM") -(defparameter *load-stuff* #+bootstrap t #-bootstrap nil) +(defparameter *load-stuff* + #+bootstrap t + #-bootstrap (eq c:*backend* c:*native-backend*)) ;;; Import so that these types which appear in the globldb are the same... #+bootstrap -- GitLab