13 lines
189 B
Batchfile
Executable File
13 lines
189 B
Batchfile
Executable File
PHDRS {
|
|
text PT_LOAD;
|
|
data PT_LOAD;
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text) *(.barrier) *(.dtors) *(.ctors) *(.data) *(.bss)} :text
|
|
; .data : { } :data
|
|
; .bss : { }
|
|
}
|
|
|