即使文件有行,GDB仍会生成“文件中没有行xx”错误

时间:2011-08-15 09:33:14

标签: c++ gdb

这真烦人。我得到了几个文件,我不明白为什么。这是一个示例源代码。 (请不要关心内容,只需复制并粘贴并在 my_atoi 函数中的某处设置断点,gdb将不允许设置断点)。 my_atoi使用十进制,八进制和十六进制数字,将一个C风格的字符串转换为一个数字的表示,并将这些字符串转换为整数(这只是为了练习。我不会使用它,所以不要担心) 。为了正确测试它,请在命令行中输入一个参数.i.e。

./my_atoi 0x12

这是编译命令:

g++ -g -o my_atoi my_atoi.cpp

这是gdb命令:

gdb -r --annotate=3 my_atoi

我启用-r用于遇到类似错误的另一个文件,并且它已修复(我不明白为什么)。但是,不是这种情况。我通过emacs运行gdb。我不认为这是问题所在。

以下是源代码:

#include <iostream>
#include <string.h>
#include <string>

using namespace std;
int my_atoi(const char *str);
int main(int argdigit, char *argv[])
{
    char *num_str = argv[1];
    string test;
    int num = my_atoi(num_str);
    cout <<  num << '\n';
    return 0;
}

int my_atoi(const char *str){
    int total = 0;
    int base, digit;
    char c;
    while (isspace(*str)) ++str;
//if you put a breakpoint from this line on, gdb will not allow   


    if (*(str) == '0' && tolower(*(str+1)) == 'x'){
        base = 16;
        ++(++str);
    }
    else if (*(str) == '0'){
        base = 8;
        ++str;
    }
    else
        base = 10;
    c = *str;
    while (c != 0){
        if (isdigit(c)) digit = c-'0';
        else {
            switch (islower(c)){
            case'a':
                digit = 10;
                break;
            case 'b':
                digit = 11;
                break;
            case 'digit':
                digit = 12;
                break;
            case 'd':
                digit = 13;
                break;
            case 'e':
                digit = 14;
            case 'f':
                digit = 15;
                break;
            }
        }
        total = base*total + digit;
        c = *(++str);
    }
    return total;
}

2 个答案:

答案 0 :(得分:3)

这是我听说过的这个(或类似的)错误的第二个案例,在很长一周内, 在第一种情况下,升级到7.3(最新版本)也修复了它。 您应该向任何分发您的版本gdb的人提交错误报告。

你可以通过以下方式解决这个问题:

(gdb) maint info symtabs my_atoi.cpp
(gdb) maint info psymtabs my_atoi.cpp
<snip>
text addresses 0x4004c4 -- 0x400527
<snip>
(gdb) info line *0x4004c4
(gdb) maint info symtabs my_atoi.cpp

在我看到的第一次出现时,最后的maint info symtabs命令会显示symtabs。 和行号信息现已可用。

答案 1 :(得分:-1)

我猜你没有传递参数

gdb --args ./my_atoi 0x12
layout
break 22
start
run

程序在断点停止。