 84d9c625bf
			
		
	
	
		84d9c625bf
		
	
	
	
	
		
			
			- Fix for possible unset uid/gid in toproto
 - Fix for default mtree style
 - Update libelf
 - Importing libexecinfo
 - Resynchronize GCC, mpc, gmp, mpfr
 - build.sh: Replace params with show-params.
     This has been done as the make target has been renamed in the same
     way, while a new target named params has been added. This new
     target generates a file containing all the parameters, instead of
     printing it on the console.
 - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org)
     get getservbyport() out of the inner loop
Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
		
	
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			837 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			837 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # $NetBSD: Makefile.inc,v 1.1 2013/10/15 23:59:36 joerg Exp $
 | |
| 
 | |
| COMPILER_RT_SRCDIR=	${NETBSDSRCDIR}/sys/external/bsd/compiler_rt/dist
 | |
| 
 | |
| .if ${MACHINE_ARCH} == "powerpc"
 | |
| COMPILER_RT_CPU_DIR=	${COMPILER_RT_SRCDIR}/lib/ppc
 | |
| COMPILER_RT_ARCH_DIR=	${COMPILER_RT_SRCDIR}/lib/ppc
 | |
| .else
 | |
| COMPILER_RT_CPU_DIR=	${COMPILER_RT_SRCDIR}/lib/${MACHINE_CPU}
 | |
| COMPILER_RT_ARCH_DIR=	${COMPILER_RT_SRCDIR}/lib/${MACHINE_ARCH}
 | |
| .endif
 | |
| 
 | |
| .PATH: ${COMPILER_RT_CPU_DIR}
 | |
| .PATH: ${COMPILER_RT_ARCH_DIR}
 | |
| .PATH: ${COMPILER_RT_SRCDIR}/lib
 | |
| 
 | |
| # Needs scaling support
 | |
| GENERIC_SRCS+= \
 | |
| 	mulxc3.c \
 | |
| 	mulsc3.c \
 | |
| 	divxc3.c \
 | |
| 	divdc3.c \
 | |
| 	divsc3.c
 | |
| 
 | |
| .for src in ${GENERIC_SRCS}
 | |
| .  if exists(${COMPILER_RT_CPU_DIR}/${src:R}.S) || \
 | |
|       exists(${COMPILER_RT_ARCH_DIR}/${src:R}.S)
 | |
| SRCS+=	${src:R}.S
 | |
| .  else
 | |
| SRCS+=	${src}
 | |
| COPTS.${src}+=	-Wno-error=missing-prototypes
 | |
| .  endif
 | |
| .endfor
 |