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 4060cc7 + 55dedd8 commit c43c67dCopy full SHA for c43c67d
link.x
@@ -1,7 +1,16 @@
1
SECTIONS {
2
. = 0x0;
3
4
- .text : {
+ /*
5
+ * The PrgCode output section name comes from the CMSIS-Pack flash algo
6
+ * templates and armlink. It is used here because several tools that work
7
+ * with these flash algos expect this section name.
8
+ *
9
+ * All input sections are combined into PrgCode because RWPI using R9 is not
10
+ * currently stable in Rust, thus having separate PrgData sections that the
11
+ * debug host might locate at a different offset from PrgCode is not safe.
12
+ */
13
+ PrgCode : {
14
KEEP(*(.entry))
15
KEEP(*(.entry.*))
16
0 commit comments