mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
5d031e332f
Summary: GCC expects to link in a crtsavres.o on powerpc platforms. On powerpc64 this is an empty file, but on powerpc and powerpcspe this does contain some save/restore functions, which may not actually be necessary for newer modern GCC and clang. This appeases the in-tree gcc, though, and is needed in order to switch to the BSD CRTRBEGIN. PR: 233751 Reviewed By: andrew Differential Revision: https://reviews.freebsd.org/D18826
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}/common
|
|
|
|
SRCS= crt1.c crti.S crtn.S crtsavres.S
|
|
OBJS= ${SRCS:N*.h:R:S/$/.o/g}
|
|
OBJS+= Scrt1.o gcrt1.o
|
|
CFLAGS+= -I${.CURDIR:H}/common \
|
|
-I${SRCTOP}/lib/libc/include
|
|
CFLAGS+= -DCRT_IRELOC_SUPPRESS
|
|
|
|
FILES= ${OBJS}
|
|
FILESMODE= ${LIBMODE}
|
|
FILESOWN= ${LIBOWN}
|
|
FILESGRP= ${LIBGRP}
|
|
FILESDIR= ${LIBDIR}
|
|
# These FILES qualify as libraries for the purpose of LIBRARIES_ONLY.
|
|
.undef LIBRARIES_ONLY
|
|
|
|
CLEANFILES= ${OBJS}
|
|
CLEANFILES+= crt1.s gcrt1.s Scrt1.s
|
|
|
|
# See the comment in lib/csu/common/crtbrand.c for the reason crt1.c is not
|
|
# directly compiled to .o files.
|
|
|
|
crt1.s: crt1.c
|
|
${CC} ${CFLAGS} -S -o ${.TARGET} ${.CURDIR}/crt1.c
|
|
sed ${SED_FIX_NOTE} ${.TARGET}
|
|
|
|
crt1.o: crt1.s
|
|
${CC} ${CFLAGS:N-g} ${ACFLAGS} -c -o ${.TARGET} crt1.s
|
|
|
|
gcrt1.s: crt1.c
|
|
${CC} ${CFLAGS} -DGCRT -S -o ${.TARGET} ${.CURDIR}/crt1.c
|
|
sed ${SED_FIX_NOTE} ${.TARGET}
|
|
|
|
gcrt1.o: gcrt1.s
|
|
${CC} ${CFLAGS:N-g} ${ACFLAGS} -c -o ${.TARGET} gcrt1.s
|
|
|
|
Scrt1.s: crt1.c
|
|
${CC} ${CFLAGS} -fPIC -DPIC -S -o ${.TARGET} ${.CURDIR}/crt1.c
|
|
sed ${SED_FIX_NOTE} ${.TARGET}
|
|
|
|
Scrt1.o: Scrt1.s
|
|
${CC} ${CFLAGS:N-g} ${ACFLAGS} -c -o ${.TARGET} Scrt1.s
|
|
|
|
.include <bsd.lib.mk>
|