Selaa lähdekoodia

* 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 -

nickysn 5 vuotta sitten
vanhempi
commit
6a1688d45c
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      compiler/systems/i_wasi.pas
  2. 1 1
      compiler/systems/i_wasm.pas

+ 1 - 1
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;

+ 1 - 1
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;