On Mon, Apr 08, 2019 at 09:20:35AM +0200, Igor Gnatenko wrote: > Hello, > > While fixing mesa build which was slow due to a lot off debug stuff > (assert()), I've added -Db_ndebug=true into the %meson macro. > > This seemed like good approach because in Fedora we should not use debug > bits in runtime (not related to debuginfo). However this caused some > breakage in some packages like libratbag which was relying on assert() in > tests. This should be really fixed in affected packages.. > > I am not convinced that we should revert meson change.. Let me know if you > think otherwise and why.
IMO if asserts cause a slow build in mesa, mesa should disable asserts. Pushing this into the build system means you're changing the behaviour of every package build with meson. I rely on asserts in several packages for paths that must not happen - removing those asserts means instead of crashing we now have undefined behaviour, probably leaking things. NDEBUG is on the same level as _GNU_SOURCE, it significantly changes the behaviour. Please leave it to packages to decide whether it should be set. Cheers, Peter _______________________________________________ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org