mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
* 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:
parent
0c04e99211
commit
914ee08cd9
@ -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,
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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';
|
||||
|
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user