From c4b09c36036afa940e73be95cba8049cb3e6c0d7 Mon Sep 17 00:00:00 2001 From: Ken Cooke Date: Thu, 11 Feb 2016 15:15:50 -0800 Subject: [PATCH] not supported by Clang --- libraries/audio/src/AudioHRTF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/audio/src/AudioHRTF.cpp b/libraries/audio/src/AudioHRTF.cpp index 4eef4ff723..b56cf87e1e 100644 --- a/libraries/audio/src/AudioHRTF.cpp +++ b/libraries/audio/src/AudioHRTF.cpp @@ -143,7 +143,7 @@ static bool cpuSupportsAVX() { return result; } -#elif defined(__GNUC__) +#elif defined(__GNUC__) && !defined(__clang__) static bool cpuSupportsAVX() { return __builtin_cpu_supports("avx");