cpptrace/cmake/has_cxxabi.cpp
2023-07-01 17:06:41 -04:00

7 lines
98 B
C++

#include <execinfo.h>
int main() {
void* frames[10];
int size = backtrace(frames, 10);
}