mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-10 07:21:36 +00:00
Fix backtrace ifdef. Failed on Linux systems that used uclibc. It is actually only available for glibc.
This commit is contained in:
parent
62f7b51536
commit
b2ff5bc9f3
@ -1,8 +1,6 @@
|
||||
#include "base/backtrace.h"
|
||||
|
||||
// The mac check doesn't seem to work right.
|
||||
#if (!defined(ANDROID) && defined(__linux__)) || (defined(__APPLE__) && (defined(_M_IX86) || defined(_M_X64)))
|
||||
|
||||
#if defined(__GLIBC__) && !defined(__UCLIBC__)
|
||||
#include <execinfo.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user