mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Fix a missing to_str() on Windows
This commit is contained in:
parent
dcb7ab97c2
commit
bcf53e58fe
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ pub fn build_zig_host_native(
|
|||
"build-exe",
|
||||
// "-fPIE", PIE seems to fail on windows
|
||||
shared_lib_path.to_str().unwrap(),
|
||||
builtins_host_path,
|
||||
builtins_host_path.to_str().unwrap(),
|
||||
]);
|
||||
} else {
|
||||
zig_cmd.args(&["build-obj"]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue