Home
last modified time | relevance | path

Searched refs:sdk_path (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/libcxx/utils/libcxx/test/
H A Dtarget_info.py58 sdk_path = out.strip()
59 self.full_config.lit_config.note('using SDKROOT: %r' % sdk_path)
60 assert isinstance(sdk_path, str)
61 flags += ["-isysroot", sdk_path]
/llvm-project-15.0.7/clang/utils/perf-training/
H A Dlit.cfg18 sdk_path = out
19 lit_config.note('using SDKROOT: %r' % sdk_path)
20 return '-isysroot %s' % sdk_path
H A Dorder-files.lit.cfg19 sdk_path = out
20 lit_config.note('using SDKROOT: %r' % sdk_path)
21 return '-isysroot %s' % sdk_path
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformMacOSX.cpp116 StreamString sdk_path; in GetSDKDirectory() local
117 sdk_path.Printf("%s/Developer/Platforms/MacOSX.platform/Developer/" in GetSDKDirectory()
122 return ConstString(sdk_path.GetString()); in GetSDKDirectory()
/llvm-project-15.0.7/lldb/test/Shell/helper/
H A Dtoolchain.py127 sdk_path = lit.util.to_string(out)
128 llvm_config.lit_config.note('using SDKROOT: %r' % sdk_path)
129 host_flags += ['-isysroot', sdk_path]
/llvm-project-15.0.7/utils/bazel/
H A Dvulkan_sdk.bzl15 sdk_path = repository_ctx.os.environ["VULKAN_SDK"]
16 repository_ctx.symlink(sdk_path, "vulkan-sdk")
/llvm-project-15.0.7/compiler-rt/cmake/
H A Dbuiltin-config-ix.cmake91 function(sdk_has_arch_support sdk_path os arch has_support)
93 … /usr/libexec/PlistBuddy -c "Print :SupportedTargets:${os}:Archs" ${sdk_path}/SDKSettings.plist
99 message(STATUS "Found ${arch} support in ${sdk_path}/SDKSettings.plist")
102 message(STATUS "No ${arch} support in ${sdk_path}/SDKSettings.plist")
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A Dutil.py408 sdk_path = out.decode()
409 lit_config.note('using SDKROOT: %r' % sdk_path)
410 config.environment['SDKROOT'] = sdk_path
/llvm-project-15.0.7/llvm/utils/gn/build/
H A DBUILD.gn314 sdk_path = ios_sdk_path
316 sdk_path = iossim_sdk_path
318 sdk_path = mac_sdk_path
322 rebase_path(sdk_path, root_build_dir),
326 rebase_path(sdk_path, root_build_dir),
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DXcodeSDK.h85 static bool SDKSupportsModules(Type desired_type, const FileSpec &sdk_path);
/llvm-project-15.0.7/lldb/source/Utility/
H A DXcodeSDK.cpp244 const FileSpec &sdk_path) { in SDKSupportsModules() argument
245 ConstString last_path_component = sdk_path.GetLastPathComponent(); in SDKSupportsModules()
/llvm-project-15.0.7/lldb/source/Core/
H A DModule.cpp1632 llvm::StringRef sdk_path(HostInfo::GetXcodeSDKPath(sdk)); in RegisterXcodeSDK() local
1633 if (sdk_path.empty()) in RegisterXcodeSDK()
1637 if (!m_source_mappings.Replace(sysroot, sdk_path, true)) in RegisterXcodeSDK()
1639 m_source_mappings.Append(sysroot, sdk_path, false); in RegisterXcodeSDK()