From 896efa4d77de8e5f897f52a528b6ee660a399b7a Mon Sep 17 00:00:00 2001 From: nickysn Date: Thu, 6 Aug 2020 14:33:11 +0000 Subject: [PATCH] * set exe ext of the WASI target to .wasm git-svn-id: branches/wasm@46289 - --- compiler/systems.pas | 2 +- compiler/systems/i_wasm.pas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems.pas b/compiler/systems.pas index 4504555680..2b6267b41d 100644 --- a/compiler/systems.pas +++ b/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]; diff --git a/compiler/systems/i_wasm.pas b/compiler/systems/i_wasm.pas index ca86165837..d6425903fa 100644 --- a/compiler/systems/i_wasm.pas +++ b/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';