mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 11:42:31 +01:00
- no runtime check for sse on mac (since the asm fails) with: error: can't find a register in class 'BREG' while reloading 'asm'
This commit is contained in:
parent
6835eb534c
commit
1503956c55
@ -563,7 +563,7 @@ int mainSetup(int argc, char **argv) {
|
||||
snprintf(szBuf,8096,"Error detected, your CPU does not seem to support SSE: [%d]\n",has_SSE);
|
||||
throw megaglest_runtime_error(szBuf);
|
||||
}
|
||||
#elif defined (__GNUC__)
|
||||
#elif defined (__GNUC__) && !defined(__APPLE__)
|
||||
|
||||
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] About to validate SSE support\n",__FILE__,__FUNCTION__,__LINE__);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user