Let's enforce additional automatic checks enforced by the compiler in order to catch possible errors during compilation.
Signed-off-by: Petr Štetiar <[email protected]> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 715c03e34671..7f9c755d53ba 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ IWINFO_BACKENDS = $(BACKENDS) -IWINFO_CFLAGS = $(CFLAGS) -std=gnu99 -fstrict-aliasing -Iinclude +IWINFO_CFLAGS = $(CFLAGS) -std=gnu99 -fstrict-aliasing -Iinclude -Wall -Wextra -Werror -Wno-unused IWINFO_LDFLAGS = -luci -lubox -lubus IWINFO_LIB = libiwinfo.so -- 1.9.1 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
