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

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 355b6125c0 gnu: v86d: Fix build with gcc@14.
355b6125c0 is described below

commit 355b6125c02790bf24a39a90e155e68f577d4982
Author: Andreas Enge <[email protected]>
AuthorDate: Tue Jul 22 10:42:20 2025 +0200

    gnu: v86d: Fix build with gcc@14.
    
    * gnu/packages/xorg.scm (v86d)[arguments]<#:phases>{'configure}: Set CFLAGS.
    
    Change-Id: Ibcd9a3f78286b234765178a8e6f9c9bf2e543c7e
---
 gnu/packages/xorg.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index f7fe843bdd..6f202c2d7d 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -3479,6 +3479,11 @@ X server.")
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
                (setenv "CC" (which "gcc"))
+               (setenv "CFLAGS"
+                       (string-append
+                         "-g -O2 "
+                         "-Wno-error=incompatible-pointer-types "
+                         "-Wno-error=stringop-truncation"))
                (setenv "DESTDIR" out)
                (invoke "./configure" "--with-x86emu"))))
          (add-after 'build 'build-testvbe

Reply via email to