small fix
This commit is contained in:
parent
ec4209831b
commit
ca58141d88
@ -1,6 +1,7 @@
|
|||||||
# v6
|
# v6
|
||||||
+ `build_profile` task was split to `profile` and `gprof`
|
+ `build_profile` task was split to `profile` and `gprof`
|
||||||
+ added task `sanitize`
|
+ added task `sanitize`
|
||||||
|
+ default C++ standard set to `c++11`
|
||||||
|
|
||||||
# v5
|
# v5
|
||||||
+ added task `clean`
|
+ added task `clean`
|
||||||
|
|||||||
@ -137,7 +137,7 @@ case "$TASK" in
|
|||||||
;;
|
;;
|
||||||
# compiles executable with sanitizers and executes it to find errors and warnings
|
# compiles executable with sanitizers and executes it to find errors and warnings
|
||||||
sanitize)
|
sanitize)
|
||||||
OUTDIR="bin/sanitize"
|
OUTDIR="$OUTDIR/sanitize"
|
||||||
C_ARGS="-O0 -g3 -fsanitize=undefined,address"
|
C_ARGS="-O0 -g3 -fsanitize=undefined,address"
|
||||||
CPP_ARGS="$C_ARGS"
|
CPP_ARGS="$C_ARGS"
|
||||||
LINKER_ARGS="$CPP_ARGS"
|
LINKER_ARGS="$CPP_ARGS"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user