* system identifier system_wasm32_wasm renamed system_wasm32_embedded

git-svn-id: branches/wasm@48362 -
This commit is contained in:
nickysn 2021-01-24 01:01:39 +00:00
parent b865995339
commit 807c743e35
8 changed files with 9 additions and 9 deletions

View File

@ -558,7 +558,7 @@ implementation
writer.AsmWrite('.section ');
end;
system_wasm32_wasi,
system_wasm32_wasm:
system_wasm32_embedded:
begin
writer.AsmWrite('.section ');
end

View File

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

View File

@ -294,7 +294,7 @@ interface
systems_darwin = systems_ios + systems_iphonesym + systems_macosx;
{ all WebAssembly systems }
systems_wasm = [system_wasm32_wasm,system_wasm32_wasi];
systems_wasm = [system_wasm32_embedded,system_wasm32_wasi];
{all solaris systems }
systems_solaris = [system_sparc_solaris, system_i386_solaris,

View File

@ -42,7 +42,7 @@ unit i_wasm;
system_wasm_info : tsysteminfo =
(
system : system_wasm32_wasm;
system : system_wasm32_embedded;
name : 'WebAssembly';
shortname : 'Wasm';
flags : [tf_under_development,tf_needs_symbol_size,tf_needs_symbol_type,

View File

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

View File

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

View File

@ -314,7 +314,7 @@ implementation
idtxt : 'LLVM-MC';
asmbin : 'llvm-mc';
asmcmd : '--assemble --arch=wasm32 -mattr=+sign-ext --filetype=obj -o $OBJ $EXTRAOPT $ASM';
supported_targets : [system_wasm32_wasm,system_wasm32_wasi];
supported_targets : [system_wasm32_embedded,system_wasm32_wasi];
flags : [af_smartlink_sections];
labelprefix : '.L';
labelmaxlen : -1;

View File

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