diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-12-31 09:42:24 +0800 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:17 +0200 |
commit | c87b710fb3a8f21e19b1360c77f106450cb1b6b5 (patch) | |
tree | 475a48869bdc04e367c8df8a7046770f1223ea03 | |
parent | c2439828b09729fea8314aad05d859bfd4cdd768 (diff) |
gnu: classpath-bootstrap: Fix build with gcc-14.
* gnu/packages/java-bootstrap.scm (classpath-bootstrap)[arguments]
<#:configure-flags>: Add CFLAGS.
Change-Id: Icdec1e39dbbaba5e91c5ac5767f30ee1205043eb
-rw-r--r-- | gnu/packages/java-bootstrap.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/java-bootstrap.scm b/gnu/packages/java-bootstrap.scm index 645cbfa442..bce7b4fbfc 100644 --- a/gnu/packages/java-bootstrap.scm +++ b/gnu/packages/java-bootstrap.scm @@ -112,6 +112,7 @@ and binary format defined in The Java Virtual Machine Specification.") `(#:configure-flags (list (string-append "JAVAC=" (search-input-file %build-inputs "/bin/jikes")) + "CFLAGS=-g -O2 -Wno-error=implicit-function-declaration" "--disable-Werror" "--disable-gmp" "--disable-gtk-peer" |