guix-commits
[Top][All Lists]
Advanced

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

116/319: gnu: orbit2: Fix build with gcc-14.


From: guix-commits
Subject: 116/319: gnu: orbit2: Fix build with gcc-14.
Date: Sun, 8 Jun 2025 12:12:10 -0400 (EDT)

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

commit 88afc5cf37963b5104a3a36ab8d9ccab7a3b67ab
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Wed Jan 1 15:36:58 2025 +0100

    gnu: orbit2: Fix build with gcc-14.
    
    * gnu/packages/gnome.scm (orbit2): Add CFLAGS to #:configure-flags to relax
    gcc-14's strictness.
    
    Change-Id: I1c094a09f338335733197837e420211587aca833
---
 gnu/packages/gnome.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 1e5cba3e4d..9739e66b74 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3937,7 +3937,10 @@ functionality was designed to be as reusable and 
portable as possible.")
       ;; The "timeout-server" test hangs when run in parallel.
       #:parallel-tests? #f
       #:configure-flags
-      #~'(;; We don't need static libraries, plus they don't build reproducibly
+      #~'(#$(string-append "CFLAGS=-g -O2"
+                           " -Wno-error=implicit-int"
+                           " -Wno-error=incompatible-pointer-types")
+          ;; We don't need static libraries, plus they don't build reproducibly
           ;; (non-deterministic ordering of .o files in the archive.)
           "--disable-static"
 



reply via email to

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