After running make ENABLE_PYTHON=1 make has thrown a bunch of „undefined references" from src/python.api.c.
Solved it by running:
make USER_CFLAGS="-I /usr/include/python3.8 -lpython3.8" USER_LDFLAGS="-I /usr/lib/python3.8" ENABLE_PYTHON=1
I wonder if this problem can be solved by editing the Makefile, but I don't know how to do that.
After running
make ENABLE_PYTHON=1make has thrown a bunch of „undefined references" fromsrc/python.api.c.Solved it by running:
make USER_CFLAGS="-I /usr/include/python3.8 -lpython3.8" USER_LDFLAGS="-I /usr/lib/python3.8" ENABLE_PYTHON=1I wonder if this problem can be solved by editing the Makefile, but I don't know how to do that.