From f861f8913427476d659e7dc4ee37bb068f2df57a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 30 Oct 2017 16:23:23 +0100 Subject: [PATCH] Disable rdtscp on android. --- client/TracyProfiler.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.hpp b/client/TracyProfiler.hpp index ef2e5124..161c4206 100644 --- a/client/TracyProfiler.hpp +++ b/client/TracyProfiler.hpp @@ -15,7 +15,7 @@ # include #endif -#if defined _MSC_VER || defined __CYGWIN__ || defined __i386 || defined _M_IX86 || defined __x86_64__ || defined _M_X64 +#if defined _MSC_VER || defined __CYGWIN__ || ( ( defined __i386 || defined _M_IX86 || defined __x86_64__ || defined _M_X64 ) && !defined __ANDROID__ ) # define TRACY_RDTSCP_SUPPORTED #endif