Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
qitab
lisp-invocation
Compare Revisions
e662d591ab46550e08863dae1baaa65312fd38a6...91028c53573d590bce36d99c9cdf97008a5c2ad9
Commits (2)
1.0.3: change default lispworks executable name to lispworks-console.
· 57536dba
Francois-Rene Rideau
authored
Apr 08, 2015
57536dba
1.0.4: don't use -I on clisp.
· 91028c53
Francois-Rene Rideau
authored
May 07, 2015
91028c53
Hide whitespace changes
Inline
Side-by-side
lisp-invocation.asd
View file @
91028c53
...
...
@@ -17,6 +17,6 @@
:long-description
"lisp-invocation allows you to portably execute Lisp code
as subprocesses of a current Lisp process.
All known command-line accessible Common Lisp implementations are supported."
:version
"1.0.
2.1
"
:version
"1.0.
4
"
:depends-on
(
#-
asdf3.1
(
:version
"uiop"
"3.1.2"
))
:components
((
:file
"lisp-invocation"
)))
lisp-invocation.lisp
View file @
91028c53
...
...
@@ -140,7 +140,7 @@
:fullname
"GNU CLISP"
:name
"clisp"
:feature
:clisp
:flags
(
"-norc"
"--quiet"
"--quiet"
"-ansi"
"-I"
)
:flags
(
"-norc"
"--quiet"
"--quiet"
"-ansi"
)
;; don't use -I, for it induces extra prompt outputs.
:eval-flag
"-x"
:load-flag
"-i"
:arguments-end
"--"
...
...
@@ -204,10 +204,10 @@
(
define-lisp-implementation
(
:lispworks
:lw
)
()
:fullname
"LispWorks"
:name
"lispworks"
;; This assumes you dumped a proper image for batch processing...
:name
"lispworks
-console
"
;; This assumes you dumped a proper image for batch processing...
;; If you have a licensed copy of lispworks,
;; you can obtain the "lispworks" binary with, e.g.
;; echo '(hcl:save-image "
/
lispworks" :environment nil)' > /tmp/build.lisp ;
;; echo '(hcl:save-image "lispworks
-console
" :environment nil)' > /tmp/build.lisp ;
;; ./lispworks-6-0-0-x86-linux -siteinit - -init - -build /tmp/build.lisp
;; Note that you also need to copy the license file to
;; .../lispworks/lib/6-1-0-0/config/lwlicense
...
...