Skip to content
Snippets Groups Projects
Commit d0e68c31 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Merge branch 'master' of http://common-lisp.net/project/asdf/asdf

parents f3c8215d 6369aa94
No related branches found
No related tags found
No related merge requests found
...@@ -795,26 +795,34 @@ For more details on what these methods do, @pxref{Operations} in ...@@ -795,26 +795,34 @@ For more details on what these methods do, @pxref{Operations} in
@comment node-name, next, previous, up @comment node-name, next, previous, up
@section The defsystem grammar @section The defsystem grammar
@c This discussion does not distinguish the options that are only @c FIXME: @var typesetting not consistently used here. We should either expand
@c appropriate for modules (see the discussion in the object model part of @c its use to everywhere, or we should kill it everywhere.
@c the manual). We should fix this. [2010/10/15:rpg]
@example @example
system-definition := ( defsystem system-designator @var{option}* ) system-definition := ( defsystem system-designator @var{system-option}* )
system-option := :defsystem-depends-on system-list
| module-option
| option
module-option := :components component-list
| :serial [ t | nil ]
| :if-component-dep-fails component-dep-fail-option
option := :components component-list option :=
| :pathname pathname-specifier | :pathname pathname-specifier
| :default-component-class | :default-component-class class-name
| :perform method-form | :perform method-form
| :explain method-form | :explain method-form
| :output-files method-form | :output-files method-form
| :operation-done-p method-form | :operation-done-p method-form
| :depends-on ( @var{dependency-def}* ) | :depends-on ( @var{dependency-def}* )
| :serial [ t | nil ]
| :in-order-to ( @var{dependency}+ ) | :in-order-to ( @var{dependency}+ )
| :if-component-dep-fails component-dep-fail-option
system-list := ( @var{simple-component-name}* )
component-list := ( @var{component-def}* ) component-list := ( @var{component-def}* )
component-def := ( component-type simple-component-name @var{option}* ) component-def := ( component-type simple-component-name @var{option}* )
...@@ -859,6 +867,14 @@ the current package. So a component type @code{my-component-type}, in ...@@ -859,6 +867,14 @@ the current package. So a component type @code{my-component-type}, in
the current package @code{my-system-asd} can be specified as the current package @code{my-system-asd} can be specified as
@code{:my-component-type}, or @code{my-component-type}. @code{:my-component-type}, or @code{my-component-type}.
@subsection Defsystem depends on
The @code{:defsystem-depends-on} option to @code{defsystem} allows the
programmer to specify another ASDF-defined system or set of systems that
must be loaded @emph{before} the system definition is processed.
Typically this is used to load an ASDF extension that is used in the
system definition.
@subsection Pathname specifiers @subsection Pathname specifiers
@cindex pathname specifiers @cindex pathname specifiers
...@@ -1907,6 +1923,7 @@ list of paths, where ...@@ -1907,6 +1923,7 @@ list of paths, where
@section Search Algorithm @section Search Algorithm
@vindex *default-source-registry-exclusions*
In case that isn't clear, the semantics of the configuration is that In case that isn't clear, the semantics of the configuration is that
when searching for a system of a given name, when searching for a system of a given name,
......
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