Can we have the DEBUG=1 build with NDEBUG flag?
I tried many things like DEBUG=1 CFLAGS="-DNDEBUG" CXXFLAGS="-DNDEBUG" python setup.py develop and REL_WITH_DEB_INFO but all failed, the CLAGS overrides do not seem to work
The scenario is I want to just debug normally, but in normal debug build, there are some checks which do not make sense in my case (like all view ops check if the storage is just an alias, not true for my PrivateUse1 backend). So if using DEBUG=1, the checks of ifndef NDEBUG code block raises error.