From: Christophe Rhodes Date: Thu, 20 Sep 2012 15:10:13 +0000 (+0100) Subject: allow builds with :trace-file flags even with non-sbcl host compilers X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=69d1abb6b1d8c7ef7e0728e87d10853a1306b16e;p=sbcl.git allow builds with :trace-file flags even with non-sbcl host compilers :allow-other-keys t is a marvellous thing --- diff --git a/src/cold/shared.lisp b/src/cold/shared.lisp index a6399fb..9102206 100644 --- a/src/cold/shared.lisp +++ b/src/cold/shared.lisp @@ -378,8 +378,8 @@ (multiple-value-bind (output-truename warnings-p failure-p) (if trace-file (funcall compile-file src :output-file tmp-obj - :trace-file t) - (funcall compile-file src :output-file tmp-obj )) + :trace-file t :allow-other-keys t) + (funcall compile-file src :output-file tmp-obj)) (declare (ignore warnings-p)) (cond ((not output-truename) (error "couldn't compile ~S" src))