guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: address@hidden: Build with binutils-gold on armhf and aarch6


From: guix-commits
Subject: 02/02: gnu: address@hidden: Build with binutils-gold on armhf and aarch64.
Date: Mon, 4 Feb 2019 01:16:47 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 1009e6e7ecc00b72a51778e90b0212ccc33bfa7a
Author: Efraim Flashner <address@hidden>
Date:   Fri Feb 1 22:42:49 2019 +0200

    gnu: address@hidden: Build with binutils-gold on armhf and aarch64.
    
    * gnu/packages/golang.scm (address@hidden)[native-inputs]: Add binutils-gold
    for armhf-linux and aarch64-linux.
---
 gnu/packages/golang.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index cedfabe..7dbe27c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016, 2017, 2018 Efraim Flashner <address@hidden>
+;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <address@hidden>
 ;;; Copyright © 2016 Matthew Jordan <address@hidden>
 ;;; Copyright © 2016 Andy Wingo <address@hidden>
 ;;; Copyright © 2016 Ludovic Courtès <address@hidden>
@@ -399,6 +399,10 @@ in the style of communicating sequential processes 
(@dfn{CSP}).")
                  #t)))))))
     (native-inputs
      `(("go" ,go-1.4)
+       ,@(match (%current-system)
+           ((or "armhf-linux" "aarch64-linux")
+            `(("gold" ,binutils-gold)))
+           (_ `()))
        ,@(package-native-inputs go-1.4)))
     (supported-systems %supported-systems)))
 



reply via email to

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