Qt Creator breakpoint won't stop at el capitan

The last time I used Qt Creator, it still used gdb (not lldb), and it worked great before switching to El Capitan.

Has anyone been able to debug using Qt Creator 3.4.2 and Qt 5.5.0 on El Capitan? Can someone please give me any instructions on how to properly configure it, since mine doesn't even stop at the breakpoint?

+4
source share
3 answers

I had the same problem, and clicking the Enable QML button in the debugger settings (from Projects> Execution Options) seems to make the breakpoints work again.

, , QML , , , . lldb, gdb.

0

QT5.6.2 macOS 10.11.6, , , , :

  • , brew uninstal qt (, )
  • MaintenanceTool.app, . QtSDK Mac
  • Qt
0

This is just a blind guess, I had the same problem. I solved it with the following .pro configuration:

CONFIG -= app_bundle

Debugging does not seem to work inside the package.

0
source

Source: https://habr.com/ru/post/1611496/


All Articles