From ed08c77f04b05e014aae72c9abe6d61e7c86aa3c Mon Sep 17 00:00:00 2001 From: cianciosa Date: Thu, 5 Jun 2025 13:23:16 -0400 Subject: [PATCH] Remove one wildcard in the path so CMake can find the clang_rt lib. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf53453..4b78a95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -266,7 +266,7 @@ if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") # MCJIT isn't adding the compiler-rt library so explicitly add it. This is only # shown to happen on macOS but may affect Linux as well. find_library (MACOS_LIB_RT "clang_rt.osx" - PATHS /Applications/Xcode*.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/*/lib/darwin + PATHS /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/*/lib/darwin REQUIRED ) endif () -- GitLab