Deleted Added
full compact
Makefile (215127) Makefile (215185)
1# $FreeBSD: head/gnu/lib/libgcc/Makefile 215127 2010-11-11 15:48:27Z ed $
1# $FreeBSD: head/gnu/lib/libgcc/Makefile 215185 2010-11-12 15:52:27Z ed $
2
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5
6SHLIB_NAME= libgcc_s.so.1
7SHLIBDIR?= /lib
8
9.include <bsd.own.mk>
10#
11# libgcc is linked in last and thus cannot depend on ssp symbols coming
12# from earlier libraries. Disable stack protection for this library.
13#
14MK_SSP= no
15
16.include "${.CURDIR}/../../usr.bin/cc/Makefile.tgt"
17
2
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5
6SHLIB_NAME= libgcc_s.so.1
7SHLIBDIR?= /lib
8
9.include <bsd.own.mk>
10#
11# libgcc is linked in last and thus cannot depend on ssp symbols coming
12# from earlier libraries. Disable stack protection for this library.
13#
14MK_SSP= no
15
16.include "${.CURDIR}/../../usr.bin/cc/Makefile.tgt"
17
18.if ${TARGET_CPUARCH} == "sparc64"
19LIB= gcc
20.endif
21
18.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}/config ${GCCDIR}
19
20CFLAGS+= -DIN_GCC -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED \
21 -DHAVE_GTHR_DEFAULT \
22 -I${GCCLIB}/include \
23 -I${GCCDIR}/config -I${GCCDIR} -I. \
24 -I${.CURDIR}/../../usr.bin/cc/cc_tools
25

--- 344 unchanged lines hidden ---
22.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}/config ${GCCDIR}
23
24CFLAGS+= -DIN_GCC -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED \
25 -DHAVE_GTHR_DEFAULT \
26 -I${GCCLIB}/include \
27 -I${GCCDIR}/config -I${GCCDIR} -I. \
28 -I${.CURDIR}/../../usr.bin/cc/cc_tools
29

--- 344 unchanged lines hidden ---