Stopping the debugger when a NaN floating point number is produced(产生 NaN 浮点数时停止调试器)
问题描述
我有一个 C++ 程序.在程序中的某处(难以重现,但可重现)计算会导致浮点蜂设置为 NaN.由于涉及 NaN 的浮点运算会导致 NaN,因此传播速度很快.
I have an C++ program. Somewhere in the program (hard to reproduce, but reproduceable) a caclculation results in a float beeing set to a NaN. Since a floating point operation involving a NaN results in a NaN, this spreads fast.
有什么方法可以设置编译器 (gcc 4.4) 或调试器 (gdb) 在浮点运算导致 NaN 时停止?这将非常有用.
Is there any way I can setup the compiler (gcc 4.4) or the debuger (gdb) to stop when a floating point operation results in a NaN? That would be extremely useful.
谢谢!内森
PS:这可能很重要:我在 ubuntu linux 10.10 下工作.
PS: It might matter: I am working under ubuntu linux 10.10.
推荐答案
您可以启用浮点异常 - 参见 glibc 控制函数 - 当你的 NaN
值产生时你会得到一个 SIGFPE
You could enable floating point exceptions - see glibc Control Functions - then you'll get a SIGFPE
when your NaN
value is produced
这篇关于产生 NaN 浮点数时停止调试器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:产生 NaN 浮点数时停止调试器


基础教程推荐
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 这个宏可以转换成函数吗? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 我有静态或动态 boost 库吗? 2021-01-01