libcurl .NET 不想在 Win64 上工作

发布于 2024-08-28 01:43:51 字数 341 浏览 5 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

山色无中 2024-09-04 01:43:51

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.

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