We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 698a318 + d9ec9a3 commit 6b2dd03Copy full SHA for 6b2dd03
CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
10
- Fix new `mismatched-lifetime-syntaxes` lint warnings
11
- Adapt RISC-V specific codegen for `riscv-peripheral` v0.3.0 rework
12
- Include `riscv-peripheral` peripherals in `Peripherals` struct
13
+- Ensure `__INTERRUPTS` are `#[no_mangle]` on Xtensa.
14
15
## [v0.36.1] - 2025-04-04
16
src/generate/interrupt.rs
@@ -245,8 +245,9 @@ pub fn render(
245
}
246
247
#[cfg(feature = "rt")]
248
- #link_section_attr
249
#[doc(hidden)]
+ #link_section_attr
250
+ #[no_mangle]
251
pub static __INTERRUPTS: [Vector; #n] = [
252
#elements
253
];
0 commit comments