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
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
Hugo Ishimaru
asdf
Commits
f2525def
Commit
f2525def
authored
Sep 29, 2015
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update some docstrings.
parent
dbbee8eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
7 deletions
+17
-7
bundle.lisp
bundle.lisp
+14
-6
uiop/run-program.lisp
uiop/run-program.lisp
+3
-1
No files found.
bundle.lisp
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
"
compile the system and produce dynamic (.so/.dll) library for it.
Compare with LIB-OP."
))
(
:documentation
"
Compile 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
)
...
...
uiop/run-program.lisp
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
...
...
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