about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/8
diff options
context:
space:
mode:
authorDavid McFarland <corngood@gmail.com>2020-01-03 10:38:40 -0400
committerDavid McFarland <corngood@gmail.com>2020-01-03 10:38:43 -0400
commit6c86a2b5bb77549d439d627ef608985e08f7d2a5 (patch)
tree8baeba882f44fe9129da6d878122bb222f3a4c8c /pkgs/development/compilers/llvm/8
parent845e92835d90d300142157c6bae9ca5b7831e2bd (diff)
downloadnixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.tar
nixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.tar.gz
nixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.tar.bz2
nixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.tar.lz
nixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.tar.xz
nixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.tar.zst
nixlib-6c86a2b5bb77549d439d627ef608985e08f7d2a5.zip
llvm: use correct version of tablegen when cross compiling _8 and _9
Diffstat (limited to 'pkgs/development/compilers/llvm/8')
-rw-r--r--pkgs/development/compilers/llvm/8/llvm.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/llvm/8/llvm.nix b/pkgs/development/compilers/llvm/8/llvm.nix
index b556a638f1f6..df3d6e796aa0 100644
--- a/pkgs/development/compilers/llvm/8/llvm.nix
+++ b/pkgs/development/compilers/llvm/8/llvm.nix
@@ -109,7 +109,7 @@ in stdenv.mkDerivation ({
     "-DCAN_TARGET_i386=false"
   ] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
     "-DCMAKE_CROSSCOMPILING=True"
-    "-DLLVM_TABLEGEN=${buildPackages.llvm_7}/bin/llvm-tblgen"
+    "-DLLVM_TABLEGEN=${buildPackages.llvm_8}/bin/llvm-tblgen"
   ];
 
   postBuild = ''