mdadm: fix build with gcc-7

This commit is contained in:
Arne Fitzenreiter
2018-01-26 12:23:00 +01:00
committed by Michael Tremer
parent eaec148fd8
commit 27ee5072c5
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
diff -Naur mdadm-4.0.org/Makefile mdadm-4.0/Makefile
--- mdadm-4.0.org/Makefile 2017-01-09 22:46:34.000000000 +0100
+++ mdadm-4.0/Makefile 2018-01-19 11:18:42.868219725 +0100
@@ -43,7 +43,7 @@
CC ?= $(CROSS_COMPILE)gcc
CXFLAGS ?= -ggdb
-CWFLAGS = -Wall -Werror -Wstrict-prototypes -Wextra -Wno-unused-parameter
+CWFLAGS = -Wall -Werror -Werror=implicit-fallthrough=0 -Werror=format-overflow=0 -Werror=format-truncation=0 -Wstrict-prototypes -Wextra -Wno-unused-parameter
ifdef WARN_UNUSED
CWFLAGS += -Wp,-D_FORTIFY_SOURCE=2 -O3
endif