We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9334175 commit 9fd941eCopy full SHA for 9fd941e
src/librustc_back/target/l4re_base.rs
@@ -34,7 +34,7 @@ pub fn opts() -> TargetOptions {
34
has_elf_tls: false,
35
exe_allocation_crate: None,
36
panic_strategy: PanicStrategy::Abort,
37
- linker: "ld".to_string(),
+ linker: Some("ld".to_string()),
38
pre_link_args: args,
39
target_family: Some("unix".to_string()),
40
.. Default::default()
src/libtest/lib.rs
@@ -1294,6 +1294,12 @@ fn get_concurrency() -> usize {
1294
// FIXME: implement
1295
1
1296
}
1297
+
1298
+ #[cfg(target_os = "l4re")]
1299
+ fn num_cpus() -> usize {
1300
+ // FIXME: implement
1301
+ 1
1302
+ }
1303
1304
1305
pub fn filter_tests(opts: &TestOpts, tests: Vec<TestDescAndFn>) -> Vec<TestDescAndFn> {
0 commit comments