common: Only use libbacktrace if present. (#6827)

This commit is contained in:
Steveice10 2023-07-31 14:24:27 -07:00 committed by GitHub
parent 335fb78c5c
commit 3fedc68230
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -13,12 +13,11 @@
#define _SH_DENYWR 0
#endif
#if defined(__linux__) && defined(__GNUG__) && !defined(__clang__)
#ifdef CITRA_LINUX_GCC_BACKTRACE
#define BOOST_STACKTRACE_USE_BACKTRACE
#include <boost/stacktrace.hpp>
#undef BOOST_STACKTRACE_USE_BACKTRACE
#include <signal.h>
#define CITRA_LINUX_GCC_BACKTRACE
#endif
#include "common/bounded_threadsafe_queue.h"