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
1eb36e8f
Commit
1eb36e8f
authored
14 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Miscellaneous tweaks to the discussion of pathnames in the defsystem grammar.
parent
6ca6db5d
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
+34
-17
34 additions, 17 deletions
doc/asdf.texinfo
with
34 additions
and
17 deletions
doc/asdf.texinfo
+
34
−
17
View file @
1eb36e8f
...
@@ -846,6 +846,14 @@ will be interpreted as the pathname @file{#p"foo/bar"},
...
@@ -846,6 +846,14 @@ will be interpreted as the pathname @file{#p"foo/bar"},
and a string @code
{
"foo/bar.quux"
}
and a string @code
{
"foo/bar.quux"
}
will be interpreted as the pathname @file
{
#p"foo/bar.quux"
}
.
will be interpreted as the pathname @file
{
#p"foo/bar.quux"
}
.
ASDF does not interpret the string @code
{
".."
}
to designate the parent
directory. This string will be passed through to the underlying
operating system for interpretation. We @emph
{
believe
}
that this will
work on all platforms where ASDF is deployed, but do not guarantee this
behavior. A pathname object with a relative directory component of
@code
{
:up
}
or @code
{
:back
}
is the only guaranteed way to specify a
parent directory.
If a symbol is given, it will be translated into a string,
If a symbol is given, it will be translated into a string,
and downcased in the process.
and downcased in the process.
The downcasing of symbols is unconventional,
The downcasing of symbols is unconventional,
...
@@ -857,23 +865,26 @@ so this makes more sense than attempting to use @code{:case :common}
...
@@ -857,23 +865,26 @@ so this makes more sense than attempting to use @code{:case :common}
as argument to @code
{
make-pathname
}
,
as argument to @code
{
make-pathname
}
,
which is reported not to work on some implementations.
which is reported not to work on some implementations.
Pathname
s
objects may be given to override the path for a component.
Pathname objects may be given to override the path for a component.
Such objects are typically specified using reader macros such as @code
{
#p
}
Such objects are typically specified using reader macros such as @code
{
#p
}
or @code
{
#.(make-pathname ...)
}
.
or @code
{
#.(make-pathname ...)
}
.
Note however, that @code
{
#p...
}
is a short for @code
{
#.(parse-namestring ...)
}
Note however, that @code
{
#p...
}
is a short
hand
for @code
{
#.(parse-namestring ...)
}
and that the behavior @code
{
parse-namestring
}
is completely non-portable,
and that the behavior
of
@code
{
parse-namestring
}
is completely non-portable,
unless you are using Common Lisp @code
{
logical-pathname
}
s
.
unless you are using Common Lisp @code
{
logical-pathname
}
s
(@xref
{
The defsystem grammar,,Warning about logical pathnames
}
, below
.
)
(@
p
xref
{
The defsystem grammar,,Warning about logical pathnames
}
, below)
.
Pathnames made with @code
{
#.(make-pathname ...)
}
Pathnames made with @code
{
#.(make-pathname ...)
}
can usually be done more easily with the string syntax above.
can usually be done more easily with the string syntax above.
The only case that you really need a pathname object is to override
The only case that you really need a pathname object is to override
the component-type default file type for a given component.
the component-type default file type for a given component.
Therefore,
it is a rare case that
pathname objects should be used
at all
.
Therefore, pathname objects should
only rarely
be used.
Unhappily, ASDF 1 didn't properly support
Unhappily, ASDF 1 didn't properly support
parsing component names as strings specifying paths with directories,
parsing component names as strings specifying paths with directories,
and the cumbersome @code
{
#.(make-pathname ...)
}
syntax had to be used.
and the cumbersome @code
{
#.(make-pathname ...)
}
syntax had to be used.
Note that when specifying pathname objects, no magic interpretation of the pathname
is made depending on the component type.
Note that when specifying pathname objects,
ASDF does not do any special interpretation of the pathname
influenced by the component type, unlike the procedure for
pathname-specifying strings.
On the one hand, you have to be careful to provide a pathname that correctly
On the one hand, you have to be careful to provide a pathname that correctly
fulfills whatever constraints are required from that component type
fulfills whatever constraints are required from that component type
(e.g. naming a directory or a file with appropriate type);
(e.g. naming a directory or a file with appropriate type);
...
@@ -883,27 +894,33 @@ be forced upon you if you were specifying a string.
...
@@ -883,27 +894,33 @@ be forced upon you if you were specifying a string.
@subsection Warning about logical pathnames
@subsection Warning about logical pathnames
We recommend that you no use logical pathnames in your asdf system
definitions, but logical pathnames @emph
{
are
}
supported.
To use logical pathnames,
To use logical pathnames,
you will have to provide a pathname object as a @code
{
:pathname
}
specifier
you will have to provide a pathname object as a @code
{
:pathname
}
specifier
to components that use it, using such syntax as
to components that use it, using such syntax as
@code
{
#p"LOGICAL-HOST:absolute;path;to;component.lisp"
}
.
@code
{
#p"LOGICAL-HOST:absolute;path;to;component.lisp"
}
.
You only have to specify such logical pathname for your system or
You only have to specify such logical pathname for your system or
some top-level component, as sub-components using the usual string syntax
some top-level component. Sub-components' relative pathnames, specified
for names will be properly merged with the pathname of their parent.
using the string syntax
for names, will be properly merged with the pathnames of their parents.
The specification of a logical pathname host however is @emph
{
not
}
The specification of a logical pathname host however is @emph
{
not
}
otherwise directly supported in the ASDF syntax
otherwise directly supported in the ASDF syntax
for pathname specifiers as strings.
for pathname specifiers as strings.
Logical pathnames are not specifically recommended to newcomers,
The @code
{
asdf-output-translation
}
layer will
but are otherwise supported.
avoid trying to resolve and translate logical-pathnames.
Moreover, the @code
{
asdf-output-translation
}
layer will
The advantage of this is that you can define yourself what translations you want to use
avoid trying to resolve and translate logical-pathnames,
so you can define yourself what translations you want to use
with the logical pathname facility.
with the logical pathname facility.
The disadvantage is that if you do not define such translations, any
system that uses logical pathnames will be have differently under
asdf-output-translations than other systems you use.
The user of logical pathnames will have to configure logical pathnames himself,
If you wish to use logical pathnames you will have to configure the
before they may be used, and ASDF provides no specific support for that.
translations yourself before they may be used. ASDF provides no
specific support for defining logical pathname translations.
@subsection Serial dependencies
@subsection Serial dependencies
...
...
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