Disable arch checks on 32 bit GCC that don't build

core4
kaetemi 3 years ago
parent 5b85b4e837
commit a6139ade22
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()
{
#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 ...
sint32 CPUInfo[4];
@ -1348,7 +1348,7 @@ static bool DetectMMX()
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 ...
sint32 CPUInfo[4];

Loading…
Cancel
Save