2011-02-20 12:57:14 +00:00
|
|
|
//===- llvm/Support/Unix/Host.inc -------------------------------*- C++ -*-===//
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the UNIX Host support.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only generic UNIX code that
|
|
|
|
//=== is guaranteed to work on *all* UNIX variants.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
#include "llvm/Config/config.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
#include "Unix.h"
|
|
|
|
#include <sys/utsname.h>
|
2011-02-20 12:57:14 +00:00
|
|
|
#include <cctype>
|
2009-06-02 17:52:33 +00:00
|
|
|
#include <string>
|
2011-10-20 21:10:27 +00:00
|
|
|
#include <cstdlib> // ::getenv
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static std::string getOSVersion() {
|
|
|
|
struct utsname info;
|
|
|
|
|
|
|
|
if (uname(&info))
|
|
|
|
return "";
|
|
|
|
|
|
|
|
return info.release;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string sys::getHostTriple() {
|
2011-05-05 16:14:13 +00:00
|
|
|
#ifdef __FreeBSD__
|
|
|
|
return LLVM_HOSTTRIPLE;
|
|
|
|
#else
|
2009-10-14 17:57:32 +00:00
|
|
|
// FIXME: Derive directly instead of relying on the autoconf generated
|
|
|
|
// variable.
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
StringRef HostTripleString(LLVM_HOSTTRIPLE);
|
|
|
|
std::pair<StringRef, StringRef> ArchSplit = HostTripleString.split('-');
|
2011-02-20 12:57:14 +00:00
|
|
|
|
2009-10-14 17:57:32 +00:00
|
|
|
// Normalize the arch, since the host triple may not actually match the host.
|
|
|
|
std::string Arch = ArchSplit.first;
|
|
|
|
|
|
|
|
std::string Triple(Arch);
|
|
|
|
Triple += '-';
|
|
|
|
Triple += ArchSplit.second;
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
// Force i<N>86 to i386.
|
2011-02-20 12:57:14 +00:00
|
|
|
if (Triple[0] == 'i' && isdigit(Triple[1]) &&
|
2009-06-02 17:52:33 +00:00
|
|
|
Triple[2] == '8' && Triple[3] == '6')
|
|
|
|
Triple[1] = '3';
|
|
|
|
|
|
|
|
// On darwin, we want to update the version to match that of the
|
2011-02-20 12:57:14 +00:00
|
|
|
// host.
|
2009-06-02 17:52:33 +00:00
|
|
|
std::string::size_type DarwinDashIdx = Triple.find("-darwin");
|
|
|
|
if (DarwinDashIdx != std::string::npos) {
|
|
|
|
Triple.resize(DarwinDashIdx + strlen("-darwin"));
|
2011-05-02 19:34:44 +00:00
|
|
|
Triple += getOSVersion();
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Triple;
|
2011-05-05 16:14:13 +00:00
|
|
|
#endif
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|