mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-12-30 05:10:57 +00:00
- Feature name `arch-cortex-ar` remains the same. - Legacy ARM architectures are not supported.
13 lines
379 B
Rust
13 lines
379 B
Rust
#[path = "./build_common.rs"]
|
|
mod common;
|
|
|
|
fn main() {
|
|
let mut rustc_cfgs = common::CfgSet::new();
|
|
common::set_target_cfgs(&mut rustc_cfgs);
|
|
|
|
// This is used to exclude legacy architecture support. The raw executor needs to be used for
|
|
// those architectures because SEV/WFE are not supported.
|
|
#[cfg(feature = "arch-cortex-ar")]
|
|
arm_targets::process();
|
|
}
|