Switch macos back to using bear instead of intercept-build

This commit is contained in:
Abdelrahman Said
2025-12-08 22:44:22 +00:00
committed by Abdelrahman Said
parent 2ccdb4ca74
commit 71bd03f432

11
build
View File

@@ -55,15 +55,4 @@ if ! contains ${BUILD_TYPE} "${ACCEPTED_BUILD_TYPES[@]}"; then
exit 1 exit 1
fi fi
if [[ $KERNEL == "Darwin" ]]; then
if [[ ! -d .venv ]]; then
python3 -m venv .venv
fi
source .venv/bin/activate
pip install scan-build
intercept-build make CC=intercept-cc CXX=intercept-c++ BUILD_TYPE=$BUILD_TYPE $ARGS
deactivate
else
bear -- make BUILD_TYPE=$BUILD_TYPE $ARGS bear -- make BUILD_TYPE=$BUILD_TYPE $ARGS
fi