gnu: tcc: Remove aarch64-linux from %supported-systems.
* gnu/packages/c.scm (tcc)[supported-systems]: Remove aarch64-linux from the %supported-systems.
This commit is contained in:
parent
77ab6983a1
commit
97b7201f99
|
@ -28,7 +28,8 @@
|
|||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages texinfo)
|
||||
#:use-module (gnu packages guile))
|
||||
#:use-module (gnu packages guile)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define-public tcc
|
||||
(package
|
||||
|
@ -62,7 +63,8 @@
|
|||
"/lib"))
|
||||
#:test-target "test"))
|
||||
;; Fails to build on MIPS: "Unsupported CPU"
|
||||
(supported-systems (delete "mips64el-linux" %supported-systems))
|
||||
(supported-systems (fold delete %supported-systems
|
||||
'("mips64el-linux" "aarch64-linux")))
|
||||
(synopsis "Tiny and fast C compiler")
|
||||
(description
|
||||
"TCC, also referred to as \"TinyCC\", is a small and fast C compiler
|
||||
|
|
Loading…
Reference in New Issue