freebsd-dev/contrib/llvm/patches/patch-r221503-default-target-triple.diff
Dimitry Andric a426b286c8 Add the clang patch for r265477. While here, add a description to the
patch for r263619, and unify all the URLs to point to svnweb.
2014-05-24 22:27:31 +00:00

27 lines
689 B
Diff

This patch ensures the target triple that is passed during the compiler build is
respected, instead of mangling it.
Introduced here: http://svnweb.freebsd.org/changeset/base/221503
Index: lib/Support/Unix/Host.inc
===================================================================
--- lib/Support/Unix/Host.inc
+++ lib/Support/Unix/Host.inc
@@ -26,6 +26,11 @@
using namespace llvm;
+#ifdef __FreeBSD__
+std::string sys::getDefaultTargetTriple() {
+ return LLVM_DEFAULT_TARGET_TRIPLE;
+}
+#else // __FreeBSD__
static std::string getOSVersion() {
struct utsname info;
@@ -61,3 +66,4 @@ std::string sys::getDefaultTargetTriple() {
return Triple;
}
+#endif // __FreeBSD__