1

我的程序正在经历一个无限循环,我试图找出原因。(这不是我要问的)。我通常会去 GDB 找出问题所在,但实际上在我的程序开始时,它总是因这条消息而崩溃。

__strcmp_ia32 () 在 ../sysdeps/i386/i686/multiarch/../strcmp.S:34

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

//Prototypes and linked lists here

int debugMode(int argc, char** argv)
{
    if(strcmp(argv[argc-1], "-d") == 0) // GDB stops right here.
       return 1;

    else
        return 0;
}

int main(int argc, char** argv)
{
    int debug, integer;
    char choice;
    node *head = NULL;
    node *current;

    debug = debugMode(argc, argv);
    // stuff here
}

请记住,我确实有一个函数原型。谢谢你的帮助。

编辑:顺便说一句,我没有发送任何论据。我正在使用重定向来找出导致我的程序执行无限循环的原因。

4

1 回答 1

0

不断与此消息崩溃。

__strcmp_ia32 () at ../sysdeps/i386/i686/multiarch/../strcmp.S:34

您的 glibc 版本有这个(最近修复的)错误: http: //sourceware.org/bugzilla/show_bug.cgi ?id=13786

(注意:sourceware.org 本周因硬件升级而关闭,如果您得到“无路可走”,请稍后再试。)

于 2013-03-19T14:15:17.503 回答