guix-commits
[Top][All Lists]
Advanced

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

211/290: gnu: openmpi-4: Fix build with gcc-14.


From: guix-commits
Subject: 211/290: gnu: openmpi-4: Fix build with gcc-14.
Date: Sun, 30 Mar 2025 10:24:14 -0400 (EDT)

andreas pushed a commit to branch core-packages-team
in repository guix.

commit 9dbd303700cef56314e9f4ff23df8703fe154eac
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sun Jan 5 17:21:01 2025 +0100

    gnu: openmpi-4: Fix build with gcc-14.
    
    * gnu/packages/mpi.scm (openmpi-4)[arguments]: Add CFLAGS to 
#:configure-flags
    to relax gcc-14's strictness.
    
    Change-Id: I4a19a473a729ce054d855ec2c4d6ea94dc94b849
---
 gnu/packages/mpi.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 79254eb158..818f986b26 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2018 Paul Garlick <pgarlick@tourbillion-technology.com>
 ;;; Copyright © 2019, 2021 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2024 Romain Garbage <romain.garbage@inria.fr>
+;;; Copyright © 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -239,7 +240,11 @@ bind processes, and much more.")
     (outputs '("out" "debug"))
     (arguments
      (list
-      #:configure-flags #~`("--enable-mpi-ext=affinity" ;cr doesn't work
+      #:configure-flags #~`(#$(string-append
+                               "CFLAGS=-g -O2"
+                               " -Wno-error=implicit-function-declaration"
+                               " -Wno-error=incompatible-pointer-types")
+                            "--enable-mpi-ext=affinity" ;cr doesn't work
                             "--with-sge"
                             "--disable-static"
 



reply via email to

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