From a2a4d5473abcac2e027004ca5ffbd8eea3ab8c7e Mon Sep 17 00:00:00 2001 From: nickysn Date: Wed, 5 Aug 2020 19:29:05 +0000 Subject: [PATCH] * 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 - --- 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 c902a11323..2b58feaf8b 100644 --- a/compiler/systems/i_wasi.pas +++ b/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; diff --git a/compiler/systems/i_wasm.pas b/compiler/systems/i_wasm.pas index fdd4573235..31b0c5856e 100644 --- a/compiler/systems/i_wasm.pas +++ b/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;