Fixing Segmentation faults in C++(修复 C++ 中的分段错误)
问题描述
我正在为 Windows 和 Unix 编写一个跨平台的 C++ 程序.在 Window 端,代码将编译和执行没有问题.在 Unix 端,它会编译,但是当我尝试运行它时,出现分段错误.我最初的预感是指针有问题.
I am writing a cross-platform C++ program for Windows and Unix. On the Window side, the code will compile and execute no problem. On the Unix side, it will compile however when I try to run it, I get a segmentation fault. My initial hunch is that there is a problem with pointers.
找到和修复分段错误的好方法是什么?
推荐答案
使用
-g编译您的应用程序,然后您将在二进制文件中获得调试符号.
Compile your application with
-g, then you'll have debug symbols in the binary file.
使用 gdb 打开 gdb 控制台.
Use gdb to open the gdb console.
使用 file 并将您的应用程序的二进制文件传递给控制台.
Use file and pass it your application's binary file in the console.
使用 run 并传入您的应用程序启动所需的任何参数.
Use run and pass in any arguments your application needs to start.
做一些导致分段错误的事情.
在 gdb 控制台中键入 bt 以获取分段错误的堆栈跟踪.
Type bt in the gdb console to get a stack trace of the Segmentation Fault.
这篇关于修复 C++ 中的分段错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:修复 C++ 中的分段错误
基础教程推荐
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
