We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c50f1 commit 5b078caCopy full SHA for 5b078ca
compiler/ghc/default.nix
@@ -422,9 +422,9 @@ haskell-nix.haskellLib.makeCompilerDeps (stdenv.mkDerivation (rec {
422
export CXX="${targetCC}/bin/em++"
423
export LD="${targetCC}/bin/emcc"
424
'' + (
425
- # Including AR and RANLIB here breaks tests.js-template-haskell for GHC 9.6
+ # Including AR and RANLIB here breaks tests.js-template-haskell for GHC <9.12
426
# `LLVM ERROR: malformed uleb128, extends past end`
427
- if builtins.compareVersions ghc-version "9.8" >= 0
+ if builtins.compareVersions ghc-version "9.12" >= 0
428
then ''
429
export AR="${targetCC}/bin/emar"
430
export NM="${targetCC}/share/emscripten/emnm"
0 commit comments