diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2022-03-25 23:07:40 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-03-30 12:18:59 +0100 |
commit | 0373fd7d10fb5b23c86ebec2e932ea8f059f5b71 (patch) | |
tree | 785721f0b4202b1d30fa77160368e969e12a4eaa /scripts/build/p-clang-linux.inc | |
parent | 23548f09b7bff999b0b346a5511b2a316ec798b4 (diff) | |
download | klee-0373fd7d10fb5b23c86ebec2e932ea8f059f5b71.tar.gz |
Clearly separate between LLVM, a bitcode compiler, and sanitizer compiler
All three can be different but also provided by the same package. By separating the different use-cases, it allows to set them independently.
Diffstat (limited to 'scripts/build/p-clang-linux.inc')
-rw-r--r-- | scripts/build/p-clang-linux.inc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/build/p-clang-linux.inc b/scripts/build/p-clang-linux.inc index f3dfbb6e..c6ee025e 100644 --- a/scripts/build/p-clang-linux.inc +++ b/scripts/build/p-clang-linux.inc @@ -16,11 +16,6 @@ setup_artifact_variables_clang() { BITCODE_CC="${bin_path}/clang" BITCODE_CXX="${bin_path}/clang++" - - #[[ -z ${SANITIZER_C_COMPILER+x} ]] && - SANITIZER_C_COMPILER="${BITCODE_CC}" - #[[ -z ${SANITIZER_CXX_COMPILER+x} ]] && - SANITIZER_CXX_COMPILER="${BITCODE_CXX}" } # Check if the binary artifact is installed |