mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Missed a couple of .to_str().unwrap()s
This commit is contained in:
parent
2d83c95d23
commit
16fd39c4f7
2 changed files with 5 additions and 2 deletions
|
@ -155,7 +155,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_file.path(),
|
||||
builtins_host_file.path().to_str().unwrap(),
|
||||
]);
|
||||
} else {
|
||||
zig_cmd.args(["build-obj", "-fPIC"]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue