guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: libgc: Fix building on powerpc64le-linux.


From: guix-commits
Subject: 01/03: gnu: libgc: Fix building on powerpc64le-linux.
Date: Thu, 30 Mar 2023 12:56:51 -0400 (EDT)

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

commit dbc96f451c9bd4c14fbe99454abbcb1c90d66285
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Mar 30 18:10:15 2023 +0300

    gnu: libgc: Fix building on powerpc64le-linux.
    
    * gnu/packages/bdw-gc.scm (libgc)[arguments]: Add a make-flag when
    building for powerpc64le-linux to disable using SDB (soft-dirty bits).
---
 gnu/packages/bdw-gc.scm | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index 4b7099ffcd..b788c3288e 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -4,7 +4,7 @@
 ;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
 ;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.org>
-;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2022, 2023 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -47,7 +47,8 @@
               "181ni2rn9qjbl4ilqdjrd1a4h8siv5bgmzqgg4595q32n2y0f0gk"))))
    (build-system gnu-build-system)
    (arguments
-    (list
+    (append
+     (list
      #:configure-flags
      #~(list
         ;; Install gc_cpp.h et al.
@@ -62,7 +63,13 @@
         #$@(if (target-hurd? (or (%current-system)
                                  (%current-target-system)))
                #~("--disable-gcj-support")
-               #~()))))
+               #~())))
+     (if (target-ppc64le?)
+       (list #:make-flags
+             ;; This is a known workaround upstream.
+             ;; https://github.com/ivmai/bdwgc/issues/479
+             #~(list "CFLAGS_EXTRA=-DNO_SOFT_VDB"))
+       '())))
    (native-inputs (list pkg-config))
    (propagated-inputs
     (if (%current-target-system)



reply via email to

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