guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: address@hidden: Fix building with address@hidden


From: Efraim Flashner
Subject: 01/02: gnu: address@hidden: Fix building with address@hidden
Date: Thu, 4 Jan 2018 04:48:40 -0500 (EST)

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

commit 7bbc708a4e5849158a6b688da0a0958b275f9eea
Author: Efraim Flashner <address@hidden>
Date:   Tue Jan 2 10:33:02 2018 +0200

    gnu: address@hidden: Fix building with address@hidden
    
    * gnu/packages/gcc.scm (address@hidden)[source]: Add snippet to adjust
    linux-unwind.h to changes in address@hidden
---
 gnu/packages/gcc.scm | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 8b0050d..f7116bc 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -363,7 +363,18 @@ Go.  It also includes runtime support libraries for these 
languages.")
                (base32
                 "08yggr18v373a1ihj0rg2vd6psnic42b518xcgp3r9k81xz1xyr2"))
               (patches (search-patches "gcc-arm-link-spec-fix.patch"
-                                       "gcc-fix-texi2pod.patch"))))
+                                       "gcc-fix-texi2pod.patch"))
+              (modules '((guix build utils)))
+              ;; This is required for building with glibc-2.26.
+              ;; https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81712
+              (snippet
+               '(for-each
+                  (lambda (dir)
+                    (substitute* (string-append "libgcc/config/"
+                                                dir "/linux-unwind.h")
+                      (("struct ucontext") "ucontext_t")))
+                  '("aarch64" "alpha" "bfin" "i386" "m68k"
+                    "pa" "sh" "tilepro" "xtensa")))))
     (supported-systems %supported-systems)
     (inputs
      `(("isl" ,isl-0.11)



reply via email to

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