mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
fixed BUILTINS_HOST_OBJ_PATH not found
This commit is contained in:
parent
0b5b3a8652
commit
d6b62add36
3 changed files with 6 additions and 8 deletions
|
@ -230,7 +230,7 @@ pub fn build_zig_host_native(
|
|||
"build-exe",
|
||||
"-fPIE",
|
||||
shared_lib_path.to_str().unwrap(),
|
||||
bitcode::BUILTINS_HOST_OBJ_PATH,
|
||||
&bitcode::get_builtins_host_obj_path(),
|
||||
]);
|
||||
} else {
|
||||
command.args(&["build-obj", "-fPIC"]);
|
||||
|
|
|
@ -187,7 +187,7 @@ pub fn helper(
|
|||
// With the current method all methods are kept and it adds about 100k to all outputs.
|
||||
&[
|
||||
app_o_file.to_str().unwrap(),
|
||||
bitcode::BUILTINS_HOST_OBJ_PATH,
|
||||
&bitcode::get_builtins_host_obj_path(),
|
||||
],
|
||||
LinkType::Dylib,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue