* 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_win16, { 89 }
system_i8086_embedded, { 90 } system_i8086_embedded, { 90 }
system_arm_aros, { 91 } system_arm_aros, { 91 }
system_wasm_wasm32, { 92 } system_wasm32_wasm, { 92 }
system_sparc64_linux, { 93 } system_sparc64_linux, { 93 }
system_sparc64_solaris, { 94 } system_sparc64_solaris, { 94 }
system_arm_netbsd, { 95 } system_arm_netbsd, { 95 }

View File

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

View File

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

View File

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

View File

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

View File

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