~ chicken-core (chicken-5) 4a04895c43c0f21337d4ce17934223b488dce4a4
commit 4a04895c43c0f21337d4ce17934223b488dce4a4
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Thu May 20 15:34:02 2010 +0200
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Thu May 20 15:34:02 2010 +0200
csc didn't handle -verbose (thanks to mario)
diff --git a/csc.scm b/csc.scm
index f3274e4c..d0ce4236 100644
--- a/csc.scm
+++ b/csc.scm
@@ -590,7 +590,7 @@ EOF
[(-libs)
(set! inquiry-only #t)
(set! show-libs #t) ]
- [(-v)
+ [(-v -verbose)
(when (and (number? verbose) (not msvc))
(set! compile-options (cons* "-v" "-Q" compile-options))
(set! link-options (cons (if msvc "-VERBOSE" "-v") link-options)) )
Trap