aboutsummaryrefslogtreecommitdiff
path: root/apps/link.ld
diff options
context:
space:
mode:
Diffstat (limited to 'apps/link.ld')
-rw-r--r--apps/link.ld15
1 files changed, 6 insertions, 9 deletions
diff --git a/apps/link.ld b/apps/link.ld
index 2b9599a..781e38d 100644
--- a/apps/link.ld
+++ b/apps/link.ld
@@ -8,27 +8,24 @@ SECTIONS
. = 0x00000000;
.text : {
+ code = .;
*(.text)
- }
-
- .rodata : {
*(.rodata)
+ . = ALIGN(4096);
}
- . = ALIGN(4096);
-
.data : {
+ data = .;
*(.data)
+ . = ALIGN(4096);
}
- . = ALIGN(4096);
-
.bss : {
+ bss = .;
*(.bss)
+ . = ALIGN(4096);
}
- . = ALIGN(4096);
-
_GLOBAL_OFFSET_TABLE_ = .;
. = ALIGN(4096);