本文介绍了代码执行无法继续,因为找不到libquickmail-0.dll?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在寻找一种快速简便的方法来自动将文件发送到gmail,以便在多台远程计算机上进行调试.但是,显然我存在无法解决的链接问题.

I was looking for a quick and easy way to automatically send a file to my gmail for debugging purposes on multiple remote machines. However I am apparently having linking issues which I can't seem to solve.

我下载了 libquick 的win64 zip文件,IDE是CodeBlocks,编译目标是x64,在64位Windows 10上运行.

I downloaded the win64 zip file of libquick, IDE is CodeBlocks, compile target is x64 and running on 64-bit Windows 10.

zip文件夹中有10个文件,位于lib/include/bin中.他们是

There were 10 files that came in the zip folder, in lib/include/bin. They were

bin> libquickmail-0.dlllibquickmaillight-0.dllquickmaillight.exe.

包括> quickmail.h.

lib> libquickmail.alibquickmail.dll.alibquickmail.lalibquickmaillight.alibquickmaillight.dll.alibquickmaillight.la.

lib > libquickmail.a, libquickmail.dll.a, libquickmail.la, libquickmaillight.a, libquickmaillight.dll.a, libquickmaillight.la.

我链接到所有.a/.dll.a/.la.dll文件,它仍然给我这个错误:Code execution cannot proceed because libquickmail-0.dll was not found

I linked to all of the .a/.dll.a/.la and .dll files and it still gives me this error: Code execution cannot proceed because libquickmail-0.dll was not found

我不知道问题出在哪里,我很愿意接受想法.谢谢您的时间.

I have no idea what the problem is and am very open to ideas. Thank you for your time.

推荐答案

或者将libquickmail-0.dll复制到链接的可执行文件所在的目录中,或者将libquickmail bin目录添加到您的路径中.这将使Windows能够找到运行该可执行文件的DLL.

Either copy the libquickmail-0.dll to the same directory as your linked executable or add the libquickmail bin directory to your path. This will allow Windows to find the DLL to run the executable.

这篇关于代码执行无法继续,因为找不到libquickmail-0.dll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 10:56