Skip to content

Commit eb61738

Browse files
author
Jorge Aparicio
committed
return TargetResult
1 parent 87fa075 commit eb61738

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/librustc_back/target/arm_unknown_linux_musleabi.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use target::Target;
11+
use target::{Target, TargetResult};
1212

13-
pub fn target() -> Target {
13+
pub fn target() -> TargetResult {
1414
let mut base = super::linux_musl_base::opts();
1515

1616
// Most of these settings are copied from the arm_unknown_linux_gnueabi
1717
// target.
1818
base.features = "+v6".to_string();
1919
base.max_atomic_width = 64;
20-
Target {
20+
Ok(Target {
2121
// It's important we use "gnueabi" and not "musleabi" here. LLVM uses it
2222
// to determine the calling convention and float ABI, and it doesn't
2323
// support the "musleabi" value.
@@ -30,5 +30,5 @@ pub fn target() -> Target {
3030
target_env: "musl".to_string(),
3131
target_vendor: "unknown".to_string(),
3232
options: base,
33-
}
33+
})
3434
}

src/librustc_back/target/arm_unknown_linux_musleabihf.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use target::Target;
11+
use target::{Target, TargetResult};
1212

13-
pub fn target() -> Target {
13+
pub fn target() -> TargetResult {
1414
let mut base = super::linux_musl_base::opts();
1515

1616
// Most of these settings are copied from the arm_unknown_linux_gnueabihf
1717
// target.
1818
base.features = "+v6,+vfp2".to_string();
1919
base.max_atomic_width = 64;
20-
Target {
20+
Ok(Target {
2121
// It's important we use "gnueabihf" and not "musleabihf" here. LLVM
2222
// uses it to determine the calling convention and float ABI, and it
2323
// doesn't support the "musleabihf" value.
@@ -30,5 +30,5 @@ pub fn target() -> Target {
3030
target_env: "musl".to_string(),
3131
target_vendor: "unknown".to_string(),
3232
options: base,
33-
}
33+
})
3434
}

src/librustc_back/target/armv7_unknown_linux_musleabihf.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use target::Target;
11+
use target::{Target, TargetResult};
1212

13-
pub fn target() -> Target {
13+
pub fn target() -> TargetResult {
1414
let mut base = super::linux_musl_base::opts();
1515

1616
// Most of these settings are copied from the armv7_unknown_linux_gnueabihf
1717
// target.
1818
base.features = "+v7,+vfp3,+neon".to_string();
1919
base.cpu = "cortex-a8".to_string();
2020
base.max_atomic_width = 64;
21-
Target {
21+
Ok(Target {
2222
// It's important we use "gnueabihf" and not "musleabihf" here. LLVM
2323
// uses it to determine the calling convention and float ABI, and LLVM
2424
// doesn't support the "musleabihf" value.
@@ -31,5 +31,5 @@ pub fn target() -> Target {
3131
target_env: "musl".to_string(),
3232
target_vendor: "unknown".to_string(),
3333
options: base,
34-
}
34+
})
3535
}

0 commit comments

Comments
 (0)