projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
47f408c
)
allow builds with :trace-file flags even with non-sbcl host compilers
author
Christophe Rhodes
<csr21@cantab.net>
Thu, 20 Sep 2012 15:10:13 +0000
(16:10 +0100)
committer
Christophe 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
patch
|
blob
|
history
diff --git
a/src/cold/shared.lisp
b/src/cold/shared.lisp
index
a6399fb
..
9102206
100644
(file)
--- 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))