Issues Tab doesn't display anything at all.
-
Re: No Issues in my issues tab (QT Creator)
Experiencing the same problem in my project on MacOS.
Using lates QtCreator and latest CMake.
Compile output contains warning, error and note messages. But Issues tab is empty.
Any help will be much appreciated. -
Re: No Issues in my issues tab (QT Creator)
Experiencing the same problem in my project on MacOS.
Using lates QtCreator and latest CMake.
Compile output contains warning, error and note messages. But Issues tab is empty.
Any help will be much appreciated.@Mitya said in Issues Tab doesn't display anything at all.:
Compile output contains warning, error and note messages
Why don't you post them?
-
/Users/mitiatristan/Projects/link/twk_sharedbuilds/mac/Qt5/clang_x86_64/lib/QtCore.framework/Headers/qhash.h:157:40: error: call to deleted constructor of 'core::kpl::KnownProduct'
: next(n), h(hash), key(key0), value(value0) {}
^ ~~~~~~
/Users/mitiatristan/Projects/link/twk_sharedbuilds/mac/Qt5/clang_x86_64/lib/QtCore.framework/Headers/qhash.h:544:19: note: in instantiation of member function 'QHashNode<QString, core::kpl::KnownProduct>::QHashNode' requested here
new (newNode) Node(concreteNode->key, concreteNode->value, concreteNode->h, Q_NULLPTR);
^
/Users/mitiatristan/Projects/link/twk_sharedbuilds/mac/Qt5/clang_x86_64/lib/QtCore.framework/Headers/qhash.h:588:37: note: in instantiation of member function 'QHash<QString, core::kpl::KnownProduct>::duplicateNode' requested here
QHashData *x = d->detach_helper(duplicateNode, deleteNode2, sizeof(Node), alignOfNode());
^
/Users/mitiatristan/Projects/link/twk_sharedbuilds/mac/Qt5/clang_x86_64/lib/QtCore.framework/Headers/qhash.h:275:51: note: in instantiation of member function 'QHash<QString, core::kpl::KnownProduct>::detach_helper' requested here
inline void detach() { if (d->ref.isShared()) detach_helper(); }
^
/Users/mitiatristan/Projects/link/twk_sharedbuilds/mac/Qt5/clang_x86_64/lib/QtCore.framework/Headers/qhash.h:453:31: note: in instantiation of member function 'QHash<QString, core::kpl::KnownProduct>::detach' requested here
inline iterator begin() { detach(); return iterator(d->firstNode()); } -
@Mitya said in Issues Tab doesn't display anything at all.:
core::kpl::KnownProduct
Looks like it's not copyable, so you can't put it into a container (here: QHash)
-
@Mitya said in Issues Tab doesn't display anything at all.:
core::kpl::KnownProduct
Looks like it's not copyable, so you can't put it into a container (here: QHash)
@Christian-Ehrlicher Post is not about an error itself. Post is about Issue Tab that doesn't reflect anything. It seams that for some reason QtCreator doesn't parse Compile output.
-
@Christian-Ehrlicher Post is not about an error itself. Post is about Issue Tab that doesn't reflect anything. It seams that for some reason QtCreator doesn't parse Compile output.
It seams that for some reason QtCreator doesn't parse Compile output.
If the output is not red, it is indeed from stdout and therefore not parsed.
It seems something in your toolchain redirects the output to stdout, so you need to find which part is guilty.
Regards
-
@Christian-Ehrlicher Post is not about an error itself. Post is about Issue Tab that doesn't reflect anything. It seams that for some reason QtCreator doesn't parse Compile output.
@Mitya said in Issues Tab doesn't display anything at all.:
@Christian-Ehrlicher Post is not about an error itself. Post is about Issue Tab that doesn't reflect anything. It seams that for some reason QtCreator doesn't parse Compile output.
Tried everything I know. Maybe you a re able to guide me in right direction. I use Xcode 11.4, XCode generator, Apple clang compiler, CMake and QtCreator. What from mentioned could redirect stderr to stdout?
-
@Mitya said in Issues Tab doesn't display anything at all.:
@Christian-Ehrlicher Post is not about an error itself. Post is about Issue Tab that doesn't reflect anything. It seams that for some reason QtCreator doesn't parse Compile output.
Tried everything I know. Maybe you a re able to guide me in right direction. I use Xcode 11.4, XCode generator, Apple clang compiler, CMake and QtCreator. What from mentioned could redirect stderr to stdout?
-
Hi @Mitya,
I'd guess it's a CMake problem
Can you create a qmake example project and see if that works?
Regards
@aha_1980 said in Issues Tab doesn't display anything at all.:
Hi @Mitya,
I'd guess it's a CMake problem
Can you create a qmake example project and see if that works?
Regards
Hi @aha_1980
I had made couple experiments - issue appears only if I use XCode generator. How do you think - Can that be resolved somehow?
-
Hi @Mitya,
I'd guess it's a CMake problem
Can you create a qmake example project and see if that works?
Regards
-
@aha_1980 said in Issues Tab doesn't display anything at all.:
Hi @Mitya,
I'd guess it's a CMake problem
Can you create a qmake example project and see if that works?
Regards
Hi @aha_1980
I had made couple experiments - issue appears only if I use XCode generator. How do you think - Can that be resolved somehow?
-
I don't know. I don't use CMake nor Apple. But it seems the problem is out of scope for Creator and rather a CMake thing?
Regards