* system_wasm_wasm32 renamed system_wasm32_wasm

git-svn-id: branches/wasm@46256 -
This commit is contained in:
nickysn 2020-08-05 14:32:41 +00:00
parent a00110f6e0
commit 4a74238a0d
6 changed files with 7 additions and 7 deletions

View File

@ -181,7 +181,7 @@
system_i8086_win16, { 89 }
system_i8086_embedded, { 90 }
system_arm_aros, { 91 }
system_wasm_wasm32, { 92 }
system_wasm32_wasm, { 92 }
system_sparc64_linux, { 93 }
system_sparc64_solaris, { 94 }
system_arm_netbsd, { 95 }

View File

@ -1138,7 +1138,7 @@ begin
{$endif aarch64}
{$ifdef wasm}
default_target(system_wasm_wasm32);
default_target(system_wasm32_wasm);
{$endif wasm}
{$ifdef z80}

View File

@ -42,7 +42,7 @@ unit i_wasm;
system_wasm_info : tsysteminfo =
(
system : system_wasm_wasm32;
system : system_wasm32_wasm;
name : 'WebAssembly';
shortname : 'Wasm';
flags : [tf_files_case_sensitive,tf_no_generic_stackcheck,

View File

@ -159,8 +159,8 @@ end;
initialization
RegisterTarget(system_wasm_info);
RegisterImport(system_wasm_wasm32, timportlibwasm);
RegisterExport(system_wasm_wasm32, texportlibwasm);
RegisterImport(system_wasm32_wasm, timportlibwasm);
RegisterExport(system_wasm32_wasm, texportlibwasm);
RegisterLinker(ld_wasm, tlinkerwasm);
end.

View File

@ -590,7 +590,7 @@ implementation
idtxt : 'Binaryen';
asmbin : 'wasm-as';
asmcmd : '$ASM $EXTRAOPT';
supported_targets : [system_wasm_wasm32];
supported_targets : [system_wasm32_wasm];
flags : [];
labelprefix : 'L';
labelmaxlen : -1;

View File

@ -1082,7 +1082,7 @@ implementation
idtxt : 'Wabt';
asmbin : 'wasa';
asmcmd : '-r --no-canonicalize-leb128s -o $OBJ $EXTRAOPT $ASM';
supported_targets : [system_wasm_wasm32];
supported_targets : [system_wasm32_wasm];
flags : [];
labelprefix : 'L';
labelmaxlen : -1;