auto merge of #14963 : w3ln4/rust/master, r=alexcrichton

The aim of these changes is not working out a generic bi-endianness architectures support but to allow people develop for little endian MIPS machines (issue #7190).
This commit is contained in:
bors 2014-06-24 13:46:54 +00:00
commit 82ec1aef29
21 changed files with 331 additions and 16 deletions

View file

@ -1746,6 +1746,10 @@ mod arch_consts {
pub static ARCH: &'static str = "mips";
}
#[cfg(target_arch = "mipsel")]
mod arch_consts {
pub static ARCH: &'static str = "mipsel";
}
#[cfg(test)]
mod tests {