turn off -Wunused-but-set-variable for mips' linux_machdep.c and GCC 8.
This commit is contained in:
mrg 2020-03-07 00:53:24 +00:00
parent 61945ccaee
commit 94bbc63c59

View File

@ -1,4 +1,4 @@
# $NetBSD: copts.mk,v 1.4 2019/09/30 00:06:02 mrg Exp $
# $NetBSD: copts.mk,v 1.5 2020/03/07 00:53:24 mrg Exp $
# MI per-file compiler options required.
@ -12,4 +12,9 @@ COPTS.radeon_cs.c+= -Wno-error=implicit-fallthrough
COPTS.via_dmablit.c+= -Wno-error=implicit-fallthrough
.endif
.if defined(HAVE_GCC) && ${HAVE_GCC} >= 8 && ${ACTIVE_CC} == "gcc" && \
(${MACHINE_ARCH} == "mipseb" || ${MACHINE_ARCH} == "mipsel")
COPTS.linux_machdep.c+= -Wno-error=unused-but-set-variable
.endif
.endif