Skip to content

Commit

Permalink
[RPC] Don't use existence of USE_HEXAGON_SDK as enablement check (#11080
Browse files Browse the repository at this point in the history
)

* [RPC] Don't use existence of USE_HEXAGON_SDK as enablement check

Use USE_HEXAGON to check if Hexagon support is enabled or not.

This fixes #11059.

* Restart CI
  • Loading branch information
Krzysztof Parzyszek authored Apr 21, 2022
1 parent 0070b6c commit 3527241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cpp_rpc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ target_include_directories(
PUBLIC DMLC_PATH
)

if (BUILD_FOR_ANDROID AND USE_HEXAGON_SDK)
if (BUILD_FOR_ANDROID AND USE_HEXAGON)
get_hexagon_sdk_property("${USE_HEXAGON_SDK}" "${USE_HEXAGON_ARCH}"
DSPRPC_LIB DSPRPC_LIB_DIRS
)
Expand Down

1 comment on commit 3527241

@pfk-beta
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kparzysz-quic Does it make sense to build cpp_rpc for android without HEXAGON?

Please sign in to comment.