mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
pick right host object name
This commit is contained in:
parent
51fdd43838
commit
06e5fe8cba
1 changed files with 4 additions and 1 deletions
|
@ -423,7 +423,10 @@ pub fn rebuild_host(
|
||||||
host_input_path.with_file_name(if shared_lib_path.is_some() {
|
host_input_path.with_file_name(if shared_lib_path.is_some() {
|
||||||
"dynhost"
|
"dynhost"
|
||||||
} else {
|
} else {
|
||||||
"host.o"
|
match roc_target::Architecture::from(target.architecture) {
|
||||||
|
roc_target::Architecture::Windows64 => "host.obj",
|
||||||
|
_ => "host.o",
|
||||||
|
}
|
||||||
})
|
})
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue