Can anybody compile unix port with ulab on a Mac?

Discussion about programs, libraries and tools that work with MicroPython. Mostly these are provided by a third party.
Target audience: All users and developers of MicroPython.
Post Reply
User avatar
mathieu
Posts: 88
Joined: Fri Nov 10, 2017 9:57 pm

Can anybody compile unix port with ulab on a Mac?

Post by mathieu » Fri Nov 08, 2019 4:28 pm

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?

User avatar
jimmo
Posts: 2754
Joined: Tue Aug 08, 2017 1:57 am
Location: Sydney, Australia
Contact:

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

Post by jimmo » Mon Nov 11, 2019 12:09 pm

I think this was discussed (and fixed) in https://github.com/v923z/micropython-ulab/issues/8

Post Reply