Reputation: 285
I have a VC++ dll library which is built (with Visual Studio 2003) on Windows XP machines ( a US-English PC and a German PC). The source code is the same and does not have any language specific code. The Release version of the dll built on the German PC is approx 30 MB whereas the dll built on the US-English PC is approx 7 MB.
What could be the reason for this? Is this normal?
Upvotes: 0
Views: 1011
Reputation: 6578
Not a lot of information to go on. If I were to take a guess, maybe you are static linking a different set of libs perhaps.
Use "dumpbin" on both dlls and see what is different.
Upvotes: 1