diff --git a/compiler/systems/i_wasi.pas b/compiler/systems/i_wasi.pas index 2b58feaf8b..1c3af82d5b 100644 --- a/compiler/systems/i_wasi.pas +++ b/compiler/systems/i_wasi.pas @@ -77,7 +77,7 @@ unit i_wasi; dirsep : '/'; assem : as_wasm32_wabt; assemextern : as_wasm32_wabt; - link : ld_wasi; + link : ld_none; linkextern : ld_wasi; // there's no linker, only object files for WASM ar : ar_none; res : res_none; diff --git a/compiler/systems/i_wasm.pas b/compiler/systems/i_wasm.pas index 31b0c5856e..ca86165837 100644 --- a/compiler/systems/i_wasm.pas +++ b/compiler/systems/i_wasm.pas @@ -77,7 +77,7 @@ unit i_wasm; dirsep : '/'; assem : as_wasm32_wabt; assemextern : as_wasm32_wabt; - link : ld_wasm; + link : ld_none; linkextern : ld_wasm; // there's no linker, only object files for WASM ar : ar_none; res : res_none;