mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
Configure CI for new backends
This commit is contained in:
parent
6b021de4a0
commit
4542367fc9
3 changed files with 8 additions and 23 deletions
|
|
@ -252,12 +252,7 @@ impl Platforms {
|
|||
let c = "-C".to_string();
|
||||
match self {
|
||||
Platforms::Esp32C3 => vec![c, "link-arg=-Tlinkall.x".to_string()],
|
||||
Platforms::Hifive1 => vec![
|
||||
c.clone(),
|
||||
"link-arg=-Thifive1-link.x".to_string(),
|
||||
c,
|
||||
"portable_atomic_target_feature=\"zaamo\"".to_string(),
|
||||
],
|
||||
Platforms::Hifive1 => vec![c, "link-arg=-Thifive1-link.x".to_string()],
|
||||
Platforms::Lm3s6965 => vec![c, "link-arg=-Tlink.x".to_string()],
|
||||
Platforms::Nrf52840 => vec![
|
||||
c.clone(),
|
||||
|
|
@ -315,7 +310,7 @@ impl Platforms {
|
|||
_ => Err(()),
|
||||
},
|
||||
Platforms::Hifive1 => match backend.to_target() {
|
||||
RISCV32IMC | RISCV32IMAC => Ok(None),
|
||||
RISCV32IMC => Ok(None),
|
||||
_ => Err(()),
|
||||
},
|
||||
Platforms::Lm3s6965 => match backend.to_target() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue