diff options
-rw-r--r-- | Makefile.flags | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.flags b/Makefile.flags index bf22cec04..7d6bec8ec 100644 --- a/Makefile.flags +++ b/Makefile.flags | |||
@@ -49,7 +49,7 @@ endif | |||
49 | # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action() | 49 | # gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action() |
50 | CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition) | 50 | CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition) |
51 | 51 | ||
52 | ifneq ($(CC),clang) | 52 | ifneq ($(lastword $(subst -, ,$(CC))),clang) |
53 | # "clang-9: warning: optimization flag '-finline-limit=0' is not supported | 53 | # "clang-9: warning: optimization flag '-finline-limit=0' is not supported |
54 | CFLAGS += $(call cc-option,-finline-limit=0,) | 54 | CFLAGS += $(call cc-option,-finline-limit=0,) |
55 | endif | 55 | endif |
@@ -67,7 +67,7 @@ CFLAGS += $(call cc-option,-static-libgcc,) | |||
67 | endif | 67 | endif |
68 | 68 | ||
69 | CFLAGS += $(call cc-option,-falign-functions=1,) | 69 | CFLAGS += $(call cc-option,-falign-functions=1,) |
70 | ifneq ($(CC),clang) | 70 | ifneq ($(lastword $(subst -, ,$(CC))),clang) |
71 | # "clang-9: warning: optimization flag '-falign-jumps=1' is not supported" (and same for other two) | 71 | # "clang-9: warning: optimization flag '-falign-jumps=1' is not supported" (and same for other two) |
72 | CFLAGS += $(call cc-option,-falign-jumps=1 -falign-labels=1 -falign-loops=1,) | 72 | CFLAGS += $(call cc-option,-falign-jumps=1 -falign-labels=1 -falign-loops=1,) |
73 | endif | 73 | endif |
@@ -80,7 +80,7 @@ CFLAGS += $(call cc-option,-fno-asynchronous-unwind-tables,) | |||
80 | CFLAGS += $(call cc-option,-fno-builtin-printf,) | 80 | CFLAGS += $(call cc-option,-fno-builtin-printf,) |
81 | 81 | ||
82 | # clang-9 does not like "str" + N and "if (CONFIG_ITEM && cond)" constructs | 82 | # clang-9 does not like "str" + N and "if (CONFIG_ITEM && cond)" constructs |
83 | ifeq ($(CC),clang) | 83 | ifeq ($(lastword $(subst -, ,$(CC))),clang) |
84 | CFLAGS += $(call cc-option,-Wno-string-plus-int -Wno-constant-logical-operand) | 84 | CFLAGS += $(call cc-option,-Wno-string-plus-int -Wno-constant-logical-operand) |
85 | endif | 85 | endif |
86 | 86 | ||