mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
prevent install ccl-bin on aarch64 linux
This commit is contained in:
parent
c2b73925e9
commit
10b5739048
|
|
@ -28,7 +28,10 @@
|
|||
(format *error-output* "~&Installing ccl-bin/~A...~%" (getf argv :version))
|
||||
(when (position "--without-install" (getf argv :argv) :test 'equal)
|
||||
(set-opt "without-install" t))
|
||||
(cons t argv))
|
||||
(if (equal "arm64" (uname-m))
|
||||
(progn (format *error-output* "~&Not supported platform arm64.~%")
|
||||
(cons nil argv))
|
||||
(cons t argv)))
|
||||
|
||||
(defun ccl-bin-download (argv)
|
||||
(let ((uname (uname))
|
||||
|
|
|
|||
Loading…
Reference in a new issue