() Cannot find bounds of current function 其实并不是崩了,只是gdb找不到目前在哪一行而已。为了验证,输入l命令打印附近的代码 (gdb) n Cannot find bounds of current function (gdb) l221unsignedlongi;222intret =0;223224while(a *5< (1<< max_bits_a)) {225a = a *5;226++thread_num;227}22...
Cannot find bounds of current function 看起来像是gdb找不到应用程序的调试符号,检查编译选项已经添加了调试相关选项。 使用file命令检查加载的文件: $ file httpd_sequential httpd_sequential: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripped 编译应用程序的gcc与调...
Cannot find bounds of current function是找不到当前函数的界。1、gdb找不到应用程序的调试符号,检查编译选项已经添加了调试相关选项。使用file命令检查加载的文件:$ file httpd_sequential httpd_sequential: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripp...
() Cannot find bounds of current function 其实并不是崩了,只是gdb找不到目前在哪一行而已。为了验证,输入l命令打印附近的代码 (gdb) n Cannot find bounds of current function (gdb) l 221 unsigned long i; 222 int ret = 0; 223 224 while (a * 5 < (1 << max_bits_a)) {...
1、gdb找不到应用程序的调试符号,检查编译选项已经添加了调试相关选项。使用file命令检查加载的文件:file httpd_sequential httpd_sequential: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripped 2、中英文互译:找不到当前函数的界。3、解决办法:编译应用...