Commit fb7fe3b3 authored by sternenseemann's avatar sternenseemann
Browse files

haskellPackages.termbox-bindings-c: disable implicit fun -Werror

Work around gcc 14 making implicit-function-declaration an error.
parent 5b031a22
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -258,6 +258,9 @@ self: super: {
  hdf5-lite = appendConfigureFlags [
    "--ghc-option=-optc=-Wno-error=implicit-function-declaration"
  ] super.hdf5-lite;
  termbox-bindings-c = appendConfigureFlags [
    "--ghc-option=-optc=-Wno-error=implicit-function-declaration"
  ] super.termbox-bindings-c;

  # There are numerical tests on random data, that may fail occasionally
  lapack = dontCheck super.lapack;