We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03b7cc commit 2e36b4aCopy full SHA for 2e36b4a
1 file changed
linker_scripts/riscv64/link.lds
@@ -23,7 +23,7 @@ SECTIONS
23
{
24
__text_start__ = .;
25
*(.start);
26
- *(.text) /* remaining code */
+ *(.text*) /* remaining code */
27
28
KEEP(*(.init))
29
KEEP(*(.fini))
@@ -42,7 +42,7 @@ SECTIONS
42
*(SORT(.dtors.*))
43
*(.dtors)
44
45
- *(.rodata) /* read-only data (constants) */
+ *(.rodata*) /* read-only data (constants) */
46
47
KEEP(*(.eh_frame*))
48
0 commit comments