From da8ccd64efd0c6763e414939bb2420c2fe66c660 Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Sun, 31 Dec 2023 21:50:18 +0200 Subject: [PATCH] + also write the functype of imported functions in the linker map file --- compiler/ogwasm.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ogwasm.pas b/compiler/ogwasm.pas index 264bc7bb74..a648fc1933 100644 --- a/compiler/ogwasm.pas +++ b/compiler/ogwasm.pas @@ -4108,7 +4108,7 @@ implementation end; newdll:=True; if assigned(exemap) then - exemap.Add(' Importing Function ' + ImportSymbol.Name); + exemap.Add(' Importing Function ' + ImportSymbol.Name + TWasmObjSymbol(exesym.ObjSymbol).LinkingData.FuncType.ToString); end; end; end;