[armedbear-cvs] r12626 - trunk/abcl/src/org/armedbear/lisp
Mark Evenson
mevenson at common-lisp.net
Sun Apr 18 10:02:10 UTC 2010
Author: mevenson
Date: Sun Apr 18 06:02:10 2010
New Revision: 12626
Log:
Add commented out warning of compilation failure.
Currently COMPILE-SYSTEM produces a non-zero exit status that stops
build.xml in its tracks, so the system compile would fail until we fix
the stack inconsistency.
Modified:
trunk/abcl/src/org/armedbear/lisp/compile-file.lisp
Modified: trunk/abcl/src/org/armedbear/lisp/compile-file.lisp
==============================================================================
--- trunk/abcl/src/org/armedbear/lisp/compile-file.lisp (original)
+++ trunk/abcl/src/org/armedbear/lisp/compile-file.lisp Sun Apr 18 06:02:10 2010
@@ -175,7 +175,12 @@
(when compile-time-too
(fset name compiled-function)))
(t
- ;; FIXME Should be a warning or error of some sort...
+ ;; Add this warning when the stock ABCL compiles
+ ;; again, as all warnings in COMPILE-SYSTEM
+ ;; produce a non-zero exit status that stops
+ ;; build.xml in its tracks.
+ #+nil
+ (compiler-warn "Unable to compile function ~A. Using interpreted form instead.~%" name)
(format *error-output*
"; Unable to compile function ~A. Using interpreted form instead.~%" name)
(when internal-compiler-errors
More information about the armedbear-cvs
mailing list