blob: 96411415d9e0f586c5e9c5858fe248af73fe0dea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
--- a/cmake/modules/Compiler/ClangApple.cmake
+++ b/cmake/modules/Compiler/ClangApple.cmake
@@ -10,7 +10,7 @@
# EXCLUSION OF PATENT LICENSES PROVISION OF THE BSD-3-CLAUSE-CLEAR LICENSE.
if(TARGET_ARCH MATCHES "^x86")
- target_compile_options(lcevc_dec::compiler INTERFACE -mavx)
+ #target_compile_options(lcevc_dec::compiler INTERFACE -mavx)
endif()
target_compile_options(
--- a/cmake/modules/Compiler/ClangGNU.cmake
+++ b/cmake/modules/Compiler/ClangGNU.cmake
@@ -10,7 +10,7 @@
# EXCLUSION OF PATENT LICENSES PROVISION OF THE BSD-3-CLAUSE-CLEAR LICENSE.
if(TARGET_ARCH MATCHES "^x86")
- target_compile_options(lcevc_dec::compiler INTERFACE -mavx)
+ #target_compile_options(lcevc_dec::compiler INTERFACE -mavx)
endif()
if(TARGET_ARCH STREQUAL "wasm")
--- a/cmake/modules/Compiler/GNU.cmake
+++ b/cmake/modules/Compiler/GNU.cmake
@@ -10,7 +10,7 @@
# EXCLUSION OF PATENT LICENSES PROVISION OF THE BSD-3-CLAUSE-CLEAR LICENSE.
if(TARGET_ARCH MATCHES "^x86")
- target_compile_options(lcevc_dec::compiler INTERFACE -mavx)
+ #target_compile_options(lcevc_dec::compiler INTERFACE -mavx)
endif()
if(VN_SDK_COVERAGE)
|