Searched refs:host_triple (Results 1 – 10 of 10) sorted by relevance
220 …const llvm::Triple &host_triple = Host::GetArchitecture (Host::eSystemDefaultArchitecture).GetTrip… in ResolveExecutable() local223 module_triple.setVendorName (host_triple.getVendorName()); in ResolveExecutable()225 module_triple.setOSName (host_triple.getOSName()); in ResolveExecutable()
5 config.host_triple = "@LLVM_HOST_TRIPLE@"
8 config.host_triple = "x86_64-unknown-linux-gnu"
160 if re.search(r'cygwin|mingw32|win32', config.host_triple):161 lli_mcjit += ' -mtriple='+config.host_triple+'-elf'309 # even if host_triple were different from target_triple.310 if config.host_triple == config.target_triple:
14 config.host_triple = "@LLVM_HOST_TRIPLE@"
368 # even if host_triple were different from target_triple.369 if config.host_triple == config.target_triple:
638 llvm::Triple host_triple(llvm::sys::getDefaultTargetTriple()); in SetTriple() local640 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()
1277 llvm::Triple &host_triple = m_host_arch.GetTriple(); in GetHostInfo() local1278 … 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()
214 const llvm::Triple &host_triple = host_arch.GetTriple(); in Handle_qHostInfo() local216 response.PutCStringAsRawHex8(host_triple.getTriple().c_str()); in Handle_qHostInfo()
301 my $host_triple = `grep -E '^host = ' $configurationProductDir/GNUmakefile`;302 if ($host_triple =~ m/^host = ([^-]+)-/) {