mirror of
https://github.com/vmangos/core
synced 2026-08-14 16:29:10 -04:00
- Replace ACE with native OS APIs. - Remove TBB - Update gSOAP from `2.7.10` (2008) to `2.8.135` (2024) - Replace `backward.hpp` with `jeremy-rifkin/cpptrace`
9 lines
202 B
C++
9 lines
202 B
C++
#ifdef CPPTRACE_BACKTRACE_PATH
|
|
#include CPPTRACE_BACKTRACE_PATH
|
|
#else
|
|
#include <backtrace.h>
|
|
#endif
|
|
|
|
int main() {
|
|
backtrace_state* state = backtrace_create_state(nullptr, true, nullptr, nullptr);
|
|
}
|