HAMMER 60I/Many: Mirroring
[dragonfly.git] / sys / conf / bsd.kern.mk
blob477bf065ed9f3e61b55986c7b7e29cf1b7570e56
1 # $FreeBSD: src/share/mk/bsd.kern.mk,v 1.17.2.1 2001/08/01 16:56:56 obrien Exp $
2 # $DragonFly: src/sys/conf/bsd.kern.mk,v 1.15 2008/01/09 00:07:57 corecode Exp $
5 # Warning flags for compiling the kernel and components of the kernel.
7 # Note that the newly added -Wcast-qual is responsible for generating
8 # most of the remaining warnings. Warnings introduced with -Wall will
9 # also pop up, but are easier to fix.
11 CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
12 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
13 -std=c99
15 # The following flags are next up for working on:
16 # -W
18 # When working on removing warnings from code, the `-Werror' flag should be
19 # of material assistance.
22 CFLAGS+= -finline-limit=${INLINE_LIMIT}
23 CFLAGS+= --param inline-unit-growth=100
24 CFLAGS+= --param large-function-growth=1000
26 # Require the proper use of 'extern' for variables. -fno-common will
27 # cause duplicate declarations to generate a link error.
29 CFLAGS+= -fno-common
31 # Prevent GCC 3.x from making certain libc based inline optimizations
33 CFLAGS+= -ffreestanding
35 .include "../platform/${MACHINE_PLATFORM}/conf/kern.mk"