Browse Source

* set exe ext of the WASI target to .wasm

git-svn-id: branches/wasm@46289 -
nickysn 5 years ago
parent
commit
896efa4d77
2 changed files with 2 additions and 2 deletions
  1. 1 1
      compiler/systems.pas
  2. 1 1
      compiler/systems/i_wasm.pas

+ 1 - 1
compiler/systems.pas

@@ -199,7 +199,7 @@ interface
           smartext,
           unitext,
           unitlibext,
-          asmext       : string[4];
+          asmext       : string[5];
           objext       : string[6];
           resext       : string[4];
           resobjext    : string[7];

+ 1 - 1
compiler/systems/i_wasm.pas

@@ -51,7 +51,7 @@ unit i_wasm;
             cpu          : cpu_wasm32;
             unit_env     : '';
             extradefines : '';
-            exeext       : '';
+            exeext       : '.wasm';
             defext       : '.def';
             scriptext    : '.sh';
             smartext     : '.sl';