From 5912d4dabfd2a7a76c2a48bb51d42dddfc298bea Mon Sep 17 00:00:00 2001 From: David Diepenbrock Date: Tue, 11 Feb 2020 16:33:30 -0600 Subject: [PATCH] Fix typo for LLVM Directory. This fixes the bootstrap script to use the proper LLVM dir for using the proper clang version to compile Phasar. --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index bac57df6c1..c1db97694e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -120,8 +120,8 @@ ${DO_UNIT_TESTS} && echo "with unit tests." git submodule init git submodule update -export CC=${LLVM_INSTALL}/bin/clang -export CXX=${LLVM_INSTALL}/bin/clang++ +export CC=${LLVM_INSTALL_DIR}/bin/clang +export CXX=${LLVM_INSTALL_DIR}/bin/clang++ mkdir -p ${PHASAR_DIR}/build cd ${PHASAR_DIR}/build