From 932be2d9e1087aeb38ba0630e2c6218131ffe23d Mon Sep 17 00:00:00 2001 From: Raul Victor Trombin Date: Thu, 14 Mar 2024 16:26:46 -0300 Subject: [PATCH] examples: cpp: CMake Standalone fix aarch64 binaries --- examples/cpp/CMakeLists_Standalone.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cpp/CMakeLists_Standalone.txt b/examples/cpp/CMakeLists_Standalone.txt index 3bad9e477..015629d71 100644 --- a/examples/cpp/CMakeLists_Standalone.txt +++ b/examples/cpp/CMakeLists_Standalone.txt @@ -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()