Page 1 of 1

Can anybody compile unix port with ulab on a Mac?

Posted: Fri Nov 08, 2019 4:28 pm
by mathieu
I successfully compiled micropython with ulab for the pyboard-D (SF6), but I can't seem to do the same for the unix port. This is on a Mac with macOS 10.13.6 with the latest XCode tools. Here is my build script:

Code: Select all

git clone https://github.com/micropython/micropython.git
git clone https://github.com/v923z/micropython-ulab.git ulab

cd micropython
git submodule update --init

cd mpy-cross/
make

cd ../ports/unix
echo '#define MODULE_ULAB_ENABLED (1)' | cat >> mpconfigport.h
make USER_C_MODULES=../../../ulab all
This fails miserably (see here for details).

Has anybody successfully compiled the unix port of micropython+ulab on a Mac?

Re: Can anybody compile unix port with ulab on a Mac?

Posted: Mon Nov 11, 2019 12:09 pm
by jimmo
I think this was discussed (and fixed) in https://github.com/v923z/micropython-ulab/issues/8