* 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 -
This commit is contained in:
nickysn 2020-08-05 19:30:57 +00:00
parent a2a4d5473a
commit 6a1688d45c
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;