c8f3b10909
. also disable stack protection feature for gcc, causes build errors for pkgsrc gcc on minix Change-Id: I1c6e2bcb4d948098d642543d7b2711284ee55c72
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2011/08/09 13:00:04 joerg Exp $
|
|
|
|
REQUIRETOOLS= yes
|
|
NOLINT= # defined
|
|
NOPIC= # defined
|
|
NOPROFILE= # defined
|
|
|
|
.if defined(__MINIX)
|
|
WARNS=
|
|
NOGCCERROR=yes
|
|
NOCLANGERROR=yes
|
|
.else
|
|
CWARNFLAGS.clang+= -Wno-parentheses
|
|
.endif
|
|
|
|
UNSUPPORTED_COMPILER.clang= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= supc++
|
|
|
|
.if exists(${.CURDIR}/../libstdc++-v3/arch/${MACHINE_ARCH}/defs.mk) && ${MKGCC} != "no"
|
|
.include "${.CURDIR}/../libstdc++-v3/arch/${MACHINE_ARCH}/defs.mk"
|
|
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 0
|
|
|
|
.include "${.CURDIR}/../libsupc++/Makefile.common"
|
|
|
|
SRCS= ${LIBSUPCXXSRCS} xmalloc.c
|
|
CXXFLAGS+= ${G_SECTION_FLAGS}
|
|
|
|
COPTS.cp-demangle.c = -Wno-stack-protector
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
${SRCS}: unwind.h
|
|
unwind.h: ${G_UNWIND_H}
|
|
${_MKTARGET_CREATE}
|
|
rm -f ${.TARGET}
|
|
ln -s ${G_UNWIND_H} ${.TARGET}
|
|
CLEANFILES+= unwind.h
|
|
|
|
.PATH: ${DIST}/libstdc++-v3/src \
|
|
${DIST}/libstdc++-v3/libsupc++ \
|
|
${DIST}/libiberty \
|
|
${.CURDIR}/../libstdc++-v3/arch/${MACHINE_ARCH}
|
|
|
|
${OBJS}: ${.CURDIR}/../libstdc++-v3/arch/${MACHINE_ARCH}/defs.mk
|
|
.else
|
|
.include <bsd.prog.mk> # do nothing
|
|
.endif
|