Mayur Shingote
12/24/2021, 10:43 PMRelWithDebInfo and Debug ?zwass
RelWithDebInfo means that compiler optimizations are turned on and debug symbols are also left in place. Whereas Debug would turn off most compiler optimizations.Stefano Bonicatti
12/25/2021, 9:40 AMRelWithDebInfo passes NDEBUG as with Release builds, so that things like asserts, or any other debug code is not compiled in.