Skip to content
Snippets Groups Projects
Commit 2ccabece authored by csr21's avatar csr21
Browse files

Enforce no-warnings no-style-warnings compilation under SBCL

darcs-hash:20030604134431-ed5a3-59afd0121d6c4d96eef3f14e16da8a504c4a3c19.gz
parent ea67b92c
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,11 @@
#+sbcl
(defmethod perform :around ((o compile-op) (f clx-source-file))
;; our CLX library should compile without WARNINGs, and ideally
;; without STYLE-WARNINGs. Since it currently does, let's enforce
;; it here so that we can catch regressions easily.
(setf (operation-on-warnings o) :error
(operation-on-failure o) :error)
;; a variety of accessors, such as AREF-CARD32, are not declared
;; INLINE. Without this (non-ANSI) static-type-inference behaviour,
;; SBCL emits about 100 optimization notes (roughly one fifth of all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment