allow builds with :trace-file flags even with non-sbcl host compilers
authorChristophe Rhodes <csr21@cantab.net>
Thu, 20 Sep 2012 15:10:13 +0000 (16:10 +0100)
committerChristophe Rhodes <csr21@cantab.net>
Tue, 2 Oct 2012 17:52:15 +0000 (18:52 +0100)
:allow-other-keys t is a marvellous thing

src/cold/shared.lisp

index a6399fb..9102206 100644 (file)
          (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))