Initial import of ViperOS
This commit is contained in:
34
Libs/SerialLogger/linker.ld
Normal file
34
Libs/SerialLogger/linker.ld
Normal file
@@ -0,0 +1,34 @@
|
||||
SECTIONS {
|
||||
. = 0;
|
||||
|
||||
.text : {
|
||||
*(.text)
|
||||
*(.text.*)
|
||||
}
|
||||
|
||||
.rodata : {
|
||||
*(.rodata)
|
||||
*(.rodata.*)
|
||||
}
|
||||
|
||||
.data : {
|
||||
*(.data)
|
||||
*(.data.*)
|
||||
}
|
||||
|
||||
.bss : {
|
||||
PROVIDE(__bss_start = .);
|
||||
*(.bss)
|
||||
*(.bss.*)
|
||||
PROVIDE(__bss_end = .);
|
||||
}
|
||||
|
||||
/DISCARD/ : {
|
||||
*(.comment)
|
||||
*(.note)
|
||||
*(.eh_frame)
|
||||
*(.eh_frame_hdr)
|
||||
*(.reloc)
|
||||
*(.debug*)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user