diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-03-25 21:22:52 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-03-25 21:24:18 +0300 |
commit | 97b7201f990a5c472a57ceab238c9fc56e12067e (patch) | |
tree | aa7262da9c577668750ea0767f45d30a91c97314 /gnu/packages/c.scm | |
parent | 77ab6983a19ef307558ab2607920158d6bb94ba8 (diff) | |
download | patches-97b7201f990a5c472a57ceab238c9fc56e12067e.tar patches-97b7201f990a5c472a57ceab238c9fc56e12067e.tar.gz |
gnu: tcc: Remove aarch64-linux from %supported-systems.
* gnu/packages/c.scm (tcc)[supported-systems]: Remove aarch64-linux from
the %supported-systems.
Diffstat (limited to 'gnu/packages/c.scm')
-rw-r--r-- | gnu/packages/c.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm index d5b6631506..58bdb3e672 100644 --- a/gnu/packages/c.scm +++ b/gnu/packages/c.scm @@ -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 |