On Linux/GCC I can use the -rpath flag to change an executables search path for shared libraries without tempering with environment variables.

Can this also be accomplished on Windows? As far as I know, dlls are always searched in the executable's directory and in PATH.

My scenario: I would like to put shared libraries into locations according to their properties (32/64bit/Debug/Release) without taking care of unique names. On Linux, this is easily be done via rpath, but I haven't found any way doing this on Windows yet.

Thanks for any hints!

link|improve this question
feedback

3 Answers

Sadly there is no direct analogue to RPATH. There are a number of alternative possibilities, each of them most likely undesirable to you in its own special way.

Given that you need a different exe for each build flavor anyway to avoid runtime library clashes, as you might guess the easiest thing to do is to put each exe in the same folder as each set of DLLs.

As you also mentioned, the most universal method is to change the PATH variable by using a batch file to bootstrap the exe.

You could instead change the current working directory before running the program to the desired DLL folder.

You can use the function SetDllDirectory or AddDllDirectory inside your exe. This is probably the closest to an RPATH, but only works on WinXP SP1 or later.

If you're willing to alter the file name of each exe flavor, you can use the "App Paths" registry key. Each exe would need a unique filename.

link|improve this answer
feedback

The search order for DLLs in Windows is described on this page on MSDN. If you're using run-time dynamic linking, you can specify the folder when you call LoadLibrary.

link|improve this answer
feedback

"Isolated applications" is a mechanism for embedding an XML manifest that describes the DLL dependencies.

link|improve this answer
This mechanism is only meant for assemblies. This belongs to managed code. – Christian Apr 10 at 12:35
Do you have a reference for that? Everything I've seen around this topic seems to allow native code DLLs just the same. – Adam Mitz Apr 10 at 16:43
Assembly is defined on Wikipedia. MSDN seems to use the term Assembly only in conjunction with the MSI Assemblies‌​. So your referenced article is belonging to an installed application. The rpath information is embedded into the application and does not relay on an installation. Rpath is effective just after linking. – Christian Apr 11 at 12:36
This doesn't match anything I've seen. Wikipedia isn't the authority on how Windows APIs work, MSDN is. I will leave the answer alone, feel free to post your own. – Adam Mitz Apr 12 at 1:13
feedback

Your Answer

 
or
required, but never shown