ulab not compatible with enabling '_thread' module from the make command : - building ulab with thread enabled in MicroPython : `$ make -j8 CFLAGS_EXTRA='-DMICROPY_PY_THREAD=1' BOARD=PYBV11 USER_C_MODULES=../../../ulab all` yields a firmware with '_thread' module but without 'ulab' module, because 'CFLAGS_EXTRA' is used in the make command and in 'ulab/code/micropython.mk', so the value of the last is ignored; - the solution is to use 'override' and '+=' in in last line of 'ulab/code/micropython.mk' : `override CFLAGS_EXTRA += -DMODULE_ULAB_ENABLED=1`
22 lines
782 B
Makefile
22 lines
782 B
Makefile
|
|
USERMODULES_DIR := $(USERMOD_DIR)
|
|
|
|
# Add all C files to SRC_USERMOD.
|
|
SRC_USERMOD += $(USERMODULES_DIR)/ndarray.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/create.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/linalg.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/vectorise.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/poly.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/fft.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/numerical.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/filter.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/compare.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/approx.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/extras.c
|
|
SRC_USERMOD += $(USERMODULES_DIR)/ulab.c
|
|
|
|
# We can add our module folder to include paths if needed
|
|
# This is not actually needed in this example.
|
|
CFLAGS_USERMOD += -I$(USERMODULES_DIR)
|
|
|
|
override CFLAGS_EXTRA += -DMODULE_ULAB_ENABLED=1
|