Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
58db416b
Commit
58db416b
authored
May 28, 2003
by
Kevin Rosenberg
Browse files
Export *compile-file-{errors,warnings}-behavior*
Document these variables in the README
parent
ccb8d26a
Changes
3
Hide whitespace changes
Inline
Side-by-side
README
View file @
58db416b
$
Id
:
README
,
v
1.3
2
2003
/
05
/
2
7
2
2
:
0
3
:
16
kevinrosenberg
Exp
$
-*-
Text
-*-
$
Id
:
README
,
v
1.3
3
2003
/
05
/
2
8
2
0
:
0
0
:
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 warning
s 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, depe
nding
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 error
s when a file is compiled. The
variable
s
*compile-file-warnings-behaviour*
and
*compile-file-errors-behavior* controls the ha
nd
l
ing
of any such
events. The valid values for these variables are :error, :warn, and
:ignore.
----------------------------------------------------------
TODO List
...
...
asdf.lisp
View file @
58db416b
;;; This is asdf: Another System Definition Facility. $Revision: 1.7
2
$
;;; This is asdf: Another System Definition Facility. $Revision: 1.7
3
$
;;;
;;; 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.7
2
$"
)
(
defvar
*asdf-revision*
(
let*
((
v
"$Revision: 1.7
3
$"
)
(
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
...
...
debian/changelog
View file @
58db416b
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*
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment