Skip to content
Snippets Groups Projects
Commit 58db416b authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

Export *compile-file-{errors,warnings}-behavior*

Document these variables in the README
parent ccb8d26a
No related branches found
No related tags found
No related merge requests found
$Id: README,v 1.32 2003/05/27 22:03:16 kevinrosenberg Exp $ -*- Text -*-
$Id: README,v 1.33 2003/05/28 20:00:42 kevinrosenberg Exp $ -*- Text -*-
asdf: another system definition facility
......@@ -619,13 +619,13 @@ Operations may go wrong (for example when source files contain
errors). These are signalled using generalised instances of
OPERATION-ERROR
* Compilation warning handling
* Compilation error and warning handling
ASDF checks for compiler warnings when a file is compiled. The
variable asdf::*compile-file-warnings-behaviour* controls the handling
of any such warnings. The default value is :error or :warn, depending
upon the Common Lisp implementation. This variable can be set to
:ignore if you want ASDF to ignore any compiler warnings.
ASDF checks for warnings and errors when a file is compiled. The
variables *compile-file-warnings-behaviour* and
*compile-file-errors-behavior* controls the handling of any such
events. The valid values for these variables are :error, :warn, and
:ignore.
----------------------------------------------------------
TODO List
......
;;; This is asdf: Another System Definition Facility. $Revision: 1.72 $
;;; This is asdf: Another System Definition Facility. $Revision: 1.73 $
;;;
;;; Feedback, bug reports, and patches are all welcome: please mail to
;;; <cclan-list@lists.sf.net>. But note first that the canonical
......@@ -74,6 +74,8 @@
;#:*component-parent-pathname*
#:*central-registry* ; variables
#:*compile-file-warnings-behaviour*
#:*compile-file-failure-behaviour*
#:operation-error #:compile-failed #:compile-warned #:compile-error
#:system-definition-error
......@@ -89,7 +91,7 @@
(in-package #:asdf)
(defvar *asdf-revision* (let* ((v "$Revision: 1.72 $")
(defvar *asdf-revision* (let* ((v "$Revision: 1.73 $")
(colon (or (position #\: v) -1))
(dot (position #\. v)))
(and v colon dot
......@@ -98,8 +100,8 @@
(parse-integer v :start (1+ dot)
:junk-allowed t)))))
(defvar *compile-file-warnings-behaviour* :warn)
(defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn)
(defvar *compile-file-warnings-behaviour* :warn)
(defvar *compile-file-failure-behaviour* #+sbcl :error #-sbcl :warn)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; utility stuff
......
cl-asdf (1.73b) unstable; urgency=low
* Update README
* export two variables
-- Kevin M. Rosenberg <kmr@debian.org> Wed, 28 May 2003 11:19:40 -0600
cl-asdf (1.73) unstable; urgency=low
* Update README to mention asdf::*compile-file-warnings-behaviour*
......
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