Skip to content

Commit 5912d4d

Browse files
committed
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.
1 parent 02e5465 commit 5912d4d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ ${DO_UNIT_TESTS} && echo "with unit tests."
120120
git submodule init
121121
git submodule update
122122

123-
export CC=${LLVM_INSTALL}/bin/clang
124-
export CXX=${LLVM_INSTALL}/bin/clang++
123+
export CC=${LLVM_INSTALL_DIR}/bin/clang
124+
export CXX=${LLVM_INSTALL_DIR}/bin/clang++
125125

126126
mkdir -p ${PHASAR_DIR}/build
127127
cd ${PHASAR_DIR}/build

0 commit comments

Comments
 (0)