在CodeBlocks中调试时的SIGSEGV

时间:2014-03-18 06:23:58

标签: c++ debugging codeblocks

我在64位机器上运行32位CodeBLocks(10.05)。它一直生成SIGSEGV。这发生在我的Office PC中。但在我的家用电脑(32位和10.05代码块)中没有问题。我正在附加调用栈窗口。 kernel32.dll有什么问题吗?

请注意,为了测试我只写了一行代码。但它仍然产生SIGSEGV。我重新安装了CodeBlocks 2-3次。我的系统有问题吗?我几乎疯了。 :'(

enter image description here

根据要求,我将简单的代码放在这里:

#include <set>
#include <map>
#include <list>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <cctype>
#include <cstdio>
#include <string>
#include <vector>
#include <cassert>
#include <cstdlib>
#include <cstring>
#include <sstream>
#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
    //READ("input.txt");
    //WRITE("output.txt");

    int i, j, k;
    int TC, tc;
    int x0, y0, x1, y1;

    cout << "hi";

    return 0;
}

0 个答案:

没有答案