We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45f7ac7 commit bb952d2Copy full SHA for bb952d2
main.cpp
@@ -154,7 +154,6 @@ int main(int argc, char **argv)
154
for (int i = 1; i < argc; i++)
155
args.append(argv[i]);
156
157
- QCoreApplication app(argc, argv);
158
QStringList defaultArgs;
159
quint16 gdbDebugPort = 0;
160
bool useGDB = false;
@@ -241,6 +240,9 @@ int main(int argc, char **argv)
241
240
return 1;
242
}
243
+ // Create QCoreApplication after parameter parsing to prevent printing evaluation
244
+ // message to terminal before QtCreator has parsed the output.
245
+ QCoreApplication app(argc, argv);
246
Process process;
247
process.setConfig(config);
248
if (gdbDebugPort)
0 commit comments