i have tested it following small source and showing cutting off unused procedures isnt supported or does not work

A feature like this would be very usefull, because i have some include files and its sad to compile the complete includefile to the exe, when using only one small procedure from it!
Code: Select all
Procedure Temp1()
UseJPEGImageDecoder()
UseJPEGImageEncoder()
EndProcedure
Procedure Temp2()
UsePNGImageDecoder()
UsePNGImageEncoder()
EndProcedure
Procedure Temp3()
UseTGAImageDecoder()
UseTIFFImageDecoder()
EndProcedure
Procedure Test()
MessageRequester("Procedure Compiling Test","Linking unused Procedures?",0)
EndProcedure
Test()
End