mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
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
This commit is contained in:
parent
70b8818286
commit
87a645a47b
1 changed files with 2 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
|||
;;; Copyright © 2021, 2023, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2022, 2023 Juliana Sims <juli@incana.org>
|
||||
;;; Copyright © 2024 Evgeny Pisemsky <mail@pisemsky.site>
|
||||
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -245,6 +246,7 @@ (define-public gn
|
|||
(lambda _
|
||||
(setenv "CC" "gcc")
|
||||
(setenv "CXX" "g++")
|
||||
(setenv "CXXFLAGS" "-g -O2 -Wno-error=redundant-move")
|
||||
(setenv "AR" "ar")))
|
||||
(replace 'configure
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in a new issue