Skip to content

Commit ba1b36a

Browse files
committed
Uncomment vm.c SUPEROPT (debugging typo); trim a few builds
1 parent 1bb4fcc commit ba1b36a

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

ports/atmel-samd/boards/circuitplayground_express/mpconfigboard.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ LONGINT_IMPL = MPZ
1616
CIRCUITPY_DISPLAYIO = 0
1717
CIRCUITPY_FREQUENCYIO = 0
1818
CIRCUITPY_I2CSLAVE = 0
19+
1920
SUPEROPT_GC = 0
21+
CFLAGS_INLINE_LIMIT = 55
2022

2123
# Include these Python libraries in firmware.
2224
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice

ports/atmel-samd/boards/circuitplayground_express_crickit/mpconfigboard.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ CIRCUITPY_DISPLAYIO = 0
1717
CIRCUITPY_PIXELBUF = 0
1818
CIRCUITPY_FREQUENCYIO = 0
1919
CIRCUITPY_I2CSLAVE = 0
20+
2021
SUPEROPT_GC = 0
22+
CFLAGS_INLINE_LIMIT = 55
23+
2124

2225
# Include these Python libraries in firmware.
2326
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice

py/py.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ ifndef SUPEROPT_VM
357357
endif
358358

359359
ifeq ($(SUPEROPT_VM),1)
360-
#$(PY_BUILD)/vm.o: CFLAGS += $(CSUPEROPT)
360+
$(PY_BUILD)/vm.o: CFLAGS += $(CSUPEROPT)
361361
endif
362362

363363
# Optimizing vm.o for modern deeply pipelined CPUs with branch predictors

0 commit comments

Comments
 (0)