Home
last modified time | relevance | path

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

/external/clang/utils/perf-training/
Dlit.cfg17 sdk_path = out
18 lit_config.note('using SDKROOT: %r' % sdk_path)
19 return '-isysroot %s' % sdk_path
Dorder-files.lit.cfg18 sdk_path = out
19 lit_config.note('using SDKROOT: %r' % sdk_path)
20 return '-isysroot %s' % sdk_path
/external/llvm-project/clang/utils/perf-training/
Dlit.cfg18 sdk_path = out
19 lit_config.note('using SDKROOT: %r' % sdk_path)
20 return '-isysroot %s' % sdk_path
Dorder-files.lit.cfg19 sdk_path = out
20 lit_config.note('using SDKROOT: %r' % sdk_path)
21 return '-isysroot %s' % sdk_path
/external/llvm-project/libcxx/utils/libcxx/test/
Dtarget_info.py82 sdk_path = out.strip()
83 self.full_config.lit_config.note('using SDKROOT: %r' % sdk_path)
84 assert isinstance(sdk_path, str)
85 flags += ["-isysroot", sdk_path]
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSX.cpp121 StreamString sdk_path; in GetSDKDirectory() local
122 sdk_path.Printf("%s/Developer/Platforms/MacOSX.platform/Developer/" in GetSDKDirectory()
127 return ConstString(sdk_path.GetString()); in GetSDKDirectory()
/external/llvm-project/lldb/test/Shell/helper/
Dtoolchain.py121 sdk_path = lit.util.to_string(out)
122 llvm_config.lit_config.note('using SDKROOT: %r' % sdk_path)
123 host_flags += ['-isysroot', sdk_path]
/external/libcxx/utils/libcxx/test/
Dtarget_info.py136 sdk_path = out.strip()
137 self.full_config.lit_config.note('using SDKROOT: %r' % sdk_path)
138 assert isinstance(sdk_path, str)
139 flags += ["-isysroot", sdk_path]
/external/llvm-project/compiler-rt/cmake/
Dbuiltin-config-ix.cmake82 function(sdk_has_arch_support sdk_path os arch has_support)
84 … /usr/libexec/PlistBuddy -c "Print :SupportedTargets:${os}:Archs" ${sdk_path}/SDKSettings.plist
89 message(STATUS "Found ${arch} support in ${sdk_path}/SDKSettings.plist")
92 message(STATUS "No ${arch} support in ${sdk_path}/SDKSettings.plist")
/external/llvm-project/llvm/utils/gn/build/
DBUILD.gn47 sdk_path = ios_sdk_path
49 sdk_path = iossim_sdk_path
51 sdk_path = mac_sdk_path
55 sdk_path,
59 sdk_path,
/external/llvm/utils/lit/lit/
Dutil.py253 sdk_path = out
254 lit_config.note('using SDKROOT: %r' % sdk_path)
255 config.environment['SDKROOT'] = sdk_path
/external/llvm-project/llvm/utils/lit/lit/
Dutil.py407 sdk_path = out.decode()
408 lit_config.note('using SDKROOT: %r' % sdk_path)
409 config.environment['SDKROOT'] = sdk_path
/external/llvm-project/lldb/include/lldb/Utility/
DXcodeSDK.h85 static bool SDKSupportsModules(Type desired_type, const FileSpec &sdk_path);
/external/llvm-project/lldb/source/Utility/
DXcodeSDK.cpp247 const FileSpec &sdk_path) { in SDKSupportsModules() argument
248 ConstString last_path_component = sdk_path.GetLastPathComponent(); in SDKSupportsModules()
/external/llvm-project/lldb/source/Core/
DModule.cpp1626 ConstString sdk_path(HostInfo::GetXcodeSDKPath(sdk)); in RegisterXcodeSDK() local
1627 if (!sdk_path) in RegisterXcodeSDK()
1632 if (!m_source_mappings.Replace(sysroot_cs, sdk_path, true)) in RegisterXcodeSDK()
1634 m_source_mappings.Append(sysroot_cs, sdk_path, false); in RegisterXcodeSDK()