diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 11:31:21 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-07 18:33:38 +0100 |
commit | f470fc04d41ef11bd0110a196d3b8679120d7189 (patch) | |
tree | 83bc987e577c4ecd1d723ebccfc0bd9fc012c9ff /gnu/packages/java.scm | |
parent | 51e8d1cb9521075c775ada2345fc3054a1f0cd2b (diff) |
gnu: java-cisd-jhdf5: Fix build with gcc@14.
* gnu/packages/java.scm (java-cisd-jhdf5): [phases]
{build-native-library}: Add "-Wno-error=implicit-function-declaration"
option to relax GCC strictness.
Change-Id: Icee8001a4908e9124b76bf1ffb27d2659868e32d
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r-- | gnu/packages/java.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 54a9aa9ba0..a0f85d3a2d 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -3090,6 +3090,7 @@ libraries from the SIS division at ETH Zurich like jHDF5.") (apply invoke `("gcc" "-shared" "-O3" "-fPIC" "-Wl,--exclude-libs,ALL" + "-Wno-error=implicit-function-declaration" ,@(find-files "jhdf5" "\\.c$") ,@(find-files "hdf-java" "\\.c$") ,(string-append "-I" hdf5 "/include") |