Some checks failed
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Successful in 1m34s
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Successful in 2m46s
sm-rpc / build (Debug, host.gcc) (push) Failing after 1m28s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Successful in 2m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Successful in 2m8s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Successful in 5m35s
sm-rpc / build (Release, host.gcc) (push) Failing after 1m55s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Successful in 7m21s
36 lines
750 B
C
36 lines
750 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/TracyUwp.hpp"
|
|
# ifndef TRACY_UWP
|
|
# 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
|
|
|
|
#endif
|
|
|
|
#endif
|