fix(windows): add /utf-8 flag for parsers using unicode symbols

This commit is contained in:
Amaan Qureshi 2024-03-26 23:08:58 -04:00
parent 5dc62cc828
commit 895c7680e7
3 changed files with 32 additions and 3 deletions

View file

@ -591,6 +591,7 @@ impl Loader {
command.arg(scanner_path);
}
command
.arg("/utf-8")
.arg("/link")
.arg(format!("/out:{}", output_path.to_str().unwrap()));
} else {