c++ 未找到文件[已关闭]

dohp0rv5  于 11个月前  发布在  其他
关注(0)|答案(1)|浏览(105)

**已关闭。**此问题需要debugging details。目前不接受回答。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
2天前关闭。
Improve this question
我的c++应用程序无法运行,因为它说“libssl-3-x64. dll”文件未找到。enter image description here
即使我已经手动将dll插入到Windows文件夹中,错误仍然是一样的。我相信这是因为我的系统是64位的,我发现下载的dll是32位的。有没有解决这个问题的方法?

xdyibdwo

xdyibdwo1#

您可以:
1.编译32位应用程序。它将在64位Windows上运行,并使用您下载的32位openssl dll。
1.或者你应该找一个openssl 64位dll
要使您的应用程序工作,将openssl dll放置在您的exe文件所在的目录中就足够了。不需要将其放置在Windows目录中。

相关问题