gnu: tcc: Mark aarch64-linux as supported.

* gnu/packages/c.scm (tcc)[supported-systems]: Remove aarch64.
This commit is contained in:
Efraim Flashner 2019-01-31 16:41:24 +02:00
parent 740a335558
commit 0270b24b65
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3,6 +3,7 @@
;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz> ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -37,8 +38,7 @@ (define-module (gnu packages c)
#:use-module (gnu packages python) #:use-module (gnu packages python)
#:use-module (gnu packages autotools) #:use-module (gnu packages autotools)
#:use-module (gnu packages gettext) #:use-module (gnu packages gettext)
#:use-module (gnu packages pkg-config) #:use-module (gnu packages pkg-config))
#:use-module (srfi srfi-1))
(define-public tcc (define-public tcc
(package (package
@ -72,8 +72,7 @@ (define-public tcc
"/lib")) "/lib"))
#:test-target "test")) #:test-target "test"))
;; Fails to build on MIPS: "Unsupported CPU" ;; Fails to build on MIPS: "Unsupported CPU"
(supported-systems (fold delete %supported-systems (supported-systems (delete "mips64el-linux" %supported-systems))
'("mips64el-linux" "aarch64-linux")))
(synopsis "Tiny and fast C compiler") (synopsis "Tiny and fast C compiler")
(description (description
"TCC, also referred to as \"TinyCC\", is a small and fast C compiler "TCC, also referred to as \"TinyCC\", is a small and fast C compiler