freebsd-dev/contrib/llvm/lib/Support/Unix/Host.inc

71 lines
2.0 KiB
PHP
Raw Normal View History

//===- 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>
#include <cctype>
2009-06-02 17:52:33 +00:00
#include <string>
#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() {
#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('-');
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.
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
// 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"));
Triple += getOSVersion();
2009-06-02 17:52:33 +00:00
}
return Triple;
#endif
2009-06-02 17:52:33 +00:00
}