Deleted Added
sdiff udiff text old ( 217033 ) new ( 218824 )
full compact
1# $FreeBSD: head/sys/conf/kern.mk 217033 2011-01-05 22:24:33Z dim $
2
3#
4# Warning flags for compiling the kernel and components of the kernel.
5#
6# Note that the newly added -Wcast-qual is responsible for generating
7# most of the remaining warnings. Warnings introduced with -Wall will
8# also pop up, but are easier to fix.
9.if ${CC:T:Micc} == "icc"

--- 67 unchanged lines hidden (view full) ---

77# Also explicitly disable Altivec instructions inside the kernel.
78#
79.if ${MACHINE_CPUARCH} == "powerpc"
80CFLAGS+= -msoft-float -mno-altivec
81INLINE_LIMIT?= 15000
82.endif
83
84#
85# For MIPS we also tell gcc to use floating point emulation
86#
87.if ${MACHINE_CPUARCH} == "mips"
88CFLAGS+= -msoft-float
89INLINE_LIMIT?= 8000
90.endif
91
92#

--- 29 unchanged lines hidden ---