Merge branch 'vendor/LIBRESSL'
[dragonfly.git] / sys / platform / vkernel64 / conf / kern.mk
1 #
2 # Prohibit the use of FP registers in the kernel.  The user FP state is
3 # only saved and restored under strictly managed conditions and mainline
4 # kernel code cannot safely use the FP system.
5 #
6 .if ${CCVER:Mgcc*}
7 CFLAGS+=        -mpreferred-stack-boundary=4
8 .endif
9 CFLAGS+=        -fno-stack-protector
10 CFLAGS+=        -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3
11 CFLAGS+=        -D_KERNEL_VIRTUAL
12 CFLAGS+=        -fno-omit-frame-pointer
13
14 # Remove the dynamic library hack for now
15 #
16 SYSTEM_OBJS:= ${SYSTEM_OBJS:Nhack.So}
17
18 INLINE_LIMIT=   8000