guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: gnu: ada-ed: Adjust target system.


From: guix-commits
Subject: branch core-updates updated: gnu: ada-ed: Adjust target system.
Date: Sun, 18 Jul 2021 06:40:47 -0400

This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/core-updates by this push:
     new e4b70bc  gnu: ada-ed: Adjust target system.
e4b70bc is described below

commit e4b70bc55a538569465bcedee19d1f2607308e65
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jul 18 12:03:29 2021 +0300

    gnu: ada-ed: Adjust target system.
    
    * gnu/packages/ada.scm (ada-ed)[arguments]: Only set the target system
    when necessary.
    [supported-systems]: Add powerpc-linux.
---
 gnu/packages/ada.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/ada.scm b/gnu/packages/ada.scm
index d24aa2b..edd623b 100644
--- a/gnu/packages/ada.scm
+++ b/gnu/packages/ada.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2018 Danny Milosavljevic <dannym@scratchpost.org>
 ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -48,17 +49,20 @@
        (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (supported-systems (list "i686-linux" "x86_64-linux"
-                             "armhf-linux" "aarch64-linux"))
+                             "armhf-linux" "aarch64-linux"
+                             "powerpc-linux"))
     (outputs (list "out" "debug"))
     (arguments
      `(#:system
        ,@(match (%current-system)
            ;; This package predates 64-bit PCs: a ‘64-bit’ adaexec segfaults.
            ;; Force a 32-bit build targeting a similar architecture.
-           ((or "armhf-linux" "aarch64-linux")
+           ("aarch64-linux"
             `("armhf-linux"))
+           ("x86_64-linux"
+            `("i686-linux"))
            (_
-            `("i686-linux")))
+            (list (%current-system))))
        #:make-flags
        (let ((out (assoc-ref %outputs "out")))
          (list (string-append



reply via email to

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