From d577766ac133919385f4d04a32870958526f6f7b Mon Sep 17 00:00:00 2001 From: Branimir Karadzic Date: Tue, 28 Oct 2014 19:07:33 -0700 Subject: [PATCH] Fixed iOS build. --- include/bx/float4_t.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/bx/float4_t.h b/include/bx/float4_t.h index b307519..e9f9d62 100644 --- a/include/bx/float4_t.h +++ b/include/bx/float4_t.h @@ -15,7 +15,10 @@ # include "float4_sse.h" #elif defined(__ARM_NEON__) && !BX_COMPILER_CLANG # include "float4_neon.h" -#elif BX_COMPILER_CLANG && !BX_PLATFORM_EMSCRIPTEN && BX_CLANG_HAS_EXTENSION(attribute_ext_vector_type) +#elif BX_COMPILER_CLANG \ + && !BX_PLATFORM_EMSCRIPTEN \ + && !BX_PLATFORM_IOS \ + && BX_CLANG_HAS_EXTENSION(attribute_ext_vector_type) # include "float4_langext.h" #else # ifndef BX_FLOAT4_WARN_REFERENCE_IMPL