This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/core-packages-team by this 
push:
     new 8360f7436b gnu: gn: Fix build with gcc-14.
8360f7436b is described below

commit 8360f7436b38ee4a4525a5a062bbc54b941f0521
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Wed Dec 11 14:35:11 2024 +0100

    gnu: gn: Fix build with gcc-14.
    
    * gnu/packages/gnome.scm (gamin)[arguments]: In phase 
`set-build-environment'
    set CXXFLAGS to relax gcc-14's strictness..
    
    Change-Id: I1e8a91aa036b1f9d0f8297eead0872f313f72146
---
 gnu/packages/build-tools.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index b5bc299287..27dc1c5d2a 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -16,6 +16,7 @@
 ;;; Copyright © 2021, 2023, 2024 Maxim Cournoyer <maxim.courno...@gmail.com>
 ;;; Copyright © 2022, 2023 Juliana Sims <j...@incana.org>
 ;;; Copyright © 2024 Evgeny Pisemsky <m...@pisemsky.site>
+;;; Copyright © 2024 Janneke Nieuwenhuizen <jann...@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -245,6 +246,7 @@ programs and other files depend.")
                    (lambda _
                      (setenv "CC" "gcc")
                      (setenv "CXX" "g++")
+                     (setenv "CXXFLAGS" "-g -O2 -Wno-error=redundant-move")
                      (setenv "AR" "ar")))
                  (replace 'configure
                    (lambda _

Reply via email to