MinGW-w64字符串数组崩溃

时间:2016-09-12 23:29:16

标签: c++ arrays string crash mingw-w64

如果我尝试编译并运行此

#include <string>

int main()
{
    std::string strs[5];

    return 0;
}

我收到

的错误消息
  

程序入口点ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev无法位于动态链接库(exe的路径)中。

我正在使用mingw-w64 gcc版本6.2.0(i686-posix-dwarf-rev1)并且已经尝试过(i686-posix-sjlj-rev1)。

是否有其他编译器版本没有遇到此错误或我可以对我的代码进行编译以使其编译?

0 个答案:

没有答案