We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f8a207 commit ca1fa2fCopy full SHA for ca1fa2f
conf/cmake/functions.cmake
@@ -148,7 +148,8 @@ macro(macro_check_module_architect path_module target_name target_proc var_compa
148
set(_data "")
149
if (APPLE)
150
# Check if it's a .tbd file (text-based stub) - these are multi-arch by design
151
- cmake_path(GET path_module EXTENSION _file_ext)
+ set(_module_path "${path_module}")
152
+ cmake_path(GET _module_path EXTENSION _file_ext)
153
if ("${_file_ext}" STREQUAL ".tbd")
154
# .tbd files are text-based stubs that contain architecture info
155
# Parse the targets line: "targets: [ x86_64-macos, arm64-macos, arm64e-macos ]"
0 commit comments