You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GUI of kconfig allows users to search in its database (e.g., via make guiconfig, ctrl+f) but in the MCUX SDK this is broken due to re missing. When search for any string nothing happens in the GUI but one can see this in the text output:
File ".../scripts/kconfig/guiconfig.py", line 1867, in _update_jump_to_matches
except re.error as e:
^^
NameError: name 're' is not defined
Hi @stefanct
Thanks for your feedback. Actually I have found this issue before and created the ticket here: ulfalizer/Kconfiglib#136.
But I don't receive any feedback. I'll fix it in our repo later anyway.
The GUI of kconfig allows users to search in its database (e.g., via
make guiconfig
, ctrl+f) but in the MCUX SDK this is broken due tore
missing. When search for any string nothing happens in the GUI but one can see this in the text output:mcux-sdk/scripts/kconfig/guiconfig.py
Line 1867 in acc105f
A simple
import re
at the top of the file fixes the issue. I have not checked how other projects have handled this.The text was updated successfully, but these errors were encountered: