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
|
||||
.vscode
|
||||
.venv
|
||||
test
|
||||
test.*
|
||||
*.dSYM
|
||||
|
12
build
12
build
@ -1,7 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
BUILD_TYPE="debug"
|
||||
KERNEL="$(uname -s)"
|
||||
ARGS=""
|
||||
|
||||
while [[ $# > 0 ]];do
|
||||
@ -18,15 +17,4 @@ while [[ $# > 0 ]];do
|
||||
esac
|
||||
done
|
||||
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user