mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
Fix a missing .to_str()
This commit is contained in:
parent
18fdc54022
commit
4e50d3fe2e
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ pub fn build_zig_host_native(
|
|||
"-fPIE",
|
||||
"-rdynamic", // make sure roc_alloc and friends are exposed
|
||||
shared_lib_path.to_str().unwrap(),
|
||||
builtins_host_path,
|
||||
builtins_host_path.to_str().unwrap(),
|
||||
]);
|
||||
} else {
|
||||
zig_cmd.args(["build-obj", "-fPIC"]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue