应用程序无法使用 libcurl C++ Windows 7 VS 2010 启动(0xc0150002)[重复]

2024-03-24

可能的重复:
应用程序无法正确初始化(0xc0150002) https://stackoverflow.com/questions/3537429/the-application-failed-to-initialize-properly-0xc0150002

大家好,我按照下面的指南让我的 Visual Studio 2010 与 libcurl 和 Windows 7 一起使用。

Link 1 http://theetrain.ca/tech/installing-curl-using-visual-studio-2010-beginners-guide/ Link 2 http://quantcorner.wordpress.com/2012/04/08/using-libcurl-with-visual-c-2010/

但是我面临上述错误:

The application was unable to start (0xc0150002)

我仔细地按照步骤操作:

A: Setup

Create Empty Project & add in source file provided by libcurl (simple.c)

B:链接你的库

You may try pressing F7, but it won’t work. You need to set up your
linker and what-not. On the toolbar, go to Project>Properties

Go to Configuration Properties>VC++ Directories>Include Directories
and go to <Edit> (click on the drop-down arrow to the right)

Create a new line and browse for your cURL directory. Browse for
cURL>include>curl and then click “OK”

Next, create a new line for Library Directories and navigate for
cURL>lib>Debug and then click “OK”

Lastly, under Configuration Properties>Linker>Input, edit the
Additional Dependencies and create a new line

Browse for cURL>lib>Debug>curllib.lib and paste its source link into
your Additional Dependencies dialogue box

C:尝试示例代码

During run-time, however, there will be errors due to missing DLL files. 
This can be easily fixed by copying and pasting curllib.dll, libeay32.dll, openldap.dll,
and ssleay32.dll from the cURL directory and into your project folder.

所以......按照说明进行操作后,我收到了该错误。任何想法? :) 我见过类似的问题,但没有明确的答案。

调试输出:

'dummy.exe': Loaded 'C:\Users\lyon\Documents\Visual Studio 2010\Projects\dummy\Release\dummy.exe', Symbols loaded.
'dummy.exe': Loaded 'C:\Windows\SysWOW64\ntdll.dll', Cannot find or open the PDB file
'dummy.exe': Loaded 'C:\Windows\SysWOW64\kernel32.dll', Cannot find or open the PDB file
'dummy.exe': Loaded 'C:\Windows\SysWOW64\KernelBase.dll', Cannot find or open the PDB file
'dummy.exe': Loaded 'C:\Users\lyon\Documents\Visual Studio 2010\Projects\dummy\dummy\curllib.dll', Binary was not built with debug information.
The program '[3740] dummy.exe: Native' has exited with code -1072365566 (0xc0150002).

使用 Dependency Walker 就成功了。

http://www.dependencywalker.com/ http://www.dependencywalker.com/

它帮助我查明错误的确切位置,即 libcurl.dll

我做了一些谷歌搜索,发现......

64位解决方案

我所要做的就是将 libcurl.dll 复制到 C:/Windows/SYSWOW64 注意:您必须使用从您下载的包中下载的libcurl.dll,否则会因版本不同而出现错误

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

应用程序无法使用 libcurl C++ Windows 7 VS 2010 启动(0xc0150002)[重复] 的相关文章

随机推荐