Add debuggers

The Qt Creator debugger plugin acts as an interface between the Qt Creator core and external native debuggers such as the GNU Symbolic Debugger (GDB), the Microsoft Console Debugger (CDB), a QML/JavaScript debugger, and the debugger of the low level virtual machine (LLVM) project, LLDB.

The debugger plugin automatically selects a suitable native debugger for each kit from the ones found on your system. To override this choice, select Preferences > Kits.

To add debuggers:

  1. Select Preferences > Kits > Debuggers > Add.

    {Debuggers tab in Kits preferences}

  2. In the Name field, give a descriptive name for the debugger.
  3. In the Path field, specify the path to the debugger binary:
    • For CDB (Windows only), specify the path to the Windows Console Debugger executable, cdb.exe.

      The 32-bit version can only debug 32-bit executables, whereas the 64-bit version can debug both 64-bit and 32-bit executables. For more information, see Debugging Tools for Windows.

    • For GDB, specify the path to the GDB executable. The executable must be built with Python scripting support enabled.
    • For LLDB (experimental), specify the path to the LLDB executable.

    Qt Creator attempts to identify the type and version of the debugger and shows them in the Type and Version fields. In addition, Qt Creator shows the ABI version that will be used on embedded devices in the ABIs field.

  4. In the Working directory field, specify the working directory of the application process. If the application runs locally, the working directory defaults to the build directory. If the application runs remotely on a device, the value depends on the shell or the device. Usually, you can leave this field empty.

Remove debuggers

To remove the selected manually added debugger, select Remove. The debugger disappears from the list when you select Apply. Until then, you can cancel the deletion by clicking Restore.

See also Debugging, Setting Up Debugger, and Troubleshooting Debugger.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.