How to change DLL default load address (MSVC linker)

Sometimes happened that two DLL libraries wants to be loaded in same address. These DLL libraries can be found in “Modules” window with small red exclamation mark. When you need to change this address, you have to update your linker settings adding the /BASE: parameter.

link.exe <other_praams> /BASE:0x11000000

Leave a Reply

Your email address will not be published. Required fields are marked *