Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal J. Bourguignon
asdf
Commits
d0e68c31
Commit
d0e68c31
authored
14 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
http://common-lisp.net/project/asdf/asdf
parents
f3c8215d
6369aa94
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/asdf.texinfo
+25
-8
25 additions, 8 deletions
doc/asdf.texinfo
with
25 additions
and
8 deletions
doc/asdf.texinfo
+
25
−
8
View file @
d0e68c31
...
@@ -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,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment