aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/compilers/llvm/6
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-02-11 19:32:11 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2019-02-24 17:00:48 -0500
commite36cd48b6e09863e2099a894ca28bedbbeefdf99 (patch)
tree53be3baf1acc5782a36150d2958778ab85b73f90 /pkgs/development/compilers/llvm/6
parentbe6d030b98934e906930187d2073b5c85450b242 (diff)
llvm: don’t use targetPlatform
LLVM should be target independent because it will work with all machine types. This is different from GCC where it needs to know what target to build ahead of time.
Diffstat (limited to 'pkgs/development/compilers/llvm/6')
-rw-r--r--pkgs/development/compilers/llvm/6/llvm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/llvm/6/llvm.nix b/pkgs/development/compilers/llvm/6/llvm.nix
index 049f58af06e0..1d96513a0ece 100644
--- a/pkgs/development/compilers/llvm/6/llvm.nix
+++ b/pkgs/development/compilers/llvm/6/llvm.nix
@@ -91,7 +91,7 @@ in stdenv.mkDerivation (rec {
"-DLLVM_ENABLE_FFI=ON"
"-DLLVM_ENABLE_RTTI=ON"
"-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}"
- "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.targetPlatform.config}"
+ "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.hostPlatform.config}"
"-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly"
"-DLLVM_ENABLE_DUMP=ON"
] ++ optionals enableSharedLibraries [