Deleted Added
full compact
kern.mk (217033) kern.mk (218824)
1# $FreeBSD: head/sys/conf/kern.mk 217033 2011-01-05 22:24:33Z dim $
1# $FreeBSD: head/sys/conf/kern.mk 218824 2011-02-18 21:44:53Z nwhitehorn $
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#
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# Use dot symbols on powerpc64 to make ddb happy
86#
87.if ${MACHINE_ARCH} == "powerpc64"
88CFLAGS+= -mcall-aixdesc
89.endif
90
91#
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 ---
92# For MIPS we also tell gcc to use floating point emulation
93#
94.if ${MACHINE_CPUARCH} == "mips"
95CFLAGS+= -msoft-float
96INLINE_LIMIT?= 8000
97.endif
98
99#

--- 29 unchanged lines hidden ---