Home
last modified time | relevance | path

Searched refs:host_triple (Results 1 – 9 of 9) sorted by relevance

/external/lldb/source/Plugins/Platform/Linux/
DPlatformLinux.cpp220 …const llvm::Triple &host_triple = Host::GetArchitecture (Host::eSystemDefaultArchitecture).GetTrip… in ResolveExecutable() local
223 module_triple.setVendorName (host_triple.getVendorName()); in ResolveExecutable()
225 module_triple.setOSName (host_triple.getOSName()); in ResolveExecutable()
/external/clang/test/
Dlit.site.cfg.in14 config.host_triple = "@LLVM_HOST_TRIPLE@"
Dlit.cfg273 if config.host_triple and config.host_triple != '@LLVM_HOST_TRIPLE@':
274 …nd( ('%target_itanium_abi_host_triple', '--target=%s' % makeItaniumABITriple(config.host_triple)) )
376 # even if host_triple were different from target_triple.
377 if config.host_triple == config.target_triple:
/external/lldb/source/Core/
DArchSpec.cpp638 llvm::Triple host_triple(llvm::sys::getDefaultTargetTriple()); in SetTriple() local
640 normalized_triple.setVendor(host_triple.getVendor()); in SetTriple()
642 normalized_triple.setOS(host_triple.getOS()); in SetTriple()
643 if (!env_specified && host_triple.getEnvironmentName().size()) in SetTriple()
644 normalized_triple.setEnvironment(host_triple.getEnvironment()); in SetTriple()
/external/llvm/test/
Dlit.site.cfg.in5 config.host_triple = "@LLVM_HOST_TRIPLE@"
Dlit.site.cfg14 config.host_triple = "x86_64-unknown-linux-gnu"
Dlit.cfg179 if re.search(r'cygwin|mingw32|windows-gnu|windows-msvc|win32', config.host_triple):
180 lli += ' -mtriple='+config.host_triple+'-elf'
332 # even if host_triple were different from target_triple.
333 if config.host_triple == config.target_triple:
/external/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.cpp1277 llvm::Triple &host_triple = m_host_arch.GetTriple(); in GetHostInfo() local
1278 … if (host_triple.getVendor() == llvm::Triple::Apple && host_triple.getOS() == llvm::Triple::Darwin) in GetHostInfo()
1284 host_triple.setOS(llvm::Triple::IOS); in GetHostInfo()
1287 host_triple.setOS(llvm::Triple::MacOSX); in GetHostInfo()
DGDBRemoteCommunicationServer.cpp214 const llvm::Triple &host_triple = host_arch.GetTriple(); in Handle_qHostInfo() local
216 response.PutCStringAsRawHex8(host_triple.getTriple().c_str()); in Handle_qHostInfo()