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
Clang offers a __builtin_debugtrap that seems to be available forever (tested with clang 3.3), and should be usable everywhere,
this should be preferred instead of using raise(SIGTRAP) for ARM and others.
Clang offers a
__builtin_debugtrap
that seems to be available forever (tested with clang 3.3), and should be usable everywhere,this should be preferred instead of using
raise(SIGTRAP)
for ARM and others.Affected code is in
doctest/doctest/parts/doctest_fwd.h
Line 452 in ae7a135
Some references on breakpoints are referenced in std::breakpoint, might be worth watching the implementations of C++ libraries, the standard PR p2546r5 links this as example implementation
The text was updated successfully, but these errors were encountered: