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 (2)
(defpackage :lisp-invocation/allegro-variants
(:use :common-lisp :fare-utils :uiop :lisp-invocation/lisp-invocation))
(:use :common-lisp :fare-utils :uiop :lisp-invocation/lisp-invocation)
(:export #:all-allegro-variants #:current-lisp-variant))
(in-package :lisp-invocation/allegro-variants)
......@@ -27,7 +28,7 @@ REGISTER-LISP-IMPLEMENTATION."
:for (smpvar smpname smpfullname) :in `(("" "" "") ("S" :_s " (SMP)")) :do
(loop
:for (bitsvar bitsname bitsfullname) :in '(("" "" "") ("64" "_64" " (64-bit words)"))
:for dirvar = (format nil "~:@(ALLEGRO~A~A~)" bitsvar smpvar)
:for dirvar = (format nil "~:@(ALLEGRO~A~ADIR~)" bitsvar smpvar)
:for dir = (getenv-pathname dirvar :want-absolute t :ensure-directory t) :do
(loop :for (charname charfullname) :in '(("" "") ("8" " (8-bit chars)")) :do
(loop
......@@ -59,4 +60,29 @@ REGISTER-LISP-IMPLEMENTATION."
:quit-format "(excl:exit ~A :quiet t)"
:dump-format "(progn (sys:resize-areas :global-gc t :pack-heap t :sift-old-areas t :tenure t) (excl:dumplisp :name ~A :suppress-allegro-cl-banner t))"))))))))
(defun current-lisp-variant ()
(let ((type (implementation-type)))
(case type
(:acl
(conc-keyword
:allegro
;; I would have liked to make it depend only on the rebindable *features*, but there's
;; nothing in Allegro's *features* for case sensitivity, though there is for :ICS support.
#+allegro (when (eq excl:*current-case-mode* :case-sensitive-lower) :modern)
(unless (featurep :ics) "8") ;; in uiop/os, we use: (excl:ics-target-case (:-ics "8"))
(when (featurep :64bit) "_64")
(when (featurep :smp) :_s)))
(:ecl
(if (featurep :ecl-bytecmp)
:ecl_bytecodes
:ecl))
;; Unshorten some aliases
(:cmu :cmucl)
(:lwpe :lispworks-personal-edition)
(:lw :lispworks)
(:smbx :symbolics)
(otherwise
type))))
(map () 'register-lisp-implementation* (all-allegro-variants))
......@@ -13,7 +13,7 @@
(error "ASDF 3.1.2 required"))
(defsystem "lisp-invocation"
:version "1.0.11"
:version "1.0.12"
:author ("Francois-Rene Rideau")
:maintainer "Francois-Rene Rideau"
:licence "MIT"
......