prevent install ccl-bin on aarch64 linux

This commit is contained in:
SANO Masatoshi 2017-08-23 02:37:10 +09:00
parent c2b73925e9
commit 10b5739048

View file

@ -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))