Merge branch 'core4' into feature/quick-start-py

feature/quick-start-py
kaetemi 3 years ago
commit 9d991864c8
No known key found for this signature in database
GPG Key ID: 9873C4D40BB479BC

@ -1333,7 +1333,7 @@ uint64 CSystemInfo::getProcessorFrequency(bool quick)
static bool DetectMMX() static bool DetectMMX()
{ {
#ifdef NL_CPU_INTEL #if defined(NL_CPU_INTEL) && (defined(HAVE_X86_64) || !defined(NL_COMP_GCC))
if (!CSystemInfo::hasCPUID()) return false; // cpuid not supported ... if (!CSystemInfo::hasCPUID()) return false; // cpuid not supported ...
sint32 CPUInfo[4]; sint32 CPUInfo[4];
@ -1348,7 +1348,7 @@ static bool DetectMMX()
static bool DetectSSE() static bool DetectSSE()
{ {
#ifdef NL_CPU_INTEL #if defined(NL_CPU_INTEL) && (defined(HAVE_X86_64) || !defined(NL_COMP_GCC))
if (!CSystemInfo::hasCPUID()) return false; // cpuid not supported ... if (!CSystemInfo::hasCPUID()) return false; // cpuid not supported ...
sint32 CPUInfo[4]; sint32 CPUInfo[4];

Loading…
Cancel
Save