Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cmake/modules/HexagonSDK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ function(_get_hexagon_sdk_property_impl
"${_hexagon_sdk_root}/rtos/qurt/${_hexarch_dir}/include/qurt"
"${_hexagon_sdk_root}/ipc/fastrpc/rtld/ship/${_rtld_dir}"
)
_check_path_exists("${_hexagon_sdk_root}/ipc/fastrpc/rtld/ship/inc" _sdk_dlfcn)
if(_sdk_dlfcn)
list(APPEND _dirs "${_hexagon_sdk_root}/ipc/fastrpc/rtld/ship/inc")
endif()
elseif(_property STREQUAL "QURT_LIB")
set(_dirs "${_hexagon_sdk_root}/rtos/qurt/${_hexarch_dir}/lib/pic")
elseif(_property STREQUAL "RPCMEM_ROOT")
Expand Down
2 changes: 2 additions & 0 deletions src/runtime/hexagon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ CMAKE_CXX_COMPILER=hexagon-clang++
USE_HEXAGON=ON
USE_HEXAGON_ARCH=v65|v66|v68|v69|v73
USE_HEXAGON_SDK=/path/to/sdk
USE_RPC=OFF
USE_LIBBACKTRACE=OFF
```

As mentioned before, only build the `runtime` component (e.g. `make runtime`).
Expand Down