mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
340837e202
libbacktrace/elf.cpp:3249:3: error: use of undeclared identifier 'dl_iterate_phdr'
23 lines
516 B
C
23 lines
516 B
C
#ifndef __TRACYCALLSTACK_H__
|
|
#define __TRACYCALLSTACK_H__
|
|
|
|
#if defined _WIN32 || defined __CYGWIN__
|
|
# define TRACY_HAS_CALLSTACK 1
|
|
#elif defined __ANDROID__
|
|
# if !defined __arm__ || __ANDROID_API__ >= 21
|
|
# define TRACY_HAS_CALLSTACK 2
|
|
# else
|
|
# define TRACY_HAS_CALLSTACK 5
|
|
# endif
|
|
#elif defined __linux
|
|
# if defined _GNU_SOURCE && defined __GLIBC__
|
|
# define TRACY_HAS_CALLSTACK 3
|
|
# else
|
|
# define TRACY_HAS_CALLSTACK 2
|
|
# endif
|
|
#elif defined __APPLE__
|
|
# define TRACY_HAS_CALLSTACK 4
|
|
#endif
|
|
|
|
#endif
|