Uncomment vm.c SUPEROPT (debugging typo); trim a few builds

This commit is contained in:
Dan Halbert 2019-06-12 13:09:09 -04:00
parent 1bb4fccc3b
commit ba1b36a800
3 changed files with 6 additions and 1 deletions

View File

@ -16,7 +16,9 @@ LONGINT_IMPL = MPZ
CIRCUITPY_DISPLAYIO = 0 CIRCUITPY_DISPLAYIO = 0
CIRCUITPY_FREQUENCYIO = 0 CIRCUITPY_FREQUENCYIO = 0
CIRCUITPY_I2CSLAVE = 0 CIRCUITPY_I2CSLAVE = 0
SUPEROPT_GC = 0 SUPEROPT_GC = 0
CFLAGS_INLINE_LIMIT = 55
# Include these Python libraries in firmware. # Include these Python libraries in firmware.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice

View File

@ -17,7 +17,10 @@ CIRCUITPY_DISPLAYIO = 0
CIRCUITPY_PIXELBUF = 0 CIRCUITPY_PIXELBUF = 0
CIRCUITPY_FREQUENCYIO = 0 CIRCUITPY_FREQUENCYIO = 0
CIRCUITPY_I2CSLAVE = 0 CIRCUITPY_I2CSLAVE = 0
SUPEROPT_GC = 0 SUPEROPT_GC = 0
CFLAGS_INLINE_LIMIT = 55
# Include these Python libraries in firmware. # Include these Python libraries in firmware.
FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice FROZEN_MPY_DIRS += $(TOP)/frozen/Adafruit_CircuitPython_BusDevice

View File

@ -357,7 +357,7 @@ ifndef SUPEROPT_VM
endif endif
ifeq ($(SUPEROPT_VM),1) ifeq ($(SUPEROPT_VM),1)
#$(PY_BUILD)/vm.o: CFLAGS += $(CSUPEROPT) $(PY_BUILD)/vm.o: CFLAGS += $(CSUPEROPT)
endif endif
# Optimizing vm.o for modern deeply pipelined CPUs with branch predictors # Optimizing vm.o for modern deeply pipelined CPUs with branch predictors