You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several test programs in Origin make use of the C library's assert macro, which is problematic because three of CMake's predefined build configurations ("Release", "MinSizeRel", and "RelWithDebInfo") use the compiler flag -DNDEBUG, which causes assert to become a no-op. Unless this is the intended behavior, test programs should use an alternate assert macro/function.
Note: The "Debug" configuration has no such problem, as does building Origin without explicitly specifying a configuration (the default option).
The text was updated successfully, but these errors were encountered:
Several test programs in Origin make use of the C library's
assert
macro, which is problematic because three of CMake's predefined build configurations ("Release", "MinSizeRel", and "RelWithDebInfo") use the compiler flag-DNDEBUG
, which causesassert
to become a no-op. Unless this is the intended behavior, test programs should use an alternateassert
macro/function.Note: The "Debug" configuration has no such problem, as does building Origin without explicitly specifying a configuration (the default option).
The text was updated successfully, but these errors were encountered: