Browse Source

* use as_wasm32_wabt as external assembler, since that's what's more stable. The
binaryen assembler can always be selected by compiling with -Abinaryen

git-svn-id: branches/wasm@46270 -

nickysn 5 years ago
parent
commit
a2a4d5473a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      compiler/systems/i_wasi.pas
  2. 1 1
      compiler/systems/i_wasm.pas

+ 1 - 1
compiler/systems/i_wasi.pas

@@ -76,7 +76,7 @@ unit i_wasi;
             newline      : #10;
             dirsep       : '/';
             assem        : as_wasm32_wabt;
-            assemextern  : as_wasm32_binaryen;
+            assemextern  : as_wasm32_wabt;
             link         : ld_wasi;
             linkextern   : ld_wasi; // there's no linker, only object files for WASM
             ar           : ar_none;

+ 1 - 1
compiler/systems/i_wasm.pas

@@ -76,7 +76,7 @@ unit i_wasm;
             newline      : #10;
             dirsep       : '/';
             assem        : as_wasm32_wabt;
-            assemextern  : as_wasm32_binaryen;
+            assemextern  : as_wasm32_wabt;
             link         : ld_wasm;
             linkextern   : ld_wasm; // there's no linker, only object files for WASM
             ar           : ar_none;