summaryrefslogtreecommitdiffstats
path: root/sys/conf/kern.pre.mk
diff options
context:
space:
mode:
authorrpaulo <rpaulo@FreeBSD.org>2010-07-22 18:47:41 +0000
committerrpaulo <rpaulo@FreeBSD.org>2010-07-22 18:47:41 +0000
commitd484564cf91380c5652b2400eb03443e1650ec70 (patch)
tree16fbc4bc2e5cafd76cfeaf6dcec6949da82be2bd /sys/conf/kern.pre.mk
parent9fdab3dd154ee91e1d08bbea36e9c641cb1925bd (diff)
downloadFreeBSD-src-d484564cf91380c5652b2400eb03443e1650ec70.zip
FreeBSD-src-d484564cf91380c5652b2400eb03443e1650ec70.tar.gz
Handle a few corner cases for clang like we did with icc. These should
reduce the number of warnings seen while building the kernel. Submitted by: Dimitry Andric <dimitry at andric.com>
Diffstat (limited to 'sys/conf/kern.pre.mk')
-rw-r--r--sys/conf/kern.pre.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/conf/kern.pre.mk b/sys/conf/kern.pre.mk
index b4747f7..5c22abd 100644
--- a/sys/conf/kern.pre.mk
+++ b/sys/conf/kern.pre.mk
@@ -92,7 +92,7 @@ INCLUDES+= -I$S/dev/cxgb
CFLAGS= ${COPTFLAGS} ${C_DIALECT} ${DEBUG} ${CWARNFLAGS}
CFLAGS+= ${INCLUDES} -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h
-.if ${CC} != "icc"
+.if ${CC} != "icc" && ${CC} != "clang"
CFLAGS+= -fno-common -finline-limit=${INLINE_LIMIT}
.if ${MACHINE_CPUARCH} != "mips"
CFLAGS+= --param inline-unit-growth=100
@@ -109,8 +109,8 @@ WERROR?= -Werror
ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS}
.if defined(PROFLEVEL) && ${PROFLEVEL} >= 1
-.if ${CC} == "icc"
-.error "Profiling doesn't work with icc yet"
+.if ${CC} == "icc" || ${CC} == "clang"
+.error "Profiling doesn't work with icc or clang yet"
.endif
CFLAGS+= -DGPROF -falign-functions=16
.if ${PROFLEVEL} >= 2
OpenPOWER on IntegriCloud