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 9e7d5a0 + c5f355d commit 93bc768Copy full SHA for 93bc768
riscv-rt/CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
8
## [Unreleased]
9
10
+### Changed
11
+
12
+- Remove superfluous parentheses from link.x, which caused linker errors with nightly.
13
14
## [v0.9.0] - 2022-07-01
15
16
### Added
riscv-rt/link.x
@@ -55,8 +55,8 @@ SECTIONS
55
KEEP(*(.init));
56
KEEP(*(.init.rust));
57
. = ALIGN(4);
58
- (*(.trap));
59
- (*(.trap.rust));
+ *(.trap);
+ *(.trap.rust);
60
61
*(.text .text.*);
62
} > REGION_TEXT
0 commit comments