mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-10 10:35:16 +03:00
Added "/utf-8" to Windows compilation options. (#603)
This commit is contained in:
parent
a2cd9cce9d
commit
89089a7355
@ -77,7 +77,8 @@ fn build_library(src_path: &Path, language: &str) -> Result<()> {
|
||||
command
|
||||
.args(&["/nologo", "/LD", "/I"])
|
||||
.arg(header_path)
|
||||
.arg("/Od");
|
||||
.arg("/Od")
|
||||
.arg("/utf-8");
|
||||
if let Some(scanner_path) = scanner_path.as_ref() {
|
||||
command.arg(scanner_path);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user