VS2015 : The application was unable to start correctly (0xc000007b)

后端 未结 2 463
清酒与你
清酒与你 2021-01-02 23:12

I wrote a code on Visual studio 2015 for a windows 10 PC. The application is mainly focused on UDP communication and I use the boost libraries. It works perfectly but when I

相关标签:
2条回答
  • 2021-01-02 23:48

    0xc000007b is error when you try to use x64 dlls in x32 application or other way around, so you probably copied wrong dlls. Rebuild fixed this, as it prepared new dlls.

    0 讨论(0)
  • 2021-01-02 23:48

    win7_64 visual studio 2015, 0xc000007b When I was programming C++ code in the visual studio 2015, it threw the error:0x000007b, and I have tried three kinds of solutions; 1.Installing Direct X 2.Installing VC C++ 2015 libraries 3.Making sure the DLL is consistent with the OS(and I think this is relevant to my problem) ANd my solution will show below: enter image description here

    and I changed the [[[Debug]]] into [[[X64]]], then, it works, I believe that because some dlls are not consistent with the platform, so if I changed the Debug platform, We will get the correct result.The prerequisite:must having installed all dlls under the X64 system.

    0 讨论(0)
提交回复
热议问题