diff options
| author | Brian Anderson <banderson@mozilla.com> | 2015-12-29 22:33:58 +0000 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2016-02-06 20:56:31 +0000 |
| commit | bd3fe498e5d1587e8081607731113593cee1c0dc (patch) | |
| tree | 0cd74833355be8385ac8a5af8d962ea03797e115 /src/librustc_back/target | |
| parent | 81ba4a78b506c71daa66b2be9c12c10aa97830ce (diff) | |
| download | rust-bd3fe498e5d1587e8081607731113593cee1c0dc.tar.gz rust-bd3fe498e5d1587e8081607731113593cee1c0dc.zip | |
Add support for i686-unknown-linux-musl
Diffstat (limited to 'src/librustc_back/target')
| -rw-r--r-- | src/librustc_back/target/i686_unknown_linux_musl.rs | 46 | ||||
| -rw-r--r-- | src/librustc_back/target/mod.rs | 1 |
2 files changed, 47 insertions, 0 deletions
diff --git a/src/librustc_back/target/i686_unknown_linux_musl.rs b/src/librustc_back/target/i686_unknown_linux_musl.rs new file mode 100644 index 00000000000..77bc7bb5175 --- /dev/null +++ b/src/librustc_back/target/i686_unknown_linux_musl.rs @@ -0,0 +1,46 @@ +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// See x86_64_unknown_linux_musl for explanation of arguments + +use target::Target; + +pub fn target() -> Target { + let mut base = super::linux_base::opts(); + base.cpu = "pentium4".to_string(); + base.pre_link_args.push("-m32".to_string()); + base.pre_link_args.push("-Wl,-melf_i386".to_string()); + + base.pre_link_args.push("-nostdlib".to_string()); + base.pre_link_args.push("-static".to_string()); + base.pre_link_args.push("-Wl,--eh-frame-hdr".to_string()); + + base.pre_link_args.push("-Wl,-(".to_string()); + base.post_link_args.push("-Wl,-)".to_string()); + + base.pre_link_objects_exe.push("crt1.o".to_string()); + base.pre_link_objects_exe.push("crti.o".to_string()); + base.post_link_objects.push("crtn.o".to_string()); + + base.dynamic_linking = false; + base.has_rpath = false; + base.position_independent_executables = false; + + Target { + llvm_target: "i686-unknown-linux-musl".to_string(), + target_endian: "little".to_string(), + target_pointer_width: "32".to_string(), + arch: "x86".to_string(), + target_os: "linux".to_string(), + target_env: "musl".to_string(), + target_vendor: "unknown".to_string(), + options: base, + } +} diff --git a/src/librustc_back/target/mod.rs b/src/librustc_back/target/mod.rs index de38b473b0b..c61ae547a22 100644 --- a/src/librustc_back/target/mod.rs +++ b/src/librustc_back/target/mod.rs @@ -431,6 +431,7 @@ impl Target { armv7_unknown_linux_gnueabihf, aarch64_unknown_linux_gnu, x86_64_unknown_linux_musl, + i686_unknown_linux_musl, mips_unknown_linux_musl, mipsel_unknown_linux_musl, |
