circuitpy_mpconfig.mk: Enable ULAB for "full builds"

This enables it on the imxrt and cds56 ports where it was disabled before
This commit is contained in:
Jeff Epler 2020-03-09 15:54:21 -05:00
parent 66aa0dec60
commit 491a31a731
1 changed files with 5 additions and 0 deletions

View File

@ -339,6 +339,11 @@ CIRCUITPY_SERIAL_UART = 0
endif
CFLAGS += -DCIRCUITPY_SERIAL_UART=$(CIRCUITPY_SERIAL_UART)
# ulab numerics library
ifndef MICROPY_PY_ULAB
MICROPY_PY_ULAB = $(CIRCUITPY_FULL_BUILD)
endif
# Enabled micropython.native decorator (experimental)
ifndef CIRCUITPY_ENABLE_MPY_NATIVE
CIRCUITPY_ENABLE_MPY_NATIVE = 0