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

commit 296f58e373f861066914b966dac9033080c075a6
Author: Janneke Nieuwenhuizen <jann...@gnu.org>
AuthorDate: Mon Dec 30 20:03:15 2024 +0100

    gnu: xf86-video-nouveau: Fix build with gcc-14.
    
    * gnu/packages/xorg.scm (xf86-video-nouveau)[arguments]: New field to relax
    gcc-14's strictness.
    
    Change-Id: I782c112c28841bf2b3b277cfda05bf2a1871b8a1
---
 gnu/packages/xorg.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index db34a58f6e..968fb09f54 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -3236,6 +3236,9 @@ supported, and the RENDER extension is not accelerated by 
this driver.")
        (sha256
         (base32 "1z9bqfr81w2ahq2vyphgjbl0ffxndrpxb4mqqly76srjcj7d6ap8"))))
     (build-system gnu-build-system)
+    (arguments
+     (list #:configure-flags
+           #~(list "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration")))
     (inputs (list xorg-server))
     (native-inputs (list pkg-config))
     (home-page "https://nouveau.freedesktop.org";)

Reply via email to