blob: b7cec8ef45d6b88b65f82423d2825af434277c96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d9e5721..9497124 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -141,9 +141,6 @@ ELSE()
# wasm doesn't allow for x87 floating point math
ADD_COMPILE_FLAG("-msse2")
ADD_COMPILE_FLAG("-mfpmath=sse")
- elseif(TARGET_ARCH STREQUAL "ARM")
- # stub for ARM-specific instructions. GCC6 adds NEON with the below flags
- ADD_COMPILE_FLAG("-march=native")
endif ()
endif ()
ADD_COMPILE_FLAG("-Wall")
|