Changeset 12626


Ignore:
Timestamp:
04/18/10 10:02:10 (13 years ago)
Author:
Mark Evenson
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/compile-file.lisp

    r12622 r12626  
    176176                        (fset name compiled-function)))
    177177                     (t
    178                       ;; FIXME Should be a warning or error of some sort...
     178                      ;; Add this warning when the stock ABCL compiles
     179                      ;; again, as all warnings in COMPILE-SYSTEM
     180                      ;; produce a non-zero exit status that stops
     181                      ;; build.xml in its tracks.
     182                      #+nil
     183                      (compiler-warn "Unable to compile function ~A.  Using interpreted form instead.~%" name)
    179184                      (format *error-output*
    180185                              "; Unable to compile function ~A.  Using interpreted form instead.~%" name)
Note: See TracChangeset for help on using the changeset viewer.