Skip to content

Commit 24dc3ce

Browse files
author
Jorge Aparicio
committed
rustc_back/target: remove musl_base
it's the same as linux_musl_base
1 parent e8917ae commit 24dc3ce

File tree

5 files changed

+3
-76
lines changed

5 files changed

+3
-76
lines changed

src/librustc_back/target/arm_unknown_linux_musleabi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use target::Target;
1212

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

1616
// Most of these settings are copied from the arm_unknown_linux_gnueabi
1717
// target.

src/librustc_back/target/arm_unknown_linux_musleabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use target::Target;
1212

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

1616
// Most of these settings are copied from the arm_unknown_linux_gnueabihf
1717
// target.

src/librustc_back/target/armv7_unknown_linux_musleabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use target::Target;
1212

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

1616
// Most of these settings are copied from the armv7_unknown_linux_gnueabihf
1717
// target.

src/librustc_back/target/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ mod freebsd_base;
5858
mod linux_base;
5959
mod linux_musl_base;
6060
mod openbsd_base;
61-
mod musl_base;
6261
mod netbsd_base;
6362
mod solaris_base;
6463
mod windows_base;

src/librustc_back/target/musl_base.rs

-72
This file was deleted.

0 commit comments

Comments
 (0)