mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
ac5df0692c
Use `make asan` or `make tsan` to run a similar setup to the one we run on circleci.
10 lines
105 B
Bash
Executable File
10 lines
105 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
SANITIZER="${1:-asan}"
|
|
|
|
cp -a /c-toxcore .
|
|
cd c-toxcore
|
|
.circleci/cmake-"$SANITIZER"
|