about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-06-23 12:53:45 -0500
committerWill Dietz <w@wdtz.org>2018-06-23 12:53:45 -0500
commit3e49430922ca5fea91de12984be2478fee4f97fa (patch)
tree9734e8fbeee8bcb8fcadb00ce22bae53e9fe0443 /pkgs/development/compilers
parentffdf8192b339c6facab0efbbccd679b0bdb230dd (diff)
downloadnixlib-3e49430922ca5fea91de12984be2478fee4f97fa.tar
nixlib-3e49430922ca5fea91de12984be2478fee4f97fa.tar.gz
nixlib-3e49430922ca5fea91de12984be2478fee4f97fa.tar.bz2
nixlib-3e49430922ca5fea91de12984be2478fee4f97fa.tar.lz
nixlib-3e49430922ca5fea91de12984be2478fee4f97fa.tar.xz
nixlib-3e49430922ca5fea91de12984be2478fee4f97fa.tar.zst
nixlib-3e49430922ca5fea91de12984be2478fee4f97fa.zip
ghc822: useLLVM when building against musl too
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/ghc/8.2.2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ghc/8.2.2.nix b/pkgs/development/compilers/ghc/8.2.2.nix
index 2d49742c6510..fefd07b12043 100644
--- a/pkgs/development/compilers/ghc/8.2.2.nix
+++ b/pkgs/development/compilers/ghc/8.2.2.nix
@@ -8,7 +8,7 @@
 
 , libffi, libiconv ? null, ncurses
 
-, useLLVM ? !targetPlatform.isx86
+, useLLVM ? !targetPlatform.isx86 || targetPlatform.isMusl
 , # LLVM is conceptually a run-time-only depedendency, but for
   # non-x86, we need LLVM to bootstrap later stages, so it becomes a
   # build-time dependency too.