lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #43400 from dtzWill/experimental/ghc-musl-nollvm

ghc: don't use LLVM w/musl on non-cross

authored by

Will Dietz and committed by
GitHub
78381de8 6b5c9fc1

+4 -4
+1 -1
pkgs/development/compilers/ghc/8.2.2.nix
··· 8 8 9 9 , libffi, libiconv ? null, ncurses 10 10 11 - , useLLVM ? !targetPlatform.isx86 || targetPlatform.isMusl 11 + , useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform) 12 12 , # LLVM is conceptually a run-time-only depedendency, but for 13 13 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 14 14 # build-time dependency too.
+1 -1
pkgs/development/compilers/ghc/8.4.3.nix
··· 7 7 8 8 , libffi, libiconv ? null, ncurses 9 9 10 - , useLLVM ? !targetPlatform.isx86 || targetPlatform.isMusl 10 + , useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform) 11 11 , # LLVM is conceptually a run-time-only depedendency, but for 12 12 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 13 13 # build-time dependency too.
+1 -1
pkgs/development/compilers/ghc/8.6.1.nix
··· 7 7 8 8 , libffi, libiconv ? null, ncurses 9 9 10 - , useLLVM ? !targetPlatform.isx86 || targetPlatform.isMusl 10 + , useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform) 11 11 , # LLVM is conceptually a run-time-only depedendency, but for 12 12 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 13 13 # build-time dependency too.
+1 -1
pkgs/development/compilers/ghc/head.nix
··· 7 7 8 8 , libffi, libiconv ? null, ncurses 9 9 10 - , useLLVM ? !targetPlatform.isx86 || targetPlatform.isMusl 10 + , useLLVM ? !targetPlatform.isx86 || (targetPlatform.isMusl && hostPlatform != targetPlatform) 11 11 , # LLVM is conceptually a run-time-only depedendency, but for 12 12 # non-x86, we need LLVM to bootstrap later stages, so it becomes a 13 13 # build-time dependency too.