Netbeans“解决缺少的调试器命令"C++

2023-08-27C/C++开发问题
6

本文介绍了Netbeans“解决缺少的调试器命令"C++的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

每当我尝试调试任何程序(即欢迎消息)时,我都会收到此提示.任何想法如何运行 C++ 程序的调试器?

Whenever I try to debug any program (i.e. a welcome message), I get this prompt. Any ideas how to run the debugger for C++ program?

我使用的是 Macbook Pro OS X El Capitan (10.11.3)

I am using Macbook Pro OS X El Capitan (10.11.3)

推荐答案

对于 Mac OSX 10.5 及更高版本,

For Mac OSX 10.5 and above,

  1. 安装 Homebrew(如果您还没有安装)

  1. Install Homebrew (if you don't have it already)

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  • 安装 GDB

  • Install GDB

    brew install gdb
    

  • 转到 https://sourceware.org/gdb/wiki/BuildingOnDarwin并按照说明对 gdb 二进制文件进行代码签名.

  • Go to https://sourceware.org/gdb/wiki/BuildingOnDarwin and follow the instructions to code sign the gdb binary.

    如果您使用 Sierra,请在终端中运行以下命令

    If you're on Sierra, run the following command in your terminal

    echo "set startup-with-shell off" >> ~/.gdbinit
    

  • 最后,在终端中运行以下命令

  • Finally, run the following comamnd in your terminal

    which gdb
    

  • 将该命令的输出路径(我的是/usr/local/bin/gdb)复制到 Netbeans 的调试器命令框中并开始调试!
  • 这篇关于Netbeans“解决缺少的调试器命令"C++的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

    The End

    相关推荐

    无法访问 C++ std::set 中对象的非常量成员函数
    Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
    2024-08-14 C/C++开发问题
    17

    从 lambda 构造 std::function 参数
    Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
    2024-08-14 C/C++开发问题
    25

    STL BigInt 类实现
    STL BigInt class implementation(STL BigInt 类实现)...
    2024-08-14 C/C++开发问题
    3

    使用 std::atomic 和 std::condition_variable 同步不可靠
    Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
    2024-08-14 C/C++开发问题
    17

    在 STL 中将列表元素移动到末尾
    Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
    2024-08-14 C/C++开发问题
    9

    为什么禁止对存储在 STL 容器中的类重载 operator&()?
    Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
    2024-08-14 C/C++开发问题
    6