[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/18: gnu: bdb-4.8: Fix configure on powerpc64le-linux.
From: |
guix-commits |
Subject: |
08/18: gnu: bdb-4.8: Fix configure on powerpc64le-linux. |
Date: |
Wed, 24 Mar 2021 02:25:12 -0400 (EDT) |
marusich pushed a commit to branch master
in repository guix.
commit 4cc2d2aa59910fcfd057bdee162bb96989b5a523
Author: Leo Le Bouter <lle-bout@zaclys.net>
AuthorDate: Sun Feb 7 17:47:32 2021 +0100
gnu: bdb-4.8: Fix configure on powerpc64le-linux.
* gnu/packages/dbm.scm (bdb-4.8)[arguments]: Modify 'configure phase to
append
"--build=powerpc64le-unknown-linux-gnu" to configure's flags when compiling
for
powerpc64le-linux.
Signed-off-by: Chris Marusich <cmmarusich@gmail.com>
---
gnu/packages/dbm.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/dbm.scm b/gnu/packages/dbm.scm
index 82647c0..2dd51ef 100644
--- a/gnu/packages/dbm.scm
+++ b/gnu/packages/dbm.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2016, 2017, 2018, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -74,6 +75,11 @@
'("--build=aarch64-unknown-linux-gnu")
'())
+ ;; Bdb doesn't recognize powerpc64le as an architecture.
+ ,@(if (string=? "powerpc64le-linux" (%current-system))
+ '("--build=powerpc64le-unknown-linux-gnu")
+ '())
+
,@(if (%current-target-system) ; cross building
'((string-append "--host=" target))
'())
- branch master updated (dc68018 -> 65c46e7), guix-commits, 2021/03/24
- 01/18: gnu: bootstrap: Add support for powerpc64le-linux., guix-commits, 2021/03/24
- 05/18: gnu: gcc-boot0: Enable 128-bit long double for POWER9., guix-commits, 2021/03/24
- 08/18: gnu: bdb-4.8: Fix configure on powerpc64le-linux.,
guix-commits <=
- 09/18: gnu: guile-avahi: Fix compilation on powerpc64le-linux., guix-commits, 2021/03/24
- 02/18: utils: Add target-powerpc? procedure., guix-commits, 2021/03/24
- 10/18: gnu: texlive-bin: Fix compilation on powerpc64le*., guix-commits, 2021/03/24
- 11/18: gnu: texlive-latex-base: Fix compilation on powerpc64le*., guix-commits, 2021/03/24
- 13/18: Add powerpc64le-linux as a supported Guix architecture., guix-commits, 2021/03/24
- 18/18: gnu: sed: Make it build on SELinux-enabled kernels., guix-commits, 2021/03/24
- 03/18: gnu: gcc-4.7: On powerpc64le, fix /lib64 references., guix-commits, 2021/03/24
- 04/18: gnu: glibc: Fix ldd path on powerpc*., guix-commits, 2021/03/24
- 06/18: gnu: binutils-final: Provide bash for binary on powerpc-linux., guix-commits, 2021/03/24
- 07/18: gnu: binutils-final: Support more Power architectures., guix-commits, 2021/03/24