Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Host/common/
H A DHostInfoBase.cpp207 llvm::Triple host_triple(llvm::sys::getDefaultTargetTriple()); in GetAugmentedArchSpec() local
210 normalized_triple.setVendor(host_triple.getVendor()); in GetAugmentedArchSpec()
212 normalized_triple.setOS(host_triple.getOS()); in GetAugmentedArchSpec()
214 !host_triple.getEnvironmentName().empty()) in GetAugmentedArchSpec()
215 normalized_triple.setEnvironment(host_triple.getEnvironment()); in GetAugmentedArchSpec()
/openbsd/gnu/llvm/llvm/utils/lit/lit/llvm/
H A Dconfig.py97 host_triple = getattr(config, 'host_triple', None)
100 if host_triple and host_triple == target_triple:
568 if (self.config.host_triple and
569 self.config.host_triple != '@LLVM_HOST_TRIPLE@'):
573 self.config.host_triple)))
/openbsd/gnu/llvm/lldb/source/Target/
H A DRemoteAwarePlatform.cpp108 const llvm::Triple &host_triple = in ResolveExecutable() local
112 module_triple.setVendorName(host_triple.getVendorName()); in ResolveExecutable()
114 module_triple.setOSName(host_triple.getOSName()); in ResolveExecutable()
/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp185 const llvm::Triple &host_triple = host_arch.GetTriple(); in Handle_qHostInfo() local
187 response.PutStringAsRawHex8(host_triple.getTriple()); in Handle_qHostInfo()
H A DGDBRemoteCommunicationClient.cpp1339 llvm::Triple &host_triple = m_host_arch.GetTriple(); in GetHostInfo() local
1340 if (host_triple.getVendor() == llvm::Triple::Apple && in GetHostInfo()
1341 host_triple.getOS() == llvm::Triple::Darwin) { in GetHostInfo()
1347 host_triple.setOS(llvm::Triple::IOS); in GetHostInfo()
1350 host_triple.setOS(llvm::Triple::MacOSX); in GetHostInfo()