Cannot start QtCreator debugger since upgrading Xcode to version 6

Xcode has updated itself to version 6, and now I can not start QtCreator in debug mode. Does anyone know how to solve this?

+5
source share
2 answers

This is a known bug in Qt Creator . The workaround is simple: in Window-> Views, display the debugger command log, then start a debugging session, wait a bit for it to get stuck, and press Enter from the command line in the debugger command log.

+10
source

You can try this patch created for LLDB 320.x in Xcode 6.01

git fetch https://codereview.qt-project.org/qt-creator/qt-creator refs/changes/16/95516/2 && git checkout FETCH_HEAD 
+1
source

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


All Articles