Remove linker and tool configuration from clang toolchain

This commit is contained in:
Madeline Busig 2026-07-10 20:22:08 -07:00
parent 292f925ca6
commit b651767f11

View File

@ -3,10 +3,6 @@ cmake_minimum_required(VERSION 3.13)
find_program(CMAKE_ASM_COMPILER clang)
find_program(CMAKE_C_COMPILER clang)
find_program(CMAKE_CXX_COMPILER clang++)
find_program(CMAKE_LINKER lld)
find_program(CMAKE_AR llvm-ar)
find_program(CMAKE_RANLIB llvm-ranlib)
find_program(CMAKE_STRIP llvm-strip)
# Get host triplet, in case the target isn't set we'll use it as a default
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpmachine OUTPUT_VARIABLE HOST_TRIPLET)