Skip to content

Commit 8abd765

Browse files
committed
Fix External CI
1 parent 83486b9 commit 8abd765

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ cmake-out*
1818
cmake-out-android/
1919
build-android/
2020
build-x86/
21+
build-hexagon/
2122
dist/
2223
arm-scratch/
2324
executorch.egg-info

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ set(EXECUTORCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR})
5252

5353
# Hexagon toolchain with release build complains about code in third party
5454
# libraries.
55-
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES Hexagon AND ${CMAKE_BUILD_TYPE} STREQUAL
56-
"Release"
55+
if("${CMAKE_SYSTEM_PROCESSOR}" MATCHES "Hexagon" AND "${CMAKE_BUILD_TYPE}"
56+
STREQUAL "Release"
5757
)
5858
add_compile_options(
5959
-Wno-error=format -Wno-error=implicit-int-conversion

0 commit comments

Comments
 (0)