mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: kitty: Fix build with GCC@14.
* gnu/packages/terminals.scm (kitty)[arguments] <phases>: Add CFLAGS argument ignoring warning. Change-Id: I29e13b356cabcdb2e4de9ad9fb03fddd786df15c
This commit is contained in:
@@ -1338,8 +1338,11 @@ tmux.")
|
||||
(delete 'configure) ;no configure script
|
||||
(replace 'build
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; Don't fail on deprecation warnings from GCC
|
||||
(setenv "CFLAGS" "-Wno-error=deprecated-declarations")
|
||||
;; Don't fail on deprecation warnings from GCC or when not using
|
||||
;; sizeof in one of the two arguments of calloc
|
||||
(setenv "CFLAGS"
|
||||
(string-append "-Wno-error=deprecated-declarations "
|
||||
"-Wno-error=calloc-transposed-args"))
|
||||
;; The "kitty" sub-directory must be writable prior to
|
||||
;; configuration (e.g., un-setting updates).
|
||||
(for-each make-file-writable (find-files "kitty"))
|
||||
|
||||
Reference in New Issue
Block a user