From 6a1688d45c8a991d195d3c0eb70b884aabea8ca7 Mon Sep 17 00:00:00 2001 From: nickysn Date: Wed, 5 Aug 2020 19:30:57 +0000 Subject: [PATCH] * use ld_none for the internal linker for the WASM32 targets, because that's the convention used by FPC for targets, that don't have an internal linker implemented yet git-svn-id: branches/wasm@46271 - --- compiler/systems/i_wasi.pas | 2 +- compiler/systems/i_wasm.pas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;