. raise(SIGFPE) for modulo-0/divide-0 operations in internal int division functions . gcc: do not link with -lgcc anywhere so these internal functions are always used from libc instead of (sometimes) masked by -lgcc . together fixes test53 on ARM Change-Id: I31ec19dfdd68b8a92695595da901874e63106f9d
		
			
				
	
	
		
			29 lines
		
	
	
		
			638 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			638 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# MINIX-specific boot program options
 | 
						|
.include <bsd.own.mk>
 | 
						|
 | 
						|
# LSC Static linking, order matters! 
 | 
						|
# We can't use --start-group/--end-group as they are not supported by our
 | 
						|
# version of clang.
 | 
						|
 | 
						|
# 1. No default libs
 | 
						|
LDADD+= -nodefaultlibs 
 | 
						|
 | 
						|
# 2. Compiler-specific libs
 | 
						|
.if !empty(CC:M*gcc)
 | 
						|
.if (${MACHINE_ARCH} == "earm")
 | 
						|
LDADD+= -lsys
 | 
						|
.else
 | 
						|
LDADD+= -lgcc -lsys -lgcc
 | 
						|
.endif
 | 
						|
.elif !empty(CC:M*clang)
 | 
						|
LDADD+= -L/usr/pkg/compiler-rt/lib -lCompilerRT-Generic -lsys -lCompilerRT-Generic
 | 
						|
.endif
 | 
						|
 | 
						|
# 3. Minimal C library
 | 
						|
LDADD+= -lminc
 | 
						|
 | 
						|
# Some define still needed, hopefully will go away soon
 | 
						|
CPPFLAGS+=     -D__NBSD_LIBC
 | 
						|
 | 
						|
.include <bsd.prog.mk>
 |