1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Push mips support for ld into the tree.

This commit is contained in:
Warner Losh 2008-12-11 08:18:45 +00:00
parent 7932522f76
commit d7aeea2745
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=185923
5 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# $FreeBSD$
#xxxIMPxxx: size?
#xxxIMPxxx: TARGET_BIG_ENDIAN is lame. We should use the netbsd convention
# of mipsel and mips.
_sz?=32
.if defined(TARGET_BIG_ENDIAN)
NATIVE_EMULATION=elf${_sz}btsmip_fbsd
.else
NATIVE_EMULATION=elf${_sz}ltsmip_fbsd
.endif
SRCS+= e${NATIVE_EMULATION}.c
CLEANFILES+= e${NATIVE_EMULATION}.c
# nb: elf32 handles both elf32 and elf64 targets
e${NATIVE_EMULATION}.c: ${.CURDIR}/${NATIVE_EMULATION}.sh emultempl/elf32.em \
scripttempl/elf.sc genscripts.sh stringify.sed
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
${TOOLS_PREFIX}/usr \
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
${NATIVE_EMULATION} "" no ${NATIVE_EMULATION} ${TARGET_TUPLE} \
${.CURDIR}/${NATIVE_EMULATION}.sh

View File

@ -0,0 +1,4 @@
# $FreeBSD$
. ${srcdir}/emulparams/elf32btsmip.sh
. ${srcdir}/emulparams/elf_fbsd.sh
GENERATE_PIE_SCRIPT=yes

View File

@ -0,0 +1,4 @@
# $FreeBSD$
. ${srcdir}/emulparams/elf32ltsmip.sh
. ${srcdir}/emulparams/elf_fbsd.sh
GENERATE_PIE_SCRIPT=yes

View File

@ -0,0 +1,4 @@
# $FreeBSD$
. ${srcdir}/emulparams/elf64btsmip.sh
. ${srcdir}/emulparams/elf_fbsd.sh
GENERATE_PIE_SCRIPT=yes

View File

@ -0,0 +1,4 @@
# $FreeBSD$
. ${srcdir}/emulparams/elf64ltsmip.sh
. ${srcdir}/emulparams/elf_fbsd.sh
GENERATE_PIE_SCRIPT=yes