Skip to content

Commit 06f7cae

Browse files
groeckkuba-moo
authored andcommitted
selftest: af_unix: Support compilers without flex-array-member-not-at-end support
Fix: gcc: error: unrecognized command-line option ‘-Wflex-array-member-not-at-end’ by making the compiler option dependent on its support. Fixes: 1838731 ("selftest: af_unix: Add -Wall and -Wflex-array-member-not-at-end to CFLAGS.") Cc: Kuniyuki Iwashima <kuniyu@google.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Link: https://patch.msgid.link/20251205171010.515236-7-linux@roeck-us.net Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent 9580f6d commit 06f7cae

File tree

1 file changed

+6
-1
lines changed
  • tools/testing/selftests/net/af_unix

1 file changed

+6
-1
lines changed

tools/testing/selftests/net/af_unix/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
CFLAGS += $(KHDR_INCLUDES) -Wall -Wflex-array-member-not-at-end
1+
top_srcdir := ../../../../..
2+
include $(top_srcdir)/scripts/Makefile.compiler
3+
4+
cc-option = $(call __cc-option, $(CC),,$(1),$(2))
5+
6+
CFLAGS += $(KHDR_INCLUDES) -Wall $(call cc-option,-Wflex-array-member-not-at-end)
27

38
TEST_GEN_PROGS := \
49
diag_uid \

0 commit comments

Comments
 (0)