mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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).
This commit is contained in:
parent
cf26ee1f99
commit
dbc96f451c
1 changed files with 10 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
|
;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
|
||||||
;;; Copyright © 2019, 2020, 2022 Marius Bakke <marius@gnu.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.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -47,7 +47,8 @@ (define-public libgc
|
||||||
"181ni2rn9qjbl4ilqdjrd1a4h8siv5bgmzqgg4595q32n2y0f0gk"))))
|
"181ni2rn9qjbl4ilqdjrd1a4h8siv5bgmzqgg4595q32n2y0f0gk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(append
|
||||||
|
(list
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list
|
#~(list
|
||||||
;; Install gc_cpp.h et al.
|
;; Install gc_cpp.h et al.
|
||||||
|
@ -62,7 +63,13 @@ (define-public libgc
|
||||||
#$@(if (target-hurd? (or (%current-system)
|
#$@(if (target-hurd? (or (%current-system)
|
||||||
(%current-target-system)))
|
(%current-target-system)))
|
||||||
#~("--disable-gcj-support")
|
#~("--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))
|
(native-inputs (list pkg-config))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(if (%current-target-system)
|
(if (%current-target-system)
|
||||||
|
|
Loading…
Reference in a new issue