alliedmodders / ambuild

AlliedModders C++ Build System
BSD 3-Clause "New" or "Revised" License
60 stars 31 forks source link

Fix code page detection errors #163

Closed zer0k-z closed 6 months ago

zer0k-z commented 6 months ago

Python doesn't have an alias for every number, only some common one such as 437, 850,... 65001 is not one of them and it's used in github's windows CI environment. But in most cases, they should exist under the cp<number> format. The PR also makes sure that the codepage search will fall back to utf-8 if they can't find a corresponding codecs to the subprocess output.