diff options
| author | Pawel Olzacki <p.olzacki2@samsung.com> | 2014-06-17 09:16:03 +0200 |
|---|---|---|
| committer | Pawel Olzacki <p.olzacki2@samsung.com> | 2014-06-24 11:12:10 +0200 |
| commit | 34a384a128d9630679f9c90bb27eaa0822e5b798 (patch) | |
| tree | dbb53a9b17693edf5a735020d48af6aeaa277722 /src/libstd | |
| parent | 7ec78053ec5fcabd5f8ca98627dd45bfa5fc4cd4 (diff) | |
| download | rust-34a384a128d9630679f9c90bb27eaa0822e5b798.tar.gz rust-34a384a128d9630679f9c90bb27eaa0822e5b798.zip | |
Added Mipsel architecture support
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/os.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs index f6b1c04dd34..25b7befd74e 100644 --- a/src/libstd/os.rs +++ b/src/libstd/os.rs @@ -1726,6 +1726,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 { |
