Compare commits
No commits in common. "81e3ab2c679908bd421905c9f7291223d66ea24c" and "eb98de7c2bd0f2b082e08815ff508bb9014f746a" have entirely different histories.
81e3ab2c67
...
eb98de7c2b
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,5 @@
|
|||||||
.cache
|
.cache
|
||||||
.vscode
|
.vscode
|
||||||
.venv
|
|
||||||
test
|
test
|
||||||
test.*
|
test.*
|
||||||
*.dSYM
|
*.dSYM
|
||||||
|
14
build
14
build
@ -1,7 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
BUILD_TYPE="debug"
|
BUILD_TYPE="debug"
|
||||||
KERNEL="$(uname -s)"
|
|
||||||
ARGS=""
|
ARGS=""
|
||||||
|
|
||||||
while [[ $# > 0 ]];do
|
while [[ $# > 0 ]];do
|
||||||
@ -18,15 +17,4 @@ while [[ $# > 0 ]];do
|
|||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ $KERNEL == "Darwin" ]]; then
|
bear -- make BUILD_TYPE=$BUILD_TYPE $ARGS
|
||||||
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
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user