Sat Mar 7 00:53:25 2020 UTC ()
XXX:

turn off -Wunused-but-set-variable for mips' linux_machdep.c and GCC 8.


(mrg)
diff -r1.4 -r1.5 src/sys/conf/copts.mk

cvs diff -r1.4 -r1.5 src/sys/conf/copts.mk (expand / switch to context diff)
--- src/sys/conf/copts.mk 2019/09/30 00:06:02 1.4
+++ src/sys/conf/copts.mk 2020/03/07 00:53:24 1.5
@@ -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.
 
@@ -10,6 +10,11 @@
 COPTS.pf.c+=		-Wno-error=implicit-fallthrough
 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