Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
Qt Creator 3.2.0-rc1
-
507ad11f945b0320fcbce7cac465f0226ba73199
Description
QBS and QtCreator work fine when debugging non-bundled OS X application. With bundled applications debugger doesn't work anymore.
Add a breakpoint to one of the lines in main.cpp and press the Debug button.
LLDB will fail to run.
main.cpp
#include <iostream> using namespace std; int main() { int i = 5; int x = 6; int z = i + x; cout << "Hello World!" << z << endl; return 0; }
DebugIssue.qbs
import qbs CppApplication { type: "application" consoleApplication: true files: "main.cpp" Group { fileTagsFilter: product.type qbs.install: true } }