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.
1 parent db65c40 commit a9a3fa4Copy full SHA for a9a3fa4
riscv-rt/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
### Changed
11
12
- Preserve `.eh_frame` and `.eh_frame_hdr` sections
13
+- Place `.srodata` and `.srodata.*` sections in `.rodata`
14
15
## [v0.7.1] - 2020-06-02
16
riscv-rt/link.x
@@ -57,6 +57,7 @@ SECTIONS
57
58
.rodata : ALIGN(4)
59
{
60
+ *(.srodata .srodata.*);
61
*(.rodata .rodata.*);
62
63
/* 4-byte align the end (VMA) of this section.
0 commit comments