From 9e3b096d98905062addbdef68a0838e6ef83bb21 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Thu, 5 May 2011 17:20:27 -0700 Subject: [PATCH] Fix x86.rs triple for linux. --- src/comp/back/x86.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp/back/x86.rs b/src/comp/back/x86.rs index f439d23ef85..855bd51b8ff 100644 --- a/src/comp/back/x86.rs +++ b/src/comp/back/x86.rs @@ -353,7 +353,7 @@ fn get_target_triple() -> str { if (_str.eq(target_os(), "win32")) { ret "i686-pc-mingw32"; } - ret "i686-pc-linux-gnu"; + ret "i686-unknown-linux-gnu"; } -- GitLab