diff options
Diffstat (limited to 'src/comp')
| -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"; } |