2010-11-29 19:44:50 +00:00
|
|
|
//===- llvm/Support/Unix/Host.inc -------------------------------*- C++ -*-===//
|
2009-02-08 21:10:57 +00:00
|
|
|
//
|
2008-10-02 01:17:28 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2009-02-08 21:10:57 +00:00
|
|
|
//
|
2008-10-02 01:17:28 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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-09-03 01:10:13 +00:00
|
|
|
#include "llvm/Config/config.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2008-10-02 01:17:28 +00:00
|
|
|
#include "Unix.h"
|
|
|
|
#include <sys/utsname.h>
|
2010-12-19 20:43:38 +00:00
|
|
|
#include <cctype>
|
2008-10-02 01:17:28 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-03-31 17:30:15 +00:00
|
|
|
static std::string getOSVersion() {
|
2008-10-02 01:17:28 +00:00
|
|
|
struct utsname info;
|
|
|
|
|
|
|
|
if (uname(&info))
|
|
|
|
return "";
|
|
|
|
|
2009-03-31 17:30:15 +00:00
|
|
|
return info.release;
|
2008-10-02 01:17:28 +00:00
|
|
|
}
|
|
|
|
|
2009-03-31 17:30:15 +00:00
|
|
|
std::string sys::getHostTriple() {
|
2009-09-03 01:10:13 +00:00
|
|
|
// FIXME: Derive directly instead of relying on the autoconf generated
|
|
|
|
// variable.
|
2009-03-31 17:30:15 +00:00
|
|
|
|
2009-09-03 01:10:13 +00:00
|
|
|
StringRef HostTripleString(LLVM_HOSTTRIPLE);
|
|
|
|
std::pair<StringRef, StringRef> ArchSplit = HostTripleString.split('-');
|
2010-11-29 18:16:10 +00:00
|
|
|
|
2009-09-03 01:10:13 +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-03-31 17:30:15 +00:00
|
|
|
|
|
|
|
// Force i<N>86 to i386.
|
2010-11-29 18:16:10 +00:00
|
|
|
if (Triple[0] == 'i' && isdigit(Triple[1]) &&
|
2009-03-31 17:30:15 +00:00
|
|
|
Triple[2] == '8' && Triple[3] == '6')
|
|
|
|
Triple[1] = '3';
|
|
|
|
|
|
|
|
// On darwin, we want to update the version to match that of the
|
2010-11-29 18:16:10 +00:00
|
|
|
// host.
|
2009-03-31 17:30:15 +00:00
|
|
|
std::string::size_type DarwinDashIdx = Triple.find("-darwin");
|
|
|
|
if (DarwinDashIdx != std::string::npos) {
|
|
|
|
Triple.resize(DarwinDashIdx + strlen("-darwin"));
|
2011-04-20 15:44:33 +00:00
|
|
|
Triple += getOSVersion();
|
2009-03-31 17:30:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Triple;
|
2008-10-02 01:17:28 +00:00
|
|
|
}
|