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

View File

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

View File

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