Skip to content

Commit

Permalink
rustc_back/target: remove musl_base
Browse files Browse the repository at this point in the history
it's the same as linux_musl_base
  • Loading branch information
Jorge Aparicio committed Jul 30, 2016
1 parent f0ec906 commit b389537
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 76 deletions.
2 changes: 1 addition & 1 deletion src/librustc_back/target/arm_unknown_linux_musleabi.rs
Expand Up @@ -11,7 +11,7 @@
use target::Target;

pub fn target() -> Target {
let mut base = super::musl_base::opts();
let mut base = super::linux_musl_base::opts();

// Most of these settings are copied from the arm_unknown_linux_gnueabi
// target.
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/arm_unknown_linux_musleabihf.rs
Expand Up @@ -11,7 +11,7 @@
use target::Target;

pub fn target() -> Target {
let mut base = super::musl_base::opts();
let mut base = super::linux_musl_base::opts();

// Most of these settings are copied from the arm_unknown_linux_gnueabihf
// target.
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_back/target/armv7_unknown_linux_musleabihf.rs
Expand Up @@ -11,7 +11,7 @@
use target::Target;

pub fn target() -> Target {
let mut base = super::musl_base::opts();
let mut base = super::linux_musl_base::opts();

// Most of these settings are copied from the armv7_unknown_linux_gnueabihf
// target.
Expand Down
1 change: 0 additions & 1 deletion src/librustc_back/target/mod.rs
Expand Up @@ -59,7 +59,6 @@ mod freebsd_base;
mod linux_base;
mod linux_musl_base;
mod openbsd_base;
mod musl_base;
mod netbsd_base;
mod solaris_base;
mod windows_base;
Expand Down
72 changes: 0 additions & 72 deletions src/librustc_back/target/musl_base.rs

This file was deleted.

0 comments on commit b389537

Please sign in to comment.