Some checks failed
cpp-template / build (Debug, aarch64-linux-gnu) (push) Failing after 27s
cpp-template / build (Release, mipsel-linux-gnu) (push) Failing after 12m45s
cpp-template / build (Release, host.gcc) (push) Failing after 12m52s
cpp-template / build (Release, arm-linux-gnueabihf) (push) Failing after 12m55s
cpp-template / build (Release, aarch64-linux-gnu) (push) Failing after 13m1s
cpp-template / build (Debug, mipsel-linux-gnu) (push) Failing after 13m6s
cpp-template / build (Debug, host.gcc) (push) Failing after 13m11s
cpp-template / build (Debug, arm-linux-gnueabihf) (push) Failing after 13m19s
40 lines
926 B
C
40 lines
926 B
C
#ifndef __TRACYCALLSTACK_H__
|
|
#define __TRACYCALLSTACK_H__
|
|
|
|
#ifndef TRACY_NO_CALLSTACK
|
|
|
|
# if !defined _WIN32
|
|
# include <sys/param.h>
|
|
# endif
|
|
|
|
# if defined _WIN32
|
|
# include "../common/TracyWinFamily.hpp"
|
|
# if !defined TRACY_WIN32_NO_DESKTOP
|
|
# define TRACY_HAS_CALLSTACK 1
|
|
# endif
|
|
# 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
|
|
# elif defined BSD
|
|
# define TRACY_HAS_CALLSTACK 6
|
|
# endif
|
|
|
|
#if TRACY_HAS_CALLSTACK == 2 || TRACY_HAS_CALLSTACK == 3 || TRACY_HAS_CALLSTACK == 4 || TRACY_HAS_CALLSTACK == 6
|
|
#define TRACY_USE_LIBBACKTRACE
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|