X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-host-2.lisp;h=72ce5982155a9f6860609f33e33448223f745d0e;hb=HEAD;hp=8bc96bf362796332568d5a68cfaaca31424ad4a5;hpb=89987c8a1599b9bfc267d8d54ea02c588e8b24a5;p=sbcl.git diff --git a/make-host-2.lisp b/make-host-2.lisp index 8bc96bf..72ce598 100644 --- a/make-host-2.lisp +++ b/make-host-2.lisp @@ -28,8 +28,8 @@ ;; ;; never insert stepper conditions (sb!c:insert-step-conditions 0) - ;; always stack-allocate if requested - (sb!c::stack-allocate-dynamic-extent 3))))) + ;; save FP and PC for alien calls -- or not + (sb!c:alien-funcall-saves-fp-and-pc #!+x86 3 #!-x86 0))))) (compile 'proclaim-target-optimization) (defun in-target-cross-compilation-mode (fun) @@ -52,6 +52,9 @@ ;; toplevel forms in the xcompiler backq.lisp file? (set-macro-character #\` #'sb!impl::backquote-macro) (set-macro-character #\, #'sb!impl::comma-macro) + + (set-dispatch-macro-character #\# #\+ #'she-reader) + (set-dispatch-macro-character #\# #\- #'she-reader) ;; Control optimization policy. (proclaim-target-optimization) ;; Specify where target machinery lives. @@ -59,6 +62,10 @@ (funcall fun)))) (compile 'in-target-cross-compilation-mode) + +;; Supress function/macro redefinition warnings under clisp. +#+clisp (setf custom:*suppress-check-redefinition* t) + (setf *target-compile-file* #'sb-xc:compile-file) (setf *target-assemble-file* #'sb!c:assemble-file) (setf *in-target-compilation-mode-fn* #'in-target-cross-compilation-mode)