|
From: Florent R. <f.r...@fr...> - 2023-07-18 10:37:59
|
TheFGFSEagle <the...@gm...> wrote: > Uh, I didn't remove any asserts - I had pulled current next SG and FG and > just ran cmake --build . && cmake --install . ! Of course you didn't remove them, however your set up your build in such a way that assert() produces no code. :) man 3 assert → If the macro NDEBUG is defined at the moment <assert.h> was last in‐ cluded, the macro assert() generates no code, and hence does nothing at all. Presumably, the way you build ends up passing -DNDEBUG to the preprocessor. You're probably not working with a Debug build, are you? Regards -- Florent |