* renamed as_wasm_binaryen -> as_wasm32_binaryen and as_wasm_wabt -> as_wasm32_wabt

git-svn-id: branches/wasm@46264 -
This commit is contained in:
nickysn 2020-08-05 16:13:56 +00:00
parent 0c04e99211
commit 914ee08cd9
5 changed files with 8 additions and 8 deletions

View File

@ -254,7 +254,7 @@
,as_solaris_as
,as_m68k_vasm
,as_m68k_as_aout
,as_wasm_binaryen
,as_wasm32_binaryen
,as_powerpc_gas_legacy { for systems with very old GAS versions only, which don't support eg. named sections }
,as_clang_llvm
,as_clang_gas { machine code assembler in gas style assembled by clang }
@ -262,7 +262,7 @@
,as_sdcc_sdasz80
,as_z80_vasm
,as_z80_rel
,as_wasm_wabt
,as_wasm32_wabt
);
tlink = (ld_none,

View File

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

View File

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

View File

@ -586,7 +586,7 @@ implementation
const
as_wasm_binaryen_info : tasminfo =
(
id : as_wasm_binaryen;
id : as_wasm32_binaryen;
idtxt : 'Binaryen';
asmbin : 'wasm-as';
asmcmd : '$ASM $EXTRAOPT';

View File

@ -1078,7 +1078,7 @@ implementation
const
as_wasm_wabt_info : tasminfo =
(
id : as_wasm_wabt;
id : as_wasm32_wabt;
idtxt : 'Wabt';
asmbin : 'wasa';
asmcmd : '-r --no-canonicalize-leb128s -o $OBJ $EXTRAOPT $ASM';