From 69d1abb6b1d8c7ef7e0728e87d10853a1306b16e Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Thu, 20 Sep 2012 16:10:13 +0100 Subject: [PATCH] allow builds with :trace-file flags even with non-sbcl host compilers :allow-other-keys t is a marvellous thing --- src/cold/shared.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 1.7.10.4