设置 win32 控制台应用程序的库路径

发布于 2024-07-15 18:39:26 字数 171 浏览 6 评论 0原文

当我尝试执行简单的“HelloWorld”win32 控制台应用程序时,出现“找不到 dll:重新启动应用程序可能会解决问题”错误。 我知道 .dll 的位置。 从命令提示符执行 .exe 时如何指定其位置?

PS:将.dll复制到.exe的当前目录似乎可以解决问题,但这种方法不适合这种情况。

I am getting "dll not found:restarting the application may fix the problem" error when i try to execute a simple "HelloWorld" win32 console application.
I know the location of the .dll.
How to specify its location when executing the .exe from command prompt?

PS: copying the .dll to the .exe's current dir seems to solve the problem, but this approach is not suitable in this case.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

岁月如刀 2024-07-22 18:39:26

DLL 加载发生在 Windows 管道的深处。

如果在与应用程序相同的目录中找不到 DLL,则会自动扫描 PATH 以查找该目录。

因此,解决问题的最简单方法是将包含 DLL 的目录添加到您的 PATH 中。 根据代码需要加载 DLL 的时间,您可以(暂时)从“HelloWorld”应用程序内部修改 PATH。

DLL loading happens deep in the plumbing of windows.

If the DLL is not found in the same directory as the application, the PATH is automatically scanned in order to find the directory.

So, the simplest answer to your problem is to add the directory containing the DLL to your PATH. Depending on when the DLL needs to be loaded by your code, you may be able to (temporarily) modify the PATH from inside your "HelloWorld" application.

左耳近心 2024-07-22 18:39:26

LoadLibraryEx 的文档有一些关于如何进行的讨论Windows 搜索您的 dll。 如果您可以构造 DLL 的完整路径或使用 SetDllDirectory 函数将目录添加到搜索路径。

The documentation for LoadLibraryEx has some discussion on how Windows searches for your dll. You might try using the LOAD_WITH_ALTERED_SEARCH_PATH flag if you can construct a full path to your DLL or use the SetDllDirectory function to add a directory to the search path.

戏舞 2024-07-22 18:39:26

要手动将您的路径永久添加到 Windows PATH(永久=直到您删除它),请右键单击我的电脑>属性>高级>环境变量>系统变量>路径>编辑>变量值,添加一个分号(这意味着“此外之前的所有内容”)并粘贴 dll 的完整路径。

每次在当前目录中找不到某些内容时,Windows 都会搜索该路径。

To manually, permanently add your path to Windows PATH (permanently = until you remove it), right click My Computer>Properties>Advanced>Environment Variables>System Variables>Path>Edit>Variable Value, add a semicolon (which means "in addition to all before") and paste the full path of your dll.

Windows will search the path every time it can't find something in the current directory.

长安忆 2024-07-22 18:39:26

来自: http://msdn.microsoft.com/en-us/library/7d83bc18 .aspx

对于隐式和显式链接,Windows 首先搜索
“已知 DLL”,例如 Kernel32.dll 和 User32.dll。 那么Windows
按以下顺序搜索 DLL:

  1. 当前进程的可执行模块所在目录。

  2. 当前目录。

  3. Windows 系统目录。 GetSystemDirectory 函数检索该目录的路径。

  4. Windows 目录。 GetWindowsDirectory 函数检索此目录的路径。

  5. PATH 环境变量中列出的目录。

From: http://msdn.microsoft.com/en-us/library/7d83bc18.aspx

With both implicit and explicit linking, Windows first searches for
"known DLLs", such as Kernel32.dll and User32.dll. Windows then
searches for the DLLs in the following sequence:

  1. The directory where the executable module for the current process is located.

  2. The current directory.

  3. The Windows system directory. The GetSystemDirectory function retrieves the path of this directory.

  4. The Windows directory. The GetWindowsDirectory function retrieves the path of this directory.

  5. The directories listed in the PATH environment variable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文