guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: femtolisp: Don't build on mips64el or armhf.


From: Leo Famulari
Subject: 01/01: gnu: femtolisp: Don't build on mips64el or armhf.
Date: Tue, 27 Sep 2016 16:29:56 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit 419fb3f1acc834e7cfc7e395b43be3cc1ddfadbf
Author: ng0 <address@hidden>
Date:   Thu Sep 22 09:08:03 2016 +0000

    gnu: femtolisp: Don't build on mips64el or armhf.
    
    * gnu/packages/lisp.scm (femtolisp)[supported-systems]: New field,
    remove support for mips64el and armhf.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/lisp.scm |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index d1180a7..439433a 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -3,7 +3,7 @@
 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <address@hidden>
 ;;; Copyright © 2015 Mark H Weaver <address@hidden>
 ;;; Copyright © 2016 Federico Beffa <address@hidden>
-;;; Copyright © 2016 ng0 <address@hidden>
+;;; Copyright © 2016 ng0 <address@hidden>
 ;;; Copyright © 2016 Andy Patterson <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -44,7 +44,8 @@
   #:use-module (gnu packages ed)
   #:use-module (gnu packages m4)
   #:use-module (gnu packages version-control)
-  #:use-module (ice-9 match))
+  #:use-module (ice-9 match)
+  #:use-module (srfi srfi-1))
 
 (define-public gcl
   (package
@@ -501,6 +502,11 @@ the InterLisp Standard.")
                 (sha256
                  (base32
                   "04rnwllxnl86zw8c6pwxznn49bvkvh0f1lfliy085vjzvlq3rgja"))))
+      ;; See "utils.h" for supported systems. Upstream bug:
+      ;; https://github.com/JeffBezanson/femtolisp/issues/25
+      (supported-systems
+       (fold delete %supported-systems
+             '("armhf-linux" "mips64el-linux")))
       (build-system gnu-build-system)
       (arguments
        `(#:make-flags '("CC=gcc" "release")



reply via email to

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