Skip to content
Elvin Slavik edited this page Jan 2, 2023 · 4 revisions

Unix/Linux (including macOS)

The typical method of compiling usqlite for MicroPython on Unix/Linux systems is to use the USER_C_MODULES parameter with make.

e.g. Compiling on a Linux system with a project root folder in the home directory named myproject

cd ~/myproject/micropython/ports/unix
make submodules
make clean
make USER_C_MODULES=~/myproject/modules
Clone this wiki locally