From cb43a0efea91519b12a03ea171fc19e3fa04053b Mon Sep 17 00:00:00 2001 From: amerhifi Date: Tue, 21 May 2019 10:59:33 -0700 Subject: [PATCH] trying to bypass android error with output constraint --- libraries/platform/src/LinuxPlatform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/platform/src/LinuxPlatform.cpp b/libraries/platform/src/LinuxPlatform.cpp index 20034a4340..e376a45165 100644 --- a/libraries/platform/src/LinuxPlatform.cpp +++ b/libraries/platform/src/LinuxPlatform.cpp @@ -15,7 +15,7 @@ using namespace platform; static void getLCpuId( uint32_t* p, uint32_t ax ) { -#ifdef Q_OS_LINUX +#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) __asm __volatile ( "movl %%ebx, %%esi\n\t" "cpuid\n\t"