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
Didier Verna
asdf
Commits
a788232c
Commit
a788232c
authored
11 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Resolve punctuation conflict.
parent
23e5157b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/asdf.texinfo
+33
-7
33 additions, 7 deletions
doc/asdf.texinfo
with
33 additions
and
7 deletions
doc/asdf.texinfo
+
33
−
7
View file @
a788232c
...
...
@@ -227,15 +227,16 @@ You can usually load this copy using Common Lisp's @code{require} function:
@end lisp
As of the writing of this manual,
<<<<<<< HEAD
the following implementations provide ASDF 3 this way:
abcl allegro ccl clisp cmucl ecl mkcl sbcl
.
The following implementation only provide ASDF 2:
lispworks mkcl mocl xcl.
The following implementation doesn't provide
it
yet but will in an upcoming release:
scl
.
ABCL, ALLEGRO, CCL, clisp, CMUCL, ECL, Lispworks, mkcl, SBCL, XCL
.
The following implementation
s
only provide ASDF 2:
lispworks
,
mkcl
,
mocl
,
xcl.
The following implementation doesn't provide
ASDF
yet but will in an upcoming release:
SCL
.
The following implementations are obsolete, not actively maintained,
and most probably will never bundle
it
:
cormanlisp gcl genera mcl.
and most probably will never bundle
ASDF
:
cormanlisp
,
gcl
,
genera
,
mcl.
If the implementation you are using doesn't provide ASDF 2 or ASDF 3,
see @pxref
{
Loading ASDF,,Loading an otherwise installed ASDF
}
below.
...
...
@@ -2888,6 +2889,8 @@ or maybe simply to @code{clear-source-registry} (or @code{clear-configuration})
which will cause the initialization to happen next time around.
@section Introspection
@subsection *source-registry-parameter* variable
@vindex *source-registry-parameter*
We have made available the variable @code
{
*source-registry-parameter*
}
...
...
@@ -2897,6 +2900,29 @@ never be set!} It will be set as a side-effect of calling
@code
{
initialize-source-registry
}
; user code should treat it as
read-only.
@subsection Information about system dependencies
ASDF makes available three functions to read system interdependencies.
These are intended to aid programmers who wish to perform dependency
analyses.
@defun system-defsystem-depends-on system
@end defun
@defun system-depends-on system
@end defun
@defun system-weakly-depends-on system
Returns a list of names of systems that are weakly depended on by
@var
{
system
}
. Weakly depended on systems are optionally loaded only if
ASDF can find them; failure to find such systems does @em
{
not
}
cause an
error in loading.
Note that the return value for @code
{
system-weakly-depends-on
}
is simpler
than the return values of the other two system dependency introspection
functions.
@end defun
@section Status
This mechanism is vastly successful, and we have declared
...
...
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