Added "/utf-8" to Windows compilation options. (#603)
This commit is contained in:
parent
a2cd9cce9d
commit
89089a7355
1 changed files with 2 additions and 1 deletions
|
@ -77,7 +77,8 @@ fn build_library(src_path: &Path, language: &str) -> Result<()> {
|
||||||
command
|
command
|
||||||
.args(&["/nologo", "/LD", "/I"])
|
.args(&["/nologo", "/LD", "/I"])
|
||||||
.arg(header_path)
|
.arg(header_path)
|
||||||
.arg("/Od");
|
.arg("/Od")
|
||||||
|
.arg("/utf-8");
|
||||||
if let Some(scanner_path) = scanner_path.as_ref() {
|
if let Some(scanner_path) = scanner_path.as_ref() {
|
||||||
command.arg(scanner_path);
|
command.arg(scanner_path);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue