diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-03-09 15:54:21 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-03-09 15:54:40 -0500 |
| commit | 491a31a7312d21cd7ead17d158971572f5372335 (patch) | |
| tree | acdcba1bccd5000019a8c2914d1f8bf4c2caeace /py | |
| parent | 66aa0dec601afb945a90096d78ae517033850427 (diff) | |
circuitpy_mpconfig.mk: Enable ULAB for "full builds"
This enables it on the imxrt and cds56 ports where it was disabled before
Diffstat (limited to 'py')
| -rw-r--r-- | py/circuitpy_mpconfig.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/circuitpy_mpconfig.mk b/py/circuitpy_mpconfig.mk index d6e033daf..21b1abd9b 100644 --- a/py/circuitpy_mpconfig.mk +++ b/py/circuitpy_mpconfig.mk @@ -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 |
