diff options
author | Zheng Junjie <z572@z572.online> | 2025-06-20 23:54:54 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:35 +0200 |
commit | 7f0ed8d2cb28e3649fe623d88e09a69f8c628999 (patch) | |
tree | b32c8fe618d0f6f1dd6382c405e7bd8f1cd1f9a2 | |
parent | 232af934ea87cb5ab3ab9f6f0d1804a769c6ca74 (diff) |
gnu: hplip: Fix build on gcc 14.
* gnu/packages/cups.scm (hplip)[arguments]<#:phases>: Also Add
-Wno-error=implicit-int to relax gcc-14's strictness.
Change-Id: If1dcaffad3e18c8070656451f3f22960f9eb4c16
-rw-r--r-- | gnu/packages/cups.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index b54c1cb09d..8322818b77 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -657,6 +657,7 @@ should only be used as part of the Guix cups-pk-helper service.") " -Wno-error=implicit-function-declaration" " -Wno-error=implicit-int" " -Wno-error=incompatible-pointer-types" + " -Wno-error=int-conversion" " -Wno-error=return-mismatch"))))) (add-after 'unpack 'fix-hard-coded-file-names (lambda* (#:key inputs outputs #:allow-other-keys) |