Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Issues Tab doesn't display anything at all.
Forum Updated to NodeBB v4.3 + New Features

Issues Tab doesn't display anything at all.

Scheduled Pinned Locked Moved Unsolved General and Desktop
14 Posts 4 Posters 1.2k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Mitya
    wrote on last edited by
    #1

    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.

    jsulmJ 1 Reply Last reply
    0
    • M Mitya

      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.

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @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?

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      2
      • M Offline
        M Offline
        Mitya
        wrote on last edited by
        #3

        /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()); }

        1 Reply Last reply
        0
        • Christian EhrlicherC Offline
          Christian EhrlicherC Offline
          Christian Ehrlicher
          Lifetime Qt Champion
          wrote on last edited by
          #4

          @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)

          Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
          Visit the Qt Academy at https://academy.qt.io/catalog

          M 1 Reply Last reply
          1
          • M Offline
            M Offline
            Mitya
            wrote on last edited by
            #5

            And the issues tab is totally empty. I had checked the same error in clearly new project - the same behavior. The only thing is that messages in Compile output are all grey colored. That means that that os not stderr, if I'm not mistaken.

            1 Reply Last reply
            1
            • Christian EhrlicherC Christian Ehrlicher

              @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)

              M Offline
              M Offline
              Mitya
              wrote on last edited by
              #6

              @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.

              aha_1980A M 2 Replies Last reply
              0
              • M Mitya

                @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.

                aha_1980A Offline
                aha_1980A Offline
                aha_1980
                Lifetime Qt Champion
                wrote on last edited by
                #7

                @Mitya

                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

                Qt has to stay free or it will die.

                1 Reply Last reply
                1
                • M Mitya

                  @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.

                  M Offline
                  M Offline
                  Mitya
                  wrote on last edited by
                  #8

                  @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?

                  aha_1980A 1 Reply Last reply
                  0
                  • M Mitya

                    @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?

                    aha_1980A Offline
                    aha_1980A Offline
                    aha_1980
                    Lifetime Qt Champion
                    wrote on last edited by
                    #9

                    Hi @Mitya,

                    I'd guess it's a CMake problem

                    Can you create a qmake example project and see if that works?

                    Regards

                    Qt has to stay free or it will die.

                    M 2 Replies Last reply
                    0
                    • aha_1980A aha_1980

                      Hi @Mitya,

                      I'd guess it's a CMake problem

                      Can you create a qmake example project and see if that works?

                      Regards

                      M Offline
                      M Offline
                      Mitya
                      wrote on last edited by
                      #10

                      @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?

                      aha_1980A 1 Reply Last reply
                      0
                      • M Offline
                        M Offline
                        Mitya
                        wrote on last edited by
                        #11
                        This post is deleted!
                        1 Reply Last reply
                        0
                        • aha_1980A aha_1980

                          Hi @Mitya,

                          I'd guess it's a CMake problem

                          Can you create a qmake example project and see if that works?

                          Regards

                          M Offline
                          M Offline
                          Mitya
                          wrote on last edited by
                          #12

                          @aha_1980
                          If you had read my previous post - ignore it please. Problem is not solved.

                          1 Reply Last reply
                          0
                          • M Mitya

                            @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?

                            aha_1980A Offline
                            aha_1980A Offline
                            aha_1980
                            Lifetime Qt Champion
                            wrote on last edited by
                            #13

                            @Mitya

                            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

                            Qt has to stay free or it will die.

                            M 1 Reply Last reply
                            0
                            • aha_1980A aha_1980

                              @Mitya

                              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

                              M Offline
                              M Offline
                              Mitya
                              wrote on last edited by
                              #14

                              @aha_1980
                              I think you are right. Nevertheless I was hoping you may be aware)))

                              1 Reply Last reply
                              0

                              • Login

                              • Login or register to search.
                              • First post
                                Last post
                              0
                              • Categories
                              • Recent
                              • Tags
                              • Popular
                              • Users
                              • Groups
                              • Search
                              • Get Qt Extensions
                              • Unsolved