mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
6d4766c1b8
the oabi is still in the tree, but it is expected this will be removed as developers work on surrounding code. With this commit the ARM EABI is the only supported supported ABI by FreeBSD on ARMa 32-bit processors. X-MFC after: never Relnotes: yes Differential Revision: https://reviews.freebsd.org/D876
67 lines
1.8 KiB
Makefile
67 lines
1.8 KiB
Makefile
# $FreeBSD$
|
|
|
|
MK_PROFILE= no
|
|
MK_SSP= no
|
|
|
|
.include <src.opts.mk>
|
|
.include "${.CURDIR}/../../usr.bin/cc/Makefile.tgt"
|
|
|
|
GCCDIR= ${.CURDIR}/../../../contrib/gcc
|
|
GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
|
|
.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}
|
|
|
|
LIB= gcov
|
|
|
|
CFLAGS+= -DIN_GCC -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
|
|
CFLAGS+= -D_PTHREADS -DGTHREAD_USE_WEAK
|
|
CFLAGS+= -I${.CURDIR}/../../usr.bin/cc/cc_tools \
|
|
-I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I.
|
|
|
|
.if ${TARGET_CPUARCH} == "arm"
|
|
CFLAGS+= -DTARGET_ARM_EABI
|
|
.endif
|
|
|
|
#
|
|
# Library members defined in libgcov.c.
|
|
# Defined in libgcov.c, included only in gcov library
|
|
SYMS = _gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta \
|
|
_gcov_fork _gcov_execl _gcov_execlp _gcov_execle \
|
|
_gcov_execv _gcov_execvp _gcov_execve \
|
|
_gcov_interval_profiler _gcov_pow2_profiler _gcov_one_value_profiler
|
|
|
|
OBJS= ${SYMS:S/$/.o/}
|
|
OBJS_T= ${SYMS:S/$/.o/}
|
|
OBJS_P= ${SYMS:S/$/.po/}
|
|
OBJS_S= ${SYMS:S/$/.So/}
|
|
|
|
#-----------------------------------------------------------------------
|
|
#
|
|
# Helpful shortcuts for compiler invocations.
|
|
#
|
|
CC_T = ${CC} -c ${CFLAGS} -fPIC
|
|
CC_P = ${CC} -c ${CFLAGS} -p -fPIC
|
|
CC_S = ${CC} -c ${CFLAGS} ${PICFLAG} -DSHARED
|
|
|
|
COMMONHDRS= tm.h tconfig.h gcov-iov.h options.h
|
|
CLEANFILES+= ${COMMONHDRS} cs-tm.h cs-tconfig.h options.h optionlist
|
|
|
|
${COMMONHDRS}: ${.CURDIR}/../../usr.bin/cc/cc_tools/Makefile
|
|
(cd ${.CURDIR}; ${MAKE} -f ${.ALLSRC} MFILE=${.ALLSRC} GCCDIR=${GCCDIR} ${.TARGET})
|
|
|
|
${OBJS} beforedepend: ${COMMONHDRS}
|
|
|
|
${OBJS_T}: libgcov.c
|
|
${CC_T} -DL${.PREFIX} -o ${.TARGET} ${.ALLSRC:M*.c}
|
|
|
|
.if !defined(NO_PIC)
|
|
${OBJS_S}: libgcov.c
|
|
${CC_S} -DL${.PREFIX} -o ${.TARGET} ${.ALLSRC:M*.c}
|
|
.endif
|
|
|
|
.if ${MK_PROFILE} != "no"
|
|
${OBJS_P}: libgcov.c
|
|
${CC_P} -DL${.PREFIX} -o ${.TARGET} ${.ALLSRC:M*.c}
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|