84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
64 lines
1.2 KiB
Text
64 lines
1.2 KiB
Text
/* $NetBSD: stand.ldscript,v 1.1 2013/11/01 00:19:04 christos Exp $ */
|
|
|
|
OUTPUT_FORMAT("elf32-i386-minix", "elf32-i386-minix",
|
|
"elf32-i386-minix")
|
|
OUTPUT_ARCH(i386)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
.text :
|
|
AT (ADDR(.text) & 0x0fffffff)
|
|
{
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.stub)
|
|
} =0
|
|
_etext = . ;
|
|
PROVIDE (etext = .) ;
|
|
|
|
.rodata :
|
|
AT (LOADADDR(.text) + (ADDR(.rodata) - ADDR(.text)))
|
|
{
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
}
|
|
|
|
__data_start = . ;
|
|
.data :
|
|
AT (LOADADDR(.text) + (ADDR(.data) - ADDR(.text)))
|
|
{
|
|
*(.data)
|
|
}
|
|
.data.cacheline_aligned :
|
|
AT (LOADADDR(.text) + (ADDR(.data.cacheline_aligned) - ADDR(.text)))
|
|
{
|
|
*(.data.cacheline_aligned)
|
|
}
|
|
.data.read_mostly :
|
|
AT (LOADADDR(.text) + (ADDR(.data.read_mostly) - ADDR(.text)))
|
|
{
|
|
*(.data.read_mostly)
|
|
}
|
|
_edata = . ;
|
|
PROVIDE (edata = .) ;
|
|
__bss_start = . ;
|
|
.bss :
|
|
AT (LOADADDR(.text) + (ADDR(.bss) - ADDR(.text)))
|
|
{
|
|
*(.bss)
|
|
*(.bss.*)
|
|
*(COMMON)
|
|
. = ALIGN(32 / 8);
|
|
}
|
|
. = ALIGN(32 / 8);
|
|
_end = . ;
|
|
PROVIDE (end = .) ;
|
|
/DISCARD/ : {
|
|
*(.eh_frame_hdr)
|
|
*(.eh_frame)
|
|
*(.rel.eh_frame)
|
|
*(.rela.eh_frame)
|
|
*(.note.netbsd.ident)
|
|
}
|
|
}
|