saw-tools: use default llvm

This commit is contained in:
Luka Blaskovic 2020-01-18 18:10:34 +00:00 committed by worldofpeace
parent ae2a5a91dd
commit fd614a8e8f

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, gmp4, ncurses, zlib, clang_35 }:
{ stdenv, fetchurl, gmp4, ncurses, zlib, clang }:
let
libPath = stdenv.lib.makeLibraryPath
@ -38,7 +38,7 @@ stdenv.mkDerivation {
ln -s ${stdenv.cc.libc}/lib/libpthread.so.0 $out/lib/libpthread.so.0
# Add a clang symlink for easy building with a suitable compiler.
ln -s ${clang_35}/bin/clang $out/bin/saw-clang
ln -s ${clang}/bin/clang $out/bin/saw-clang
'';
fixupPhase = ''