cmake.eclass: do not append -DNDEBUG to CPPFLAGS
authorMike Gilbert <floppym@gentoo.org>
Mon, 30 Mar 2020 00:44:48 +0000 (20:44 -0400)
committerMike Gilbert <floppym@gentoo.org>
Wed, 1 Apr 2020 23:51:44 +0000 (19:51 -0400)
commit95577dd5076a8e9864e82879fd3af97cf63fcfe9
treeaeadf524da618cb20ea282af0d64436b22dbf2e3
parent658167a43fd18b3f1e8fbd9bdf45fdc2f1fe50a7
cmake.eclass: do not append -DNDEBUG to CPPFLAGS

The NDEBUG macro turns the assert() function into a noop. This gives a
small performance boost, but may allow subtle programming errors to go
unnoticed.

This code was added back in 2008, when we started passing
-DCMAKE_BUILD_TYPE=None instead of Release or Debug. It probably tries
to mimic a default behavior of Release type builds.

Other common build systems do not do this by default. For example,
autoconf's AC_HEADER_ASSERT macro only sets NDEBUG if --disable-assert
is passed to configure (it defaults to enabled).

It is better to let users add this to CPPFLAGS themselves if they really
want to save those few CPU cycles.

Signed-off-by: Mike Gilbert <floppym@gentoo.org>
eclass/cmake.eclass