guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: pth: Add support for aarch64.


From: Efraim Flashner
Subject: 01/01: gnu: pth: Add support for aarch64.
Date: Thu, 2 Mar 2017 05:19:54 -0500 (EST)

efraim pushed a commit to branch core-updates
in repository guix.

commit 10045e5c81b6dfcf3804ceb1bb4b8df04bde7c98
Author: Efraim Flashner <address@hidden>
Date:   Thu Mar 2 11:51:43 2017 +0200

    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.
---
 gnu/packages/pth.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/pth.scm b/gnu/packages/pth.scm
index 50385b1..ed6637b 100644
--- a/gnu/packages/pth.scm
+++ b/gnu/packages/pth.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2012, 2015 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2014 Mark H Weaver <address@hidden>
+;;; Copyright © 2017 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -37,8 +38,13 @@
         "0ckjqw5kz5m30srqi87idj7xhpw6bpki43mj07bazjm2qmh3cdbj"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:parallel-build? #f))
-    (home-page "http://www.gnu.org/software/pth";)
+     `(#:parallel-build? #f
+       #: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")
     (description
      "GNU Pth is a portable library providing non-preemptive, priority-based



reply via email to

[Prev in Thread] Current Thread [Next in Thread]