Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules/cyclic cyclic.kmod needs -Wno-sign-compare for a...



details:   https://anonhg.NetBSD.org/src/rev/a2e95a0c8164
branches:  trunk
changeset: 744755:a2e95a0c8164
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Wed Feb 12 06:36:19 2020 +0000

description:
cyclic.kmod needs -Wno-sign-compare for aarch64 CPU_INFO_FOREACH.

Provisional workaround; feel free to fix.

diffstat:

 sys/modules/cyclic/Makefile |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (11 lines):

diff -r 915fb53cd5b8 -r a2e95a0c8164 sys/modules/cyclic/Makefile
--- a/sys/modules/cyclic/Makefile       Wed Feb 12 06:26:02 2020 +0000
+++ b/sys/modules/cyclic/Makefile       Wed Feb 12 06:36:19 2020 +0000
@@ -25,6 +25,6 @@
                -I${OSNETDIR}/dev/cyclic/${ARCH} \
                -I${OSNETDIR}/dist/uts/common
 
-CPPFLAGS+=     -Wno-unknown-pragmas -Wno-cast-qual
+CPPFLAGS+=     -Wno-unknown-pragmas -Wno-cast-qual -Wno-sign-compare
 
 .include <bsd.kmodule.mk>



Home | Main Index | Thread Index | Old Index