可能重复:
The application failed to initialize properly (0xc0150002)
大家好,所以我按照下面的指南让我的Visual Studio 2010与libcurl& Windows 7。
但是我面临上述错误:
The application was unable to start (0xc0150002)
我仔细地遵循了步骤:
A:设置
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).
答案 0 :(得分:0)
使用Dependency Walker诀窍。
http://www.dependencywalker.com/
它帮助我查明了我的错误的确切位置,即libcurl.dll
我做了一点谷歌搜索,发现了......
64位解决方案
我所要做的就是将libcurl.dll复制到C:/ Windows / SYSWOW64中 注意:您必须使用从下载的软件包下载的libcurl.dll,否则您将因版本不同而出现错误