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/macppc/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/macppc/conf')
-rw-r--r-- | sys/arch/macppc/conf/Makefile.macppc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/conf/Makefile.macppc b/sys/arch/macppc/conf/Makefile.macppc index 96c49bc75d8..cc6aad65ffa 100644 --- a/sys/arch/macppc/conf/Makefile.macppc +++ b/sys/arch/macppc/conf/Makefile.macppc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.macppc,v 1.102 2021/05/10 17:29:41 gkoehler Exp $ +# $OpenBSD: Makefile.macppc,v 1.103 2021/11/27 00:49:21 jsg Exp $ # For instructions on building kernels consult the config(8) and options(4) # manual pages. @@ -26,7 +26,7 @@ INCLUDES= -nostdinc -I$S -I${.OBJDIR} -I$S/arch \ -I$S/dev/pci/drm/include/uapi CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D__${_mach}__ -MD -MP CWARNFLAGS= -Werror -Wall -Wimplicit-function-declaration \ - -Wno-main -Wno-uninitialized -Wno-pointer-sign \ + -Wno-main -Wno-pointer-sign \ -Wframe-larger-than=2047 CMACHFLAGS= -msoft-float |