mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 06:58:56 +02:00
use the correct macro for detecting GCC
This commit is contained in:
parent
a4afa03fe5
commit
27494e54c5
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ static bool cpuSupportsAVX() {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif defined(__GNU__)
|
#elif defined(__GNUC__)
|
||||||
|
|
||||||
static bool cpuSupportsAVX() {
|
static bool cpuSupportsAVX() {
|
||||||
return __builtin_cpu_supports("avx");
|
return __builtin_cpu_supports("avx");
|
||||||
|
|
Loading…
Reference in a new issue