From 60a93d2d5dbc5baa19f3355f8fd9031a463825c7 Mon Sep 17 00:00:00 2001 From: apg360 <53176930+apg360@users.noreply.github.com> Date: Sun, 22 Nov 2020 16:18:46 +0200 Subject: [PATCH] build.sh check for llvm 8 instead of 11 It is fine in build.bat but not fine in build.sh. The script llvm_build.sh work with llvm 11 and not 8 --- bin/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build.sh b/bin/build.sh index 774752b7..1ba7f886 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -20,7 +20,7 @@ if [ ! -f ../BeefySysLib/third_party/libffi/Makefile ]; then cd $SCRIPTPATH fi -if [ ! -d ../extern/llvm_linux_8_0_0/bin ]; then +if [ ! -d ../extern/llvm_linux_11_0_0/bin ]; then echo Building LLVM... cd ../extern ./llvm_build.sh