blob: 17a84acc61bdf6bfd20237a06abbae353e0efc1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Build information for STP solver
required_variables_stp=(
"STP_VERSION"
"MINISAT_VERSION"
)
# On which artifacts does STP depend on
artifact_dependency_stp=("sanitizer")
artifact_dependency_stp() {
echo "sanitizer"
if [[ "${SANITIZER_BUILD:-}" == "memory" ]]; then
echo "llvm"
fi
}
|