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
f2525def
Commit
f2525def
authored
9 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Update some docstrings.
parent
dbbee8eb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bundle.lisp
+14
-6
14 additions, 6 deletions
bundle.lisp
uiop/run-program.lisp
+3
-1
3 additions, 1 deletion
uiop/run-program.lisp
with
17 additions
and
7 deletions
bundle.lisp
+
14
−
6
View file @
f2525def
...
...
@@ -99,8 +99,14 @@ itself.")) ;; operation on a system and its dependencies
(
defclass
lib-op
(
link-op
gather-op
non-propagating-operation
)
((
gather-type
:initform
:object
:allocation
:class
)
(
bundle-type
:initform
:lib
:allocation
:class
))
(
:documentation
"Compile the system and produce linkable (.a) library for it.
Compare with DLL-OP."
))
(
:documentation
"Compile the system and produce a linkable static library (.a/.lib)
for all the linkable object files associated with the system. Compare with DLL-OP.
On most implementations, these object files only include extensions to the runtime
written in C or another language with a compiler producing linkable object files.
On CLASP, ECL, MKCL, these object files also include the contents of Lisp files
themselves. In any case, this operation will produce what you need to further build
a static runtime for your system, or a dynamic library to load in an existing runtime."
))
(
defclass
compile-bundle-op
(
basic-compile-bundle-op
selfward-operation
#+
(
or
clasp
ecl
mkcl
)
link-op
#-
(
or
clasp
ecl
)
gather-op
)
...
...
@@ -126,8 +132,8 @@ faster and more resource efficient."))
(
defclass
dll-op
(
link-op
gather-op
non-propagating-operation
)
((
gather-type
:initform
:object
:allocation
:class
)
(
bundle-type
:initform
:dll
:allocation
:class
))
(
:documentation
"
c
ompile the system and produce dynamic
(.so/.dll) library for it.
Compare with LIB-OP."
))
(
:documentation
"
C
ompile the system and produce
a
dynamic
loadable library (.so/.dll)
for all the linkable object files associated with the system.
Compare with LIB-OP."
))
(
defclass
deliver-asd-op
(
basic-compile-op
selfward-operation
)
((
selfward-operation
...
...
@@ -161,11 +167,13 @@ Compare with LIB-OP."))
(
defclass
monolithic-lib-op
(
monolithic-bundle-op
lib-op
non-propagating-operation
)
((
gather-type
:initform
:static-library
:allocation
:class
))
(
:documentation
"Create a single linkable library for the system and its dependencies."
))
(
:documentation
"Compile the system and produce a linkable static library (.a/.lib)
for all the linkable object files associated with the system or its dependencies. See LIB-OP."
))
(
defclass
monolithic-dll-op
(
monolithic-bundle-op
dll-op
non-propagating-operation
)
((
gather-type
:initform
:static-library
:allocation
:class
))
(
:documentation
"Create a single dynamic (.so/.dll) library for the system and its dependencies."
))
(
:documentation
"Compile the system and produce a dynamic loadable library (.so/.dll)
for all the linkable object files associated with the system or its dependencies. See LIB-OP"
))
(
defclass
image-op
(
monolithic-bundle-op
selfward-operation
#+
(
or
clasp
ecl
mkcl
)
link-op
#+
(
or
clasp
ecl
mkcl
)
gather-op
)
...
...
This diff is collapsed.
Click to expand it.
uiop/run-program.lisp
+
3
−
1
View file @
f2525def
...
...
@@ -838,7 +838,9 @@ It returns a process-info plist with possible keys:
&allow-other-keys
)
"Run program specified by COMMAND,
either a list of strings specifying a program and list of arguments,
or a string specifying a shell command (/bin/sh on Unix, CMD.EXE on Windows).
or a string specifying a shell command (/bin/sh on Unix, CMD.EXE on Windows);
_synchronously_ process its output as specified and return the processing results
when the program and its output processing are complete.
Always call a shell (rather than directly execute the command when possible)
if FORCE-SHELL is specified. Similarly, never call a shell if FORCE-SHELL is
...
...
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