2017-06-19 14:57:01 +03:00
|
|
|
# $NetBSD: Makefile,v 1.137 2017/06/19 11:57:01 joerg Exp $
|
2009-05-20 23:38:38 +04:00
|
|
|
#
|
|
|
|
# NOTE: when changing ld.so, ensure that ldd still compiles.
|
|
|
|
#
|
2009-03-16 05:24:55 +03:00
|
|
|
|
2009-05-20 00:44:52 +04:00
|
|
|
WARNS?=4
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2013-05-03 19:52:31 +04:00
|
|
|
LDELFSO_MACHINE_ARCH?= ${MACHINE_ARCH}
|
|
|
|
|
2009-12-13 12:01:45 +03:00
|
|
|
# This needs to be before bsd.init.mk
|
|
|
|
.if defined(BSD_MK_COMPAT_FILE)
|
|
|
|
.include <${BSD_MK_COMPAT_FILE}>
|
|
|
|
.endif
|
|
|
|
|
2008-10-16 18:36:20 +04:00
|
|
|
# We are not building this with PIE
|
|
|
|
PIE_CFLAGS=
|
|
|
|
PIE_LDFLAGS=
|
remove almost all the ability to build netbsd with an a.out target.
we're ELF now, and there are many missing checks against OBJECT_FMT.
if we ever consider switching, the we can figure out what new ones
we need but for now it's just clutter.
this doesn't remove any of the support for exec_aout or any actually
required-for-boot a.out support, only the ability to build a netbsd
release in a.out format. ie, most of this code has been dead for
over a decade.
i've tested builds on vax, amd64, i386, mac68k, macppc, sparc, atari,
amiga, shark, cats, dreamcast, landisk, mmeye and x68k. this covers
the 5 MACHINE_ARCH's affected, and all the other arch code touched.
it also includes some actual run-time testing of sparc, i386 and
shark, and i performed binary comparison upon amiga and x68k as well.
some minor details relevant:
- move shlib.[ch] from ld.aout_so into ldconfig proper, and cut them
down to only the parts ldconfig needs
- remove various unused source files
- switch amiga bootblocks to using elf2bb.h instead of aout2bb.h
2010-07-06 09:59:50 +04:00
|
|
|
.include <bsd.init.mk> # for MKPIC definition
|
2012-08-24 01:21:14 +04:00
|
|
|
.include <bsd.shlib.mk> # for SHLINKINSTALLDIR definition
|
1998-02-23 13:09:31 +03:00
|
|
|
|
2008-10-26 10:11:54 +03:00
|
|
|
.if defined(LDELFSO_MACHINE_CPU) && !empty(LDELFSO_MACHINE_CPU) && \
|
|
|
|
exists(${.CURDIR}/arch/${LDELFSO_MACHINE_CPU})
|
|
|
|
ARCHSUBDIR= ${LDELFSO_MACHINE_CPU}
|
|
|
|
.else
|
2004-02-24 00:27:20 +03:00
|
|
|
ARCHSUBDIR= ${MACHINE_CPU}
|
2008-10-26 10:11:54 +03:00
|
|
|
.endif
|
2004-02-24 00:27:20 +03:00
|
|
|
M= ${.CURDIR}/arch/${ARCHSUBDIR}
|
1999-03-03 15:00:18 +03:00
|
|
|
|
2014-08-10 09:56:36 +04:00
|
|
|
.if ((${MACHINE_CPU} == "aarch64") || \
|
|
|
|
(${LDELFSO_MACHINE_ARCH} == "alpha") || \
|
2006-08-27 11:22:02 +04:00
|
|
|
(${MACHINE_CPU} == "arm") || \
|
2013-07-19 01:58:13 +04:00
|
|
|
(${LDELFSO_MACHINE_ARCH} == "coldfire") || \
|
2013-05-03 19:52:31 +04:00
|
|
|
(${LDELFSO_MACHINE_ARCH} == "hppa") || \
|
|
|
|
(${LDELFSO_MACHINE_ARCH} == "i386") || \
|
|
|
|
(${LDELFSO_MACHINE_ARCH} == "m68k") || \
|
2006-08-27 11:22:02 +04:00
|
|
|
(${MACHINE_CPU} == "mips") || \
|
2014-09-03 23:31:32 +04:00
|
|
|
(${MACHINE_CPU} == "or1k") || \
|
2014-03-06 13:34:56 +04:00
|
|
|
(${MACHINE_CPU} == "powerpc") || \
|
2014-09-19 21:43:33 +04:00
|
|
|
(${MACHINE_CPU} == "riscv") || \
|
2006-08-27 11:22:02 +04:00
|
|
|
(${MACHINE_CPU} == "sh3") || \
|
2013-05-03 19:52:31 +04:00
|
|
|
(${LDELFSO_MACHINE_ARCH} == "sparc") || \
|
|
|
|
(${LDELFSO_MACHINE_ARCH} == "sparc64") || \
|
|
|
|
(${LDELFSO_MACHINE_ARCH} == "x86_64") || \
|
|
|
|
(${LDELFSO_MACHINE_ARCH} == "vax")) && \
|
remove almost all the ability to build netbsd with an a.out target.
we're ELF now, and there are many missing checks against OBJECT_FMT.
if we ever consider switching, the we can figure out what new ones
we need but for now it's just clutter.
this doesn't remove any of the support for exec_aout or any actually
required-for-boot a.out support, only the ability to build a netbsd
release in a.out format. ie, most of this code has been dead for
over a decade.
i've tested builds on vax, amd64, i386, mac68k, macppc, sparc, atari,
amiga, shark, cats, dreamcast, landisk, mmeye and x68k. this covers
the 5 MACHINE_ARCH's affected, and all the other arch code touched.
it also includes some actual run-time testing of sparc, i386 and
shark, and i performed binary comparison upon amiga and x68k as well.
some minor details relevant:
- move shlib.[ch] from ld.aout_so into ldconfig proper, and cut them
down to only the parts ldconfig needs
- remove various unused source files
- switch amiga bootblocks to using elf2bb.h instead of aout2bb.h
2010-07-06 09:59:50 +04:00
|
|
|
${MKPIC} != "no"
|
1999-05-08 02:04:27 +04:00
|
|
|
|
2011-05-30 20:30:01 +04:00
|
|
|
LDFLAGS+= ${${ACTIVE_CC} == "clang":? -Wl,-Bsymbolic : -symbolic} \
|
|
|
|
-shared -nostartfiles -nodefaultlibs
|
2006-06-29 23:30:59 +04:00
|
|
|
LDFLAGS+= -Wl,-static
|
2011-01-16 05:36:05 +03:00
|
|
|
LDFLAGS+= -Wl,--warn-shared-textrel
|
2014-03-06 13:34:56 +04:00
|
|
|
LDFLAGS+= -Wl,-Map=${.TARGET}.map
|
2011-01-16 05:36:05 +03:00
|
|
|
|
2012-08-04 19:17:16 +04:00
|
|
|
COPTS+= -fvisibility=hidden
|
2004-02-22 04:39:43 +03:00
|
|
|
|
1997-10-22 09:45:08 +04:00
|
|
|
# Adds SRCS, CPPFLAGS, LDFLAGS, etc. Must go first so MD startup source
|
1996-12-16 23:37:55 +03:00
|
|
|
# is first.
|
1999-03-03 15:00:18 +03:00
|
|
|
.if exists($M/Makefile.inc)
|
|
|
|
.include "$M/Makefile.inc"
|
1997-04-10 21:39:20 +04:00
|
|
|
.endif
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2009-12-13 12:31:47 +03:00
|
|
|
# Support compat ld.elf_so.
|
2009-12-13 11:25:20 +03:00
|
|
|
.if defined(MLIBDIR)
|
2009-12-13 12:31:47 +03:00
|
|
|
PROG= ld.elf_so-${MLIBDIR}
|
|
|
|
CPPFLAGS+= -DRTLD_ARCH_SUBDIR=\"${MLIBDIR}\"
|
2016-10-07 20:12:59 +03:00
|
|
|
. if ${MLIBDIR} == "o32"
|
|
|
|
. endif
|
2008-10-26 10:11:54 +03:00
|
|
|
.else
|
2009-12-13 12:31:47 +03:00
|
|
|
PROG= ld.elf_so
|
2008-10-26 10:11:54 +03:00
|
|
|
.endif
|
2002-01-04 22:08:04 +03:00
|
|
|
|
2009-12-13 12:31:47 +03:00
|
|
|
CLIBOBJ!= cd ${NETBSDSRCDIR}/lib/libc && ${PRINTOBJDIR}
|
|
|
|
|
2010-12-17 01:47:27 +03:00
|
|
|
SRCS+= rtld.c reloc.c symbol.c xmalloc.c xprintf.c debug.c \
|
2011-03-10 02:10:05 +03:00
|
|
|
map_object.c load.c search.c headers.c paths.c expand.c \
|
2012-03-15 04:16:07 +04:00
|
|
|
tls.c symver.c diagassert.c
|
2001-12-15 01:21:45 +03:00
|
|
|
|
2007-12-27 00:11:52 +03:00
|
|
|
.if ${USE_FORT} == "yes"
|
2007-11-13 18:34:51 +03:00
|
|
|
.PATH.c: ${NETBSDSRCDIR}/lib/libc/misc
|
2007-09-27 21:51:40 +04:00
|
|
|
SRCS+= stack_protector.c
|
2007-12-27 00:11:52 +03:00
|
|
|
.endif
|
2007-10-30 20:19:59 +03:00
|
|
|
|
|
|
|
.PATH.c: ${NETBSDSRCDIR}/lib/libc/stdlib
|
|
|
|
SRCS+= exit.c
|
2007-09-27 21:51:40 +04:00
|
|
|
|
2010-12-17 01:52:32 +03:00
|
|
|
errlist_concat.h: ${NETBSDSRCDIR}/lib/libc/gen/errlist.awk ${NETBSDSRCDIR}/sys/sys/errno.h
|
|
|
|
${TOOL_AWK} -v concat=1 -f ${.ALLSRC} > ${.TARGET}.tmp && \
|
|
|
|
mv -f ${.TARGET}.tmp ${.TARGET}
|
|
|
|
|
|
|
|
xprintf.c: errlist_concat.h
|
|
|
|
|
2014-03-06 13:34:56 +04:00
|
|
|
CLEANFILES+= errlist_concat.h ${PROG}.map
|
2010-12-17 01:52:32 +03:00
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
BINDIR= ${SHLINKINSTALLDIR}
|
|
|
|
|
2004-02-24 00:27:20 +03:00
|
|
|
CPPFLAGS+= -DLIBDIR=\"${LIBDIR}\" -D_PATH_RTLD=\"${BINDIR}/${PROG}\"
|
2016-01-24 00:22:45 +03:00
|
|
|
CPPFLAGS+= -I${.CURDIR} -I. -D_KERNTYPES
|
2004-02-24 00:27:20 +03:00
|
|
|
CPPFLAGS+= -DRTLD_LOADER
|
2016-06-16 14:34:13 +03:00
|
|
|
CPPFLAGS+= -DGNU_RELRO
|
2004-02-24 00:27:20 +03:00
|
|
|
CPPFLAGS+= -D_RTLD_SOURCE
|
2005-01-11 10:47:37 +03:00
|
|
|
#CPPFLAGS+= -DDEBUG
|
2004-02-24 00:27:20 +03:00
|
|
|
#CPPFLAGS+= -DRTLD_DEBUG
|
|
|
|
#CPPFLAGS+= -DRTLD_DEBUG_RELOC
|
2013-05-03 19:52:31 +04:00
|
|
|
.if !empty(LDELFSO_MACHINE_ARCH:Mearm*)
|
2013-04-25 02:37:20 +04:00
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/lib/libexecinfo
|
|
|
|
.endif
|
2004-02-24 00:27:20 +03:00
|
|
|
#DBG= -g
|
2013-08-12 21:15:46 +04:00
|
|
|
COPTS+= -O3
|
|
|
|
|
2013-10-10 02:33:41 +04:00
|
|
|
.if ${MACHINE_CPU} != "m68k" && ${MACHINE_CPU} != "sh3" && ${MACHINE_ARCH} != "vax"
|
2013-08-12 21:15:46 +04:00
|
|
|
COPTS+= -fomit-frame-pointer
|
|
|
|
.endif
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2013-05-03 19:52:31 +04:00
|
|
|
.if ${LDELFSO_MACHINE_ARCH} == "i386" || ${LDELFSO_MACHINE_ARCH} == "x86_64"
|
2012-08-04 19:17:16 +04:00
|
|
|
COPTS+= -mno-3dnow -mno-mmx -mno-sse -mno-sse2 -mno-sse3
|
2011-05-21 02:22:44 +04:00
|
|
|
.endif
|
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
|
|
|
|
.if ${SHLIBDIR} != ${LIBDIR}
|
|
|
|
CPPFLAGS+= -DRTLD_DEFAULT_LIBRARY_PATH=\"${SHLIBDIR}:${LIBDIR}\"
|
|
|
|
.endif
|
|
|
|
|
2010-03-20 19:36:35 +03:00
|
|
|
# rtld.c and symbol.c use alloca, so disable SSP warnings.
|
|
|
|
COPTS.rtld.c+= -Wno-stack-protector
|
|
|
|
COPTS.symbol.c+=-Wno-stack-protector
|
|
|
|
|
2016-12-01 17:29:15 +03:00
|
|
|
LDADD+= -Wl,--version-script=${.CURDIR}/symbols.map
|
2007-03-15 20:27:15 +03:00
|
|
|
LDADD+= -L${CLIBOBJ} -L${DESTDIR}${LIBDIR}
|
|
|
|
.if ${MKPICLIB} != "no"
|
|
|
|
LDADD+= -lc_pic
|
2004-02-27 00:45:59 +03:00
|
|
|
.if ${MKPICINSTALL} != "no"
|
2004-02-24 00:27:20 +03:00
|
|
|
DPADD+= ${LIBC_PIC}
|
2003-02-26 09:03:40 +03:00
|
|
|
.endif
|
2004-02-24 00:27:20 +03:00
|
|
|
DPADD+= ${CLIBOBJ}/libc_pic.a
|
2007-03-15 20:27:15 +03:00
|
|
|
.else
|
|
|
|
LDADD+= -lc
|
|
|
|
DPADD+= ${CLIBOBJ}/libc.a
|
|
|
|
.endif
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2016-10-07 22:10:03 +03:00
|
|
|
.if ${MACHINE_CPU} == "hppa" || ${MACHINE_CPU} == "sh3"
|
2011-06-06 03:08:17 +04:00
|
|
|
# for $$divU, $$remU etc. (millicode)
|
2011-10-07 13:15:21 +04:00
|
|
|
LDADD+= -lgcc
|
|
|
|
DPADD+= ${LIBGCC}
|
2011-06-06 03:08:17 +04:00
|
|
|
.endif
|
|
|
|
|
1997-04-18 02:17:27 +04:00
|
|
|
STRIPFLAG=
|
1996-12-16 23:37:55 +03:00
|
|
|
|
1999-03-03 15:00:18 +03:00
|
|
|
.PATH: $M
|
1996-12-16 23:37:55 +03:00
|
|
|
|
2013-04-06 00:16:40 +04:00
|
|
|
|
2001-01-14 12:39:26 +03:00
|
|
|
${PROG}: ${OBJS} ${DPADD}
|
2003-10-21 14:01:19 +04:00
|
|
|
${_MKMSG_LINK} ${PROG}
|
2005-06-04 20:17:17 +04:00
|
|
|
${CC} ${LDFLAGS} -o ${PROG} ${OBJS} ${LDADD}
|
2013-04-06 00:16:40 +04:00
|
|
|
.if ${MKDEBUG} != "no"
|
|
|
|
( ${OBJCOPY} --only-keep-debug ${.TARGET} ${.TARGET}.debug \
|
|
|
|
&& ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \
|
|
|
|
--add-gnu-debuglink=${.TARGET}.debug ${.TARGET} \
|
|
|
|
) || (rm -f ${.TARGET}.debug; false)
|
|
|
|
|
|
|
|
_PROGDEBUG.${PROG} := ${PROG}.debug
|
|
|
|
.endif
|
|
|
|
|
2001-01-14 12:16:47 +03:00
|
|
|
|
2012-08-24 01:21:14 +04:00
|
|
|
.if ${SHLINKINSTALLDIR} != "/usr/libexec"
|
|
|
|
SYMLINKS+= ${SHLINKINSTALLDIR}/${PROG} /usr/libexec/${PROG}
|
2013-05-08 19:33:45 +04:00
|
|
|
.if ${MKDEBUG} != "no"
|
2013-05-09 15:44:36 +04:00
|
|
|
SYMLINKS+= ${DEBUGDIR}${BINDIR}/${PROG}.debug \
|
|
|
|
${DEBUGDIR}/usr${BINDIR}/${PROG}.debug
|
2013-05-08 19:33:45 +04:00
|
|
|
.endif
|
2001-12-28 08:30:24 +03:00
|
|
|
.endif
|
|
|
|
|
1996-12-16 23:37:55 +03:00
|
|
|
.include <bsd.prog.mk>
|
2002-01-23 18:10:24 +03:00
|
|
|
.else
|
|
|
|
|
2004-02-27 00:45:59 +03:00
|
|
|
MAN= ld.elf_so.1
|
2002-01-23 18:10:24 +03:00
|
|
|
|
|
|
|
.include <bsd.man.mk>
|
|
|
|
.endif
|