 18a5822eff
			
		
	
	
		18a5822eff
		
	
	
	
	
		
			
			They are used as build tools for cross compilation. This import does not include the full distribution. Rather, it sports a shell script that will download and patch the distribution when compiled from /usr/src/tools (yet to be committed). This part of the source tree is only necessary for cross compilation. It's not used or compiled for native builds.
		
			
				
	
	
		
			46 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #	$NetBSD: Makefile,v 1.4 2011/08/09 13:00:04 joerg Exp $
 | |
| 
 | |
| REQUIRETOOLS=	yes
 | |
| NOLINT=		# defined
 | |
| NOPIC=		# defined
 | |
| NOPROFILE=	# defined
 | |
| 
 | |
| CWARNFLAGS.clang+=	-Wno-parentheses
 | |
| 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
 |