From 9fc590fdffba74ea4d7aac1867b34a0773eaa709 Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Sun, 7 May 2023 19:13:46 +0200 Subject: [PATCH] fix --- .github/workflows/toolchains/toolchain-arm64.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/toolchains/toolchain-arm64.cmake b/.github/workflows/toolchains/toolchain-arm64.cmake index d80cb32..4e2f850 100644 --- a/.github/workflows/toolchains/toolchain-arm64.cmake +++ b/.github/workflows/toolchains/toolchain-arm64.cmake @@ -4,11 +4,11 @@ set(triple aarch64-linux-gnu) set(CMAKE_SYSROOT /usr/aarch64-linux-gnu) set(CMAKE_FIND_ROOT_PATH /usr/aarch64-linux-gnu) -set(CMAKE_C_COMPILER /usr/lib/clang-10) +set(CMAKE_C_COMPILER /usr/bin/clang-10) set(CMAKE_C_COMPILER_TARGET ${triple}) -set(CMAKE_CXX_COMPILER /usr/lib/clang++-10) +set(CMAKE_CXX_COMPILER /usr/bin/clang++-10) set(CMAKE_CXX_COMPILER_TARGET ${triple}) -set(CMAKE_AR /usr/lib/llvm-ar-10) +set(CMAKE_AR /usr/bin/llvm-ar-10) # Set various compiler flags set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-psabi --specs=nosys.specs -fdata-sections -ffunction-sections -Wl,--gc-sections")