From 71bd03f4323e60af998f0bc9c2ec5a9128ea1def Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Mon, 8 Dec 2025 22:44:22 +0000 Subject: [PATCH] Switch macos back to using bear instead of intercept-build --- build | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/build b/build index e36c12d..8b3e53b 100755 --- a/build +++ b/build @@ -55,15 +55,4 @@ if ! contains ${BUILD_TYPE} "${ACCEPTED_BUILD_TYPES[@]}"; then exit 1 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 -fi +bear -- make BUILD_TYPE=$BUILD_TYPE $ARGS