gnu: chez-scheme: Remove support for armhf.
* gnu/packages/chez.scm (chez-scheme)[supported-systems]: Remove armhf-linux from the list of supported systems.
This commit is contained in:
parent
08b3e4a970
commit
1e16648f82
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
|
||||||
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -94,8 +95,7 @@
|
||||||
(list ,(match (or (%current-target-system) (%current-system))
|
(list ,(match (or (%current-target-system) (%current-system))
|
||||||
("x86_64-linux" '(list "--machine=ta6le"))
|
("x86_64-linux" '(list "--machine=ta6le"))
|
||||||
("i686-linux" '(list "--machine=ti3le"))
|
("i686-linux" '(list "--machine=ti3le"))
|
||||||
;; FIXME: Some people succeeded in cross-compiling to
|
;; Let autodetection have its attempt on other architectures.
|
||||||
;; ARM. https://github.com/cisco/ChezScheme/issues/13
|
|
||||||
(_
|
(_
|
||||||
'())))
|
'())))
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -191,7 +191,9 @@
|
||||||
(find-files lib "scheme.boot"))
|
(find-files lib "scheme.boot"))
|
||||||
#t))))))
|
#t))))))
|
||||||
;; According to the documentation MIPS is not supported.
|
;; According to the documentation MIPS is not supported.
|
||||||
(supported-systems (delete "mips64el-linux" %supported-systems))
|
;; Cross-compiling for the Raspberry Pi is supported, but not native ARM.
|
||||||
|
(supported-systems (fold delete %supported-systems
|
||||||
|
'("mips64el-linux" "armhf-linux")))
|
||||||
(home-page "http://www.scheme.com")
|
(home-page "http://www.scheme.com")
|
||||||
(synopsis "R6RS Scheme compiler and run-time")
|
(synopsis "R6RS Scheme compiler and run-time")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue