diff options
| author | Graydon Hoare <[email protected]> | 2011-05-05 17:20:27 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-05-05 17:20:27 -0700 |
| commit | 9e3b096d98905062addbdef68a0838e6ef83bb21 (patch) | |
| tree | a0717bc84ff7889e34d04945f0de54a216c14461 /src | |
| parent | Consolidating expr_to_str functions. (diff) | |
| download | rust-9e3b096d98905062addbdef68a0838e6ef83bb21.tar.xz rust-9e3b096d98905062addbdef68a0838e6ef83bb21.zip | |
Fix x86.rs triple for linux.
Diffstat (limited to 'src')
| -rw-r--r-- | src/comp/back/x86.rs | 2 |
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"; } |