diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-11-27 00:49:23 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-11-27 00:49:23 +0000 |
commit | 83036f7001b79036f244ea673fae2902cab9cfb4 (patch) | |
tree | 36123e06f4874e21ea94f912d4efd0374f111634 /sys/arch/i386/conf | |
parent | f42f9de1c5416d9d613c7a7fa39999bf89dd515b (diff) |
stop building kernels with -Wno-uninitialized on clang archs
this hides real problems that could be found at build time
ok kettenis@ visa@, ok sashan@ on amd64/i386
Diffstat (limited to 'sys/arch/i386/conf')
-rw-r--r-- | sys/arch/i386/conf/Makefile.i386 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/conf/Makefile.i386 b/sys/arch/i386/conf/Makefile.i386 index d8ab48f8660..4903579d567 100644 --- a/sys/arch/i386/conf/Makefile.i386 +++ b/sys/arch/i386/conf/Makefile.i386 @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.i386,v 1.140 2021/01/28 17:39:03 deraadt Exp $ +# $OpenBSD: Makefile.i386,v 1.141 2021/11/27 00:49:21 jsg Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -27,7 +27,7 @@ INCLUDES= -nostdinc -I$S -I${.OBJDIR} -I$S/arch \ -I$S/dev/pci/drm/i915 CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -MD -MP CWARNFLAGS= -Werror -Wall -Wimplicit-function-declaration \ - -Wno-uninitialized -Wno-pointer-sign \ + -Wno-pointer-sign \ -Wframe-larger-than=2047 CMACHFLAGS= |