-
I encountered a problem when using C to extend MicroPython. There is a class with a member function called 'y', but I encountered an error when adding members to this class. /home/mars/esp/micropython/ports/facemoo/build/frozen_content.c:317:5: error: redeclaration of enumerator 'MP_QSTR_y' Where is the problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try to remove all previous build files ( |
Beta Was this translation helpful? Give feedback.
Yep a
make clean
will solve this.The build can handle the set of known qstrs changing and rebuilds as necessary, except in the case where a qstr that was previously only in the frozen set is now also in the base set.