restore creation of the libapp.o file

This commit is contained in:
Folkert 2023-03-08 19:43:34 +01:00
parent 69b2e03a04
commit 938f7172dd
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
2 changed files with 15 additions and 4 deletions

View file

@ -1083,7 +1083,10 @@ fn build_and_preprocess_host_lowlevel(
preprocessed_host_path: &Path,
stub_dll_symbols: &[String],
) {
let stub_lib = roc_linker::generate_stub_lib_from_loaded(target, platform_main_roc);
let stub_lib =
roc_linker::generate_stub_lib_from_loaded(target, platform_main_roc, stub_dll_symbols);
debug_assert!(stub_lib.exists());
rebuild_host(opt_level, target, platform_main_roc, Some(&stub_lib));