configure.ac: Also build in debug mode for -Og

I prefer to use `-Og` rather than `-O0` in debug mode. Notably, it shuts
up `_FORTIFY_SOURCE` warnings which require *some* optimizations turned
on.

Closes: #1284
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2018-03-01 17:28:27 +00:00 committed by Atomic Bot
parent d85a1fba0a
commit 3496947f8d

View File

@ -183,7 +183,7 @@ AS_IF([test x$enable_compose_tooling = xyes], [
if test x$enable_compose_tooling != xno; then RPM_OSTREE_FEATURES="$RPM_OSTREE_FEATURES compose"; fi
dnl Try to automatically determine cmake type from CFLAGS
if $(echo $CFLAGS |grep -q -e "-O0"); then
if $(echo $CFLAGS |grep -q -E "(-O0|-Og)"); then
cmake_args="-DCMAKE_BUILD_TYPE=Debug"
export cmake_args
else