dmazzella / ucrypto

Micropython package for doing fast rsa and elliptic curve cryptography, specifically digital signatures
31 stars 11 forks source link

USER_C_MODULES seems should be pointing to a root cmake file #6

Closed y3k00000 closed 1 year ago

y3k00000 commented 1 year ago

Followed README.md, the build fails with latest MicroPython source:

make -j8 -C mpy-cross && make -j8 -C ports/stm32/ BOARD="PYBD_SF6" USER_C_MODULES="$(pwd)/ports/stm32/boards/PYBD_SF6/cmodules"

Turns out I have to go with : make -j8 -C mpy-cross && make -j8 -C ports/stm32/ BOARD="PYBD_SF6" USER_C_MODULES="$(pwd)/ports/stm32/boards/PYBD_SF6/cmodules/micropython.cmake"

y3k00000 commented 1 year ago

Sorry, it's duplicated.