gpt4 book ai didi

c - 使用调试器 gdb 时出现未知结束信号

转载 作者:太空狗 更新时间:2023-10-29 16:23:15 25 4
gpt4 key购买 nike

我已经在 Mac OS X 上安装了 GDB,为了测试它是否有效,我使用了以下 C 程序。

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

int main(int argc, char *argv[]) {

int *my_array = (int *) malloc(5 * sizeof(int));
int i;
for (i = 0; i < 1000000; i++) {
my_array[i] = i;
}

free(my_array);

return 0;

}

我编译的时候出错,这是正常的(segmentation fault)

但是,当在编译命令中添加 -g 标志 并在我编译的程序上运行 gdb 时,我在启动命令run

后收到此消息
During startup program terminated with signal ?, Unknown signal.

真不知道是从哪里来的。我添加了一个证书以确保 gdb 在 OS X 上正常工作,但我没有发现任何可以解决此问题的方法。

最佳答案

来自这个答案:https://stackoverflow.com/a/40437725/1060955

This is how I easily fixed the issue. [Update: based on feedback received and yet to be verified, it seems that this solution works with macOS Sierra 10.12 but not with macOS Sierra 10.12.2]

See video instructions here

Quit gdb

Using your text editor e.g. Sublime Text, save a file called “.gdbinit” [Exclude the quotation marks] in your user folder.

In the file add the following: “set startup-with-shell off” [Exclude the quotation marks]

Save the file

gdb should now work

来源

https://stackoverflow.com/a/40437725/1060955

https://discussions.apple.com/thread/7684629?start=0&tstart=0

.gdbinit 位于何处,我该如何编辑它?

https://sourceware.org/gdb/onlinedocs/gdb/Starting.html

关于c - 使用调试器 gdb 时出现未知结束信号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40110435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com