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 eb9cbde commit b833c7aCopy full SHA for b833c7a
sw/cheri/link.ld
@@ -5,16 +5,16 @@
5
*/
6
SECTIONS
7
{
8
- . = 0x00100000;
9
- _start = .;
+ . = 0x00100000;
+ _start = .;
10
11
- .rom_loader :
12
- {
13
- *(.text.start);
14
- *(.vectors);
15
- *(.text .text.* .rodata .rodata.* .data.rel.ro);
16
- . = ALIGN(4);
17
- }
+ .rom_loader :
+ {
+ *(.text.start);
+ *(.vectors);
+ *(.text .text.* .rodata .rodata.* .data.rel.ro);
+ . = ALIGN(4);
+ }
18
19
.data :
20
sw/legacy/link.ld
@@ -47,10 +47,9 @@ SECTIONS
47
.text : {
48
. = ALIGN(4);
49
50
- _vectors_start = .;
+ _vectors_start = .;
51
KEEP(*(.vectors))
52
- _vectors_end = .;
53
-
+ _vectors_end = .;
54
/* Rust dependency */
55
KEEP(*(.init));
56
KEEP(*(.init.rust));
0 commit comments