From 86d021a0c96cde502d303e473897a3788ab7db4e Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Sun, 9 May 2021 16:41:36 +0200 Subject: [PATCH] haskell.packages.ghcHEAD: use llvm 10 As per GHC's documentation: https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/compiler/backends/llvm/installing#llvm-support This configuration file is probably outdated in major other ways. We should most likely copy over stuff from the GHC 9.0.x config file and adjust new specifics, but I don't have the time at the moment. --- pkgs/development/haskell-modules/configuration-ghc-head.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-head.nix index cbfd4b84b2f..2b136c6bf83 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-head.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-head.nix @@ -11,8 +11,7 @@ with haskellLib; self: super: { - # This compiler version needs llvm 6.x. - llvmPackages = pkgs.llvmPackages_6; + llvmPackages = pkgs.llvmPackages_10; # Disable GHC 8.7.x core libraries. array = null;