From 34f5b61c3bbb8abcd1c1e87b4f4b07b13bd0e703 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Thu, 21 Nov 2024 16:20:05 +1100 Subject: [PATCH] restore --no-link build pipeline --- crates/compiler/build/src/program.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compiler/build/src/program.rs b/crates/compiler/build/src/program.rs index 57b5045d52..23f7a65013 100644 --- a/crates/compiler/build/src/program.rs +++ b/crates/compiler/build/src/program.rs @@ -872,7 +872,7 @@ fn build_loaded_file<'a>( let built_host_opt = // Not sure if this is correct for all calls with LinkType::Dylib... - if link_type == LinkType::Dylib || target == Target::Wasm32 { + if link_type == LinkType::None || link_type == LinkType::Dylib || target == Target::Wasm32 { BuiltHostOpt::None } else { let prebuilt_host = determine_built_host_path(&platform_main_roc_path, target, build_host_requested, link_type, linking_strategy, suppress_build_host_warning);