small fix

This commit is contained in:
timerix 2023-03-15 18:10:16 +06:00
parent ec4209831b
commit ca58141d88
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# v6
+ `build_profile` task was split to `profile` and `gprof`
+ added task `sanitize`
+ default C++ standard set to `c++11`
# v5
+ added task `clean`

View File

@ -137,7 +137,7 @@ case "$TASK" in
;;
# compiles executable with sanitizers and executes it to find errors and warnings
sanitize)
OUTDIR="bin/sanitize"
OUTDIR="$OUTDIR/sanitize"
C_ARGS="-O0 -g3 -fsanitize=undefined,address"
CPP_ARGS="$C_ARGS"
LINKER_ARGS="$CPP_ARGS"