2015-01-18 16:17:27 +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.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Unix.h"
|
2015-01-18 16:17:27 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/Config/config.h"
|
2011-02-20 12:57:14 +00:00
|
|
|
#include <cctype>
|
2009-06-02 17:52:33 +00:00
|
|
|
#include <string>
|
2015-01-18 16:17:27 +00:00
|
|
|
#include <sys/utsname.h>
|
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;
|
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
std::string sys::getDefaultTargetTriple() {
|
2015-05-27 18:44:32 +00:00
|
|
|
std::string TargetTripleString(LLVM_DEFAULT_TARGET_TRIPLE);
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
// On darwin, we want to update the version to match that of the
|
2012-04-14 13:54:10 +00:00
|
|
|
// target.
|
2015-05-27 18:44:32 +00:00
|
|
|
std::string::size_type DarwinDashIdx = TargetTripleString.find("-darwin");
|
2009-06-02 17:52:33 +00:00
|
|
|
if (DarwinDashIdx != std::string::npos) {
|
2015-05-27 18:44:32 +00:00
|
|
|
TargetTripleString.resize(DarwinDashIdx + strlen("-darwin"));
|
|
|
|
TargetTripleString += getOSVersion();
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|
|
|
|
|
2015-05-27 18:44:32 +00:00
|
|
|
return Triple::normalize(TargetTripleString);
|
2009-06-02 17:52:33 +00:00
|
|
|
}
|