diff options
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r-- | gnu/packages/java.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index ac9e3b8a6a..2ec8a14a44 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1283,7 +1283,9 @@ new Date();")) ;; Add flags for compilation with gcc >= 10 ,(string-append "--with-extra-cflags=-fcommon" " -fno-delete-null-pointer-checks" - " -fno-lifetime-dse") + " -fno-lifetime-dse" + ;; flags for compilation with gcc >= 14. + " -Wno-error=int-conversion") (string-append "--with-freetype=" (assoc-ref inputs "freetype")) "--disable-freetype-bundling" |