mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 09:02:44 +00:00
Merge from projects/mips to head by hand:
loader script for octeon1 in n32 abi mode.
This commit is contained in:
commit
5888aefdcc
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201975
57
sys/conf/ldscript.mips.octeon1.n32
Normal file
57
sys/conf/ldscript.mips.octeon1.n32
Normal file
@ -0,0 +1,57 @@
|
||||
TARGET(elf32-ntradbigmips)
|
||||
OUTPUT_FORMAT("elf32-ntradbigmips", "elf32-ntradbigmips", "elf32-ntradlittlemips")
|
||||
OUTPUT_ARCH(mips)
|
||||
ENTRY(_start)
|
||||
__DYNAMIC = 0;
|
||||
PROVIDE (_DYNAMIC = 0);
|
||||
|
||||
SECTIONS {
|
||||
|
||||
.text . : {
|
||||
*(.text)
|
||||
*(.dynamic)
|
||||
etext = .;
|
||||
_etext = .;
|
||||
. = ALIGN(0x2000);
|
||||
}
|
||||
|
||||
.rodata ALIGN(0x2000) : {
|
||||
_fdata = .;
|
||||
*(.rodata)
|
||||
. = ALIGN(32);
|
||||
}
|
||||
|
||||
.data . : {
|
||||
_rwdata = .;
|
||||
*(.data)
|
||||
. = ALIGN(32);
|
||||
CONSTRUCTORS;
|
||||
}
|
||||
|
||||
_gp = (. + 0x8000);
|
||||
|
||||
.sdata . : {
|
||||
_small_start = .;
|
||||
*(.sdata)
|
||||
. = ALIGN(32);
|
||||
edata = .;
|
||||
_edata = .;
|
||||
}
|
||||
|
||||
.sbss . : {
|
||||
__bss_start = .;
|
||||
_fbss = .;
|
||||
*(.sbss) *(.scommon)
|
||||
_small_end = .;
|
||||
. = ALIGN(32);
|
||||
}
|
||||
|
||||
.bss . : {
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
. = ALIGN(32);
|
||||
_end = .;
|
||||
end = .;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user