diff --git a/CHANGELOG.md b/CHANGELOG.md index 41f8622..44cfa00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/default.config b/default.config index 0b46216..2765dbb 100644 --- a/default.config +++ b/default.config @@ -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"