We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c627904 commit 0c3211aCopy full SHA for 0c3211a
Makefile
@@ -85,6 +85,12 @@ CFLAGS_BUILD += $(call remove_quote,$(CONFIG_CC_OPT))
85
CFLAGS_BUILD += $(if $(CONFIG_CC_LTO),-flto=auto,)
86
CFLAGS_BUILD += $(if $(CONFIG_CC_DEBUG),-ggdb3,)
87
CFLAGS_BUILD += $(if $(CONFIG_CC_ASAN),-fsanitize=address,)
88
+
89
+# Fine-tuned compiler options
90
+ifeq ($(CC), gcc)
91
+ CFLAGS_BUILD += --param max-inline-insns-single=256 -falign-labels=32:9:64:15
92
+endif
93
94
CFLAGS += $(CFLAGS_BUILD)
95
LDFLAGS += $(CFLAGS_BUILD)
96
0 commit comments