Hello, I am interested in reducing the file size of my application. It is a MFC/C++ application built with MVC++ in Visual Studio 2008. UPX does a good job of reducing the final exe to about 40% of its original size but I would like to reduce it more.
MFC must be statically linked in this project.
I have tried some methods outlined in this question: reduce-windows-executable-size. Specifically applying different settings to the compiler/linker.
I believe i can reduce the size further by having a look at the 'cost' of including certain headers in the project.
Any tip on how to go about this, maybe a tool which could analyse my code for me? Thanks