gnu: pth: Add support for aarch64.
* gnu/packages/pth.scm (pth)[arguments]: When compiling on aarch64 add the '--host=aarch64' flag. [home-page]: Use https.
This commit is contained in:
parent
cec21d689d
commit
10045e5c81
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2015 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
|
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -37,8 +38,13 @@
|
||||||
"0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj"))))
|
"0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:parallel-build? #f))
|
`(#:parallel-build? #f
|
||||||
(home-page "http://www.gnu.org/software/pth")
|
#:configure-flags (list
|
||||||
|
,@(if (string=? "aarch64-linux"
|
||||||
|
(%current-system))
|
||||||
|
'("--host=aarch64-unknown-linux-gnu")
|
||||||
|
'()))))
|
||||||
|
(home-page "https://www.gnu.org/software/pth")
|
||||||
(synopsis "Portable thread library")
|
(synopsis "Portable thread library")
|
||||||
(description
|
(description
|
||||||
"GNU Pth is a portable library providing non-preemptive, priority-based
|
"GNU Pth is a portable library providing non-preemptive, priority-based
|
||||||
|
|
Loading…
Reference in New Issue