10000 turn off inline-unit-growth and max-inline-insns-auto uses · unwiredben/circuitpython@94d76e0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 94d76e0

Browse files
committed
turn off inline-unit-growth and max-inline-insns-auto uses
1 parent 7316c74 commit 94d76e0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ports/atmel-samd/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ else
150150
CFLAGS += -flto -flto-partition=none
151151

152152
ifeq ($(CIRCUITPY_FULL_BUILD),0)
153-
CFLAGS += --param inline-unit-growth=15 --param max-inline-insns-auto=20
153+
# This is making the build larger in some cases (gcc 10.2.1), so turn it off for now
154+
# CFLAGS += --param inline-unit-growth=15 --param max-inline-insns-auto=20
154155
endif
155156

156157
ifdef CFLAGS_BOARD

0 commit comments

Comments
 (0)
0