rust/src/librustc/middle/trans
Corey Richardson 6b130e3dd9 Implement flexible target specification
Removes all target-specific knowledge from rustc. Some targets have changed
during this, but none of these should be very visible outside of
cross-compilation. The changes make our targets more consistent.

iX86-unknown-linux-gnu is now only available as i686-unknown-linux-gnu. We
used to accept any value of X greater than 1. i686 was released in 1995, and
should encompass the bare minimum of what Rust supports on x86 CPUs.

The only two windows targets are now i686-pc-windows-gnu and
x86_64-pc-windows-gnu.

The iOS target has been renamed from arm-apple-ios to arm-apple-darwin.

A complete list of the targets we accept now:

arm-apple-darwin
arm-linux-androideabi
arm-unknown-linux-gnueabi
arm-unknown-linux-gnueabihf

i686-apple-darwin
i686-pc-windows-gnu
i686-unknown-freebsd
i686-unknown-linux-gnu

mips-unknown-linux-gnu
mipsel-unknown-linux-gnu

x86_64-apple-darwin
x86_64-unknown-freebsd
x86_64-unknown-linux-gnu
x86_64-pc-windows-gnu

Closes #16093

[breaking-change]
2014-11-04 05:07:47 -05:00
..
_match.rs collections: Enable IndexMut for some collections 2014-10-30 08:54:30 -07:00
adt.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
asm.rs
base.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
basic_block.rs
build.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
builder.rs
cabi_arm.rs rollup merge of #18398 : aturon/lint-conventions-2 2014-10-30 17:37:22 -07:00
cabi_mips.rs rollup merge of #18398 : aturon/lint-conventions-2 2014-10-30 17:37:22 -07:00
cabi_x86_64.rs rollup merge of #18398 : aturon/lint-conventions-2 2014-10-30 17:37:22 -07:00
cabi_x86_win64.rs
cabi_x86.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
cabi.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
callee.rs Remove FnStyle from DefFn and DefStaticMethod 2014-11-01 11:05:12 +13:00
cleanup.rs collections: Enable IndexMut for some collections 2014-10-30 08:54:30 -07:00
closure.rs librustc: Check if return type is void not zero-sized for fn->closure wrapper. 2014-11-02 14:43:52 -05:00
common.rs Monomorphize method types in Typer impl for BlockS 2014-11-01 15:24:34 -07:00
consts.rs Remove FnStyle from DefFn and DefStaticMethod 2014-11-01 11:05:12 +13:00
context.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
controlflow.rs Update infrastructure for fail -> panic 2014-10-29 16:06:13 -04:00
datum.rs
debuginfo.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
doc.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
expr.rs rollup merge of #18505 : bkoropoff/issue-18487 2014-11-03 08:31:45 -08:00
foreign.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
glue.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
inline.rs rustc: Add const globals to the language 2014-10-09 09:44:50 -07:00
intrinsic.rs rollup merge of #18398 : aturon/lint-conventions-2 2014-10-30 17:37:22 -07:00
llrepr.rs
machine.rs
macros.rs
meth.rs Use a struct rather than a 4-tuple 2014-11-03 17:41:01 -05:00
mod.rs
monomorphize.rs
tvec.rs Fix ICE translating array repeat expr of non-Copy type 2014-10-29 21:45:35 -07:00
type_.rs Implement flexible target specification 2014-11-04 05:07:47 -05:00
type_of.rs Rename fail! to panic! 2014-10-29 11:43:07 -04:00
value.rs