mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 12:20:56 +00:00
24 lines
767 B
Rust
24 lines
767 B
Rust
fn main() -> Result<(), String> {
|
|
// Ensure that only a single chip is specified
|
|
esp_build::assert_unique_used_features!(
|
|
"esp32", "esp32c2", "esp32c3", "esp32c6", "esp32h2", "esp32s2", "esp32s3"
|
|
);
|
|
|
|
if cfg!(feature = "esp32") {
|
|
match std::env::var("OPT_LEVEL") {
|
|
Ok(level) if std::env::var("CI").is_err() => {
|
|
if level != "2" && level != "3" {
|
|
Err(format!(
|
|
"Building esp-storage for ESP32 needs optimization level 2 or 3 - yours is {level}. See https://github.com/esp-rs/esp-storage"
|
|
))
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|
|
_ => Ok(()),
|
|
}
|
|
} else {
|
|
Ok(())
|
|
}
|
|
}
|