Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • qitab/lisp-invocation
1 result
Show changes
Commits on Source (1)
......@@ -37,7 +37,7 @@ REGISTER-LISP-IMPLEMENTATION."
:fullname ,fullname
:name ,(native-namestring (subpathname dir executable))
:feature :allegro ;; do we want a more discriminating feature expression?
:flags '("-qq")
:flags ("-qq")
:eval-flag "-e"
:load-flag "-L"
;; :quit-flags ("-kill")
......
......@@ -32,7 +32,7 @@ Not supported at all are:
(define-lisp-implementation (:allegro :acl) ()
:fullname "Allegro CL"
:name "alisp"
:name "alisp" ;; on Windows, you might prefer the Win32 console application build.exe, which seems to be an mlisp variant ("modern" syntax)
:feature :allegro
:flags ("-qq") ; -q only ? on windows, +c ? On Allegro 5 and earlier, -Q and/or -QQ ?
:eval-flag "-e"
......
......@@ -13,7 +13,7 @@
(error "ASDF 3.1.2 required"))
(defsystem "lisp-invocation"
:version "1.0.8"
:version "1.0.9"
:author ("Francois-Rene Rideau")
:maintainer "Francois-Rene Rideau"
:licence "MIT"
......