Skip to content

Commit

Permalink
examples: cpp: CMake Standalone fix aarch64 binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
RaulTrombin authored and patrickelectric committed Mar 14, 2024
1 parent 5eb92ce commit 932be2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/cpp/CMakeLists_Standalone.txt
Expand Up @@ -29,7 +29,7 @@ ExternalProject_Add(
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv7")
set(LIB_PATH_SUBDIR "armv7-unknown-linux-gnueabihf")
elseif(${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv8" OR ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64")
set(LIB_PATH_SUBDIR "aarch64-unknown-linux-gnueabihf")
set(LIB_PATH_SUBDIR "aarch64-unknown-linux-gnu")
else()
message(FATAL_ERROR "Unsupported architecture")
endif()
Expand Down

0 comments on commit 932be2d

Please sign in to comment.