Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
e8d33c03
Commit
e8d33c03
authored
Mar 23, 2015
by
Robert Goldman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COMPONENT-PATHNAME doc added. Fixed INPUT-FILES doc.
parent
bd233e52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
3 deletions
+34
-3
doc/asdf.texinfo
doc/asdf.texinfo
+34
-3
No files found.
doc/asdf.texinfo
View file @
e8d33c03
...
...
@@ -2319,9 +2319,17 @@ An operation @emph{may} provide methods for the following generic functions:
@findex input-files
A method for this function is often not needed,
since ASDF has a pretty clever default @code
{
input-files
}
mechanism.
You only need create a method if there are multiple ultimate input files,
and/or the bottom one doesn't depend
on the @code
{
component-pathname
}
of the component.
You only need create a method if there are multiple ultimate input
files.
Most operations inherit from @code
{
selfward-operation
}
, which
appropriately sets the input-files to include the source file itself.
@c FIXME: Add documentation of built-in operation types.
@defun input-files operation component
Return a list of pathnames that represent the input to @var
{
operation
}
performed on @var
{
component
}
.
@end defun
@item @code
{
operation-done-p
}
@findex operation-done-p
...
...
@@ -2755,6 +2763,29 @@ does additional processing to set the filesystem location of
the top component in that system.
This is detailed elsewhere. @xref
{
Defining systems with defsystem
}
.
To find the CL pathname corresponding to a component, use
@defun component-pathname component
Returns the pathname corresponding to @var
{
component
}
. For components
such as source files, this will be a filename pathname. For example:
@lisp
CL-USER> (asdf:component-pathname (asdf:find-system "xmls"))
#P"/Users/rpg/lisp/xmls/"
@end lisp
and
@lisp
CL-USER> (asdf:component-pathname
(asdf:find-component
(asdf:find-system "xmls") "xmls"))
#P"/Users/rpg/lisp/xmls/xmls.lisp"
@end lisp
@end defun
@subsubsection properties
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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