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>
|
2011-08-09 05:13:36 +00:00
|
|
|
#include <cstdlib> // ::getenv
|
2008-10-02 01:17:28 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2012-01-05 18:28:46 +00:00
|
|
|
std::string sys::getDefaultTargetTriple() {
|
|
|
|
StringRef TargetTripleString(LLVM_DEFAULT_TARGET_TRIPLE);
|
|
|
|
std::pair<StringRef, StringRef> ArchSplit = TargetTripleString.split('-');
|
|
|
|
|
|
|
|
// Normalize the arch, since the target triple may not actually match the target.
|
2009-09-03 01:10:13 +00:00
|
|
|
std::string Arch = ArchSplit.first;
|
2012-01-05 18:28:46 +00:00
|
|
|
|
2009-09-03 01:10:13 +00:00
|
|
|
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
|
2011-11-01 21:32:20 +00:00
|
|
|
// target.
|
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
|
|
|
}
|