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
reason:
When compiling graalvmjdk, mx calls getKnownJavacLints if the local language is Chinese, it will cause UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbf in position 19: invalid start byte, and there is no problem if the local language is English
resolution:
Add errors="ignore" named parameter to ignore errors when decoding strings
The text was updated successfully, but these errors were encountered:
workaround instructions for some mx beginner from developer:
change mx\src\mx\_impl\support\processes.py
line 59 return subprocess.check_output(*args, **kwargs).decode(errors="ignore")
reason:
When compiling graalvmjdk, mx calls getKnownJavacLints if the local language is Chinese, it will cause UnicodeDecodeError: 'utf-8' codec can't decode byte 0xbf in position 19: invalid start byte, and there is no problem if the local language is English
resolution:
Add errors="ignore" named parameter to ignore errors when decoding strings
The text was updated successfully, but these errors were encountered: