libcurl .NET 不想在 Win64 上工作
我使用 libcurl.NET 在 C#.NET 上编写了多线程 FTP 上传器。
在我的机器上一切正常,但是当我将应用程序(exe + libcurl.dll + 2 libcurl C# 绑定 DLL)提供给运行 Win64 的朋友时,应用程序崩溃了。
在将异常捕获器添加到整个 Main() 函数后,我能够得到可读的错误消息:“尝试加载格式不正确的程序(来自 HRESULT = 0x8007000b 的异常)”
经过谷歌搜索一段时间后,我发现了一个建议在我的项目设置中启用非托管代码。我已经使用此标志集重新编译了我的应用程序和 LibCurlNet.dll,但它没有帮助。
什么会导致这样的问题?
I wrote multi-threaded FTP uploader on C#.NET using libcurl.NET.
Everything works fine on my machine, but when I give application (exe + libcurl.dll + 2 libcurl C# binding DLLs) to my friend who is running Win64, application crashes.
After adding exception catcher to whole Main() function, I was able to get readable error message: "An attempt was made to load a program with an incorrect format (Exception from HRESULT = 0x8007000b)"
After googling for a while, I found an advice to enable unmanaged code in my project settings. I've recompiled my application and LibCurlNet.dll with this flag set but it did not help.
What can cause such problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
libcurl.NET 库是一个 32 位库,因此它不能被 64 位应用程序使用。您需要重新编译应用程序以面向 x86 平台。这将导致它在 64 位操作系统上的 WOW64 下作为 32 位应用程序运行。
The libcurl.NET library is a 32bit library, so it can't be used by a 64bit application. You need to recompile your application to target the x86 platform. This will cause it to run as a 32bit app under WOW64 on 64bit operating systems.