diff options
author | Andreas Enge <andreas@enge.fr> | 2025-07-21 18:19:31 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-21 18:20:43 +0200 |
commit | 76ec17d9626d4c5a4ee3e596289d708718db8fcd (patch) | |
tree | 140e5509e1a34d47349ae022399492faee215aae | |
parent | 74440ac7600818642ecde1e95fe284e6818d8f17 (diff) |
gnu: vitetris: Fix build with gcc@14.
* gnu/packages/games.scm (vitetris)[arguments]<#:make-flags>: Add CFLAGS.
Change-Id: I1df1eae997fdf450c489cbd627a7ff579808818d
-rw-r--r-- | gnu/packages/games.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 4eddaf9cc0..fad3e80ac4 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -914,7 +914,8 @@ feedback support.") `(#:tests? #f ;no test #:make-flags (list ,(string-append "CC=" (cc-for-target)) - (string-append "DESTDIR=" (assoc-ref %outputs "out"))) + (string-append "DESTDIR=" (assoc-ref %outputs "out")) + "CFLAGS=-g -O2 -Wno-error=implicit-int") #:phases (modify-phases %standard-phases (replace 'configure |