无法找到过程入口点 __gxx_personality_v0
编者注: 类似The procedure error point _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_
could not be found in the dynamic link library libstdc++-6.dll
的错误信息>" 具有相同的原因并且适用相同的解决方案.
Editor's Note: Error messages similar to "The procedure error point _ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_
could not be located in the dynamic link library libstdc++-6.dll
" have the same cause and the same solutions apply.
如果我想在 Windows 中运行我的 Irrlicht C++ 控制台应用程序,我会不断收到此错误:
I keep getting this error if I want to run my Irrlicht C++ Console Application in Windows:
在动态链接库libstdc++-6.dll中找不到过程入口点__gxx_personality_v0
我将 CodeBlocks v12.11 与 MinGW 和 Irrlicht v1.8 引擎一起使用.我设置正确.在我的电脑上还有一个安装了 MinGW 的 Qt.会不会有冲突?
I am using CodeBlocks v12.11 with MinGW and the Irrlicht v1.8 engine. I set it up correctly. On my computer there is also a Qt installed with MinGW. Is it possible that there is a conflict?
这是源代码:
#include <irrlicht.h>
using namespace irr;
using namespace core;
using namespace scene;
using namespace video;
using namespace io;
using namespace gui;
int main() {
IrrlichtDevice *device = createDevice( video::EDT_OPENGL);
if (!device)
return 1;
IVideoDriver* driver = device->getVideoDriver();
ISceneManager* smgr = device->getSceneManager();
IGUIEnvironment* guienv = device->getGUIEnvironment();
guienv->addStaticText(L"Hello World", core::recti(10, 10, 100, 30));
device->setWindowCaption(L"Hello World! - Irrlicht Engine Demo");
while(device->run()) {
driver->beginScene(true, true, SColor(250, 190, 1, 2));
smgr->drawAll();
guienv->drawAll();
driver->endScene();
}
device->drop();
return 0;
}
我将编译器配置为 C:CodeBlocksMinGW
.除了 make.exe
之外,每个文件(设置中都有显示)都位于 bin
下.正常吗?
I configured the Compiler to C:CodeBlocksMinGW
.
Every file (there are some shown in the Settings) is located under bin
, except make.exe
. Is that normal?
自动检测"按钮还建议上述路径.
The Auto-detect button also suggests the path above.
推荐答案
我也遇到了这个问题.这为我修复了它:
I had this problem as well. This fixed it for me:
- 转到您的 MinGW 文件夹(应该是 C:MinGW)
- 打开 bin 文件夹.
- 应该有一个名为 libstdc++-6.dll 的文件
- 将其复制到与可执行文件相同的目录中.
那应该可以...
相关文章