aboutsummaryrefslogtreecommitdiff
path: root/src/comp/back
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2011-05-05 17:20:27 -0700
committerGraydon Hoare <[email protected]>2011-05-05 17:20:27 -0700
commit9e3b096d98905062addbdef68a0838e6ef83bb21 (patch)
treea0717bc84ff7889e34d04945f0de54a216c14461 /src/comp/back
parentConsolidating expr_to_str functions. (diff)
downloadrust-9e3b096d98905062addbdef68a0838e6ef83bb21.tar.xz
rust-9e3b096d98905062addbdef68a0838e6ef83bb21.zip
Fix x86.rs triple for linux.
Diffstat (limited to 'src/comp/back')
-rw-r--r--src/comp/back/x86.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/back/x86.rs b/src/comp/back/x86.rs
index f439d23e..855bd51b 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";
}