We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83486b9 commit 8abd765Copy full SHA for 8abd765
2 files changed
.gitignore
@@ -18,6 +18,7 @@ cmake-out*
18
cmake-out-android/
19
build-android/
20
build-x86/
21
+build-hexagon/
22
dist/
23
arm-scratch/
24
executorch.egg-info
CMakeLists.txt
@@ -52,8 +52,8 @@ set(EXECUTORCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
52
53
# Hexagon toolchain with release build complains about code in third party
54
# libraries.
55
-if(${CMAKE_SYSTEM_PROCESSOR} MATCHES Hexagon AND ${CMAKE_BUILD_TYPE} STREQUAL
56
- "Release"
+if("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "Hexagon" AND "${CMAKE_BUILD_TYPE}"
+ STREQUAL "Release"
57
)
58
add_compile_options(
59
-Wno-error=format -Wno-error=implicit-int-conversion
0 commit comments