Uncomment vm.c SUPEROPT (debugging typo); trim a few builds
This commit is contained in:
parent
1bb4fccc3b
commit
ba1b36a800
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
2
py/py.mk
2
py/py.mk
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue