mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Allow disabling callstack handling.
This commit is contained in:
parent
d318f75123
commit
e2b0268d7a
@ -1,31 +1,35 @@
|
|||||||
#ifndef __TRACYCALLSTACK_H__
|
#ifndef __TRACYCALLSTACK_H__
|
||||||
#define __TRACYCALLSTACK_H__
|
#define __TRACYCALLSTACK_H__
|
||||||
|
|
||||||
#if !defined _WIN32
|
#ifndef TRACY_NO_CALLSTACK
|
||||||
# include <sys/param.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined _WIN32
|
# if !defined _WIN32
|
||||||
# include "../common/TracyUwp.hpp"
|
# include <sys/param.h>
|
||||||
# ifndef TRACY_UWP
|
|
||||||
# define TRACY_HAS_CALLSTACK 1
|
|
||||||
# endif
|
# endif
|
||||||
#elif defined __ANDROID__
|
|
||||||
# if !defined __arm__ || __ANDROID_API__ >= 21
|
# if defined _WIN32
|
||||||
# define TRACY_HAS_CALLSTACK 2
|
# include "../common/TracyUwp.hpp"
|
||||||
# else
|
# ifndef TRACY_UWP
|
||||||
# define TRACY_HAS_CALLSTACK 5
|
# 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
|
||||||
#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
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user