mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:08:11 +02:00
Handle executable extension for WASI OSes
This commit is contained in:
parent
3874fb7725
commit
39a3f5a678
@ -315,6 +315,7 @@ Const
|
||||
DLLExt = '.dll';
|
||||
AIXSharedLibExt = '.a';
|
||||
ExeExt = '.exe';
|
||||
WasiExeExt = '.wasm';
|
||||
DbgExt = '.dbg';
|
||||
ZipExt = '.zip';
|
||||
FpmkExt = '.fpm';
|
||||
@ -2958,6 +2959,8 @@ function AddProgramExtension(const ExecutableName: string; AOS : TOS): string;
|
||||
begin
|
||||
if AOS in [Go32v2,Win32,Win64,Wince,OS2,EMX,Watcom] then
|
||||
Result:=ExecutableName+ExeExt
|
||||
else if AOS in [wasip1,wasip1threads,wasip2] then
|
||||
Result:=ExecutableName+WasiExeExt
|
||||
else
|
||||
Result:=ExecutableName;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user