efraim pushed a commit to branch wip-ppc64le-for-master in repository guix.
commit fc3c74402472c4611dc88746a77ea270981382ed Author: Leo Le Bouter <[email protected]> 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 <[email protected]> --- 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 <[email protected]> ;;; Copyright © 2017, 2018 Marius Bakke <[email protected]> ;;; Copyright © 2018 Mark H Weaver <[email protected]> +;;; Copyright © 2021 Leo Le Bouter <[email protected]> ;;; ;;; 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)) '())
