Set crt_static_default = false for musl/mips[el] targets

This commit is contained in:
Marco A L Barbosa 2018-01-23 13:34:25 -02:00
parent 68db72d8cd
commit 61fdf8eef5
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ pub fn target() -> TargetResult {
base.max_atomic_width = Some(32);
// see #36994
base.exe_allocation_crate = None;
base.crt_static_default = false;
Ok(Target {
llvm_target: "mips-unknown-linux-musl".to_string(),
target_endian: "big".to_string(),

View File

@ -18,6 +18,7 @@ pub fn target() -> TargetResult {
base.max_atomic_width = Some(32);
// see #36994
base.exe_allocation_crate = None;
base.crt_static_default = false;
Ok(Target {
llvm_target: "mipsel-unknown-linux-musl".to_string(),
target_endian: "little".to_string(),