Skip to content

Commit

Permalink
haskellPackages: link upstream issues for GCC 14 workarounds
Browse files Browse the repository at this point in the history
I've contacted the maintainer of libxml-sax directly as the package does
not seem to have a public issue tracker.

(cherry picked from commit 1ad0cb4)
  • Loading branch information
sternenseemann committed Dec 22, 2024
1 parent 1139a6e commit 835bc93
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -247,16 +247,20 @@ self: super: {
HsOpenSSL = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=incompatible-pointer-types"
] super.HsOpenSSL;
# Work around compilation failure with gcc >= 14
# Work around compilation failures with gcc >= 14
# https://github.com/audreyt/hssyck/issues/5
HsSyck = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=implicit-function-declaration"
] super.HsSyck;
# https://github.com/rethab/bindings-dsl/issues/46
bindings-libcddb = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=incompatible-pointer-types"
] super.bindings-libcddb;
# https://github.com/ocramz/hdf5-lite/issues/3
hdf5-lite = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=implicit-function-declaration"
] super.hdf5-lite;
# https://github.com/awkward-squad/termbox/issues/5
termbox-bindings-c = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=implicit-function-declaration"
] super.termbox-bindings-c;
Expand Down

0 comments on commit 835bc93

Please sign in to comment.