Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt Creator and other tools
  4. qt-apps-qmllive

qt-apps-qmllive

Scheduled Pinned Locked Moved Solved Qt Creator and other tools
9 Posts 2 Posters 1.2k Views
  • 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.
  • ODБOïO Offline
    ODБOïO Offline
    ODБOï
    wrote on last edited by
    #1

    Hello,

    2 or 3 weeks ago i compiled qmllive and it was working correctly. https://github.com/qtproject/qt-apps-qmllive/tree/5.13

    Today i tryed to run it, but got error "Qt5Core.dll is missing" ..,
    i deleted everything in the build directory and try to rebuild

    now I use Qt5.13.0 / mingw73_64, i'm able to build qmllive from command line :

    git clone http://code.qt.io/qt-apps/qmllive.git
    cd qt-apps-qmllive
    git checkout -b 5.13 origin/5.13
    mkdir build && cd build
    qmake..
    mingw32-make install
    

    but get error when i try to run the executable :
    Entry Point _ZdaPvy Not Found not found in libstdc++-6.dll

    Does someone have an idea on what the problem is please ?

    jsulmJ 1 Reply Last reply
    0
    • ODБOïO ODБOï

      Hello,

      2 or 3 weeks ago i compiled qmllive and it was working correctly. https://github.com/qtproject/qt-apps-qmllive/tree/5.13

      Today i tryed to run it, but got error "Qt5Core.dll is missing" ..,
      i deleted everything in the build directory and try to rebuild

      now I use Qt5.13.0 / mingw73_64, i'm able to build qmllive from command line :

      git clone http://code.qt.io/qt-apps/qmllive.git
      cd qt-apps-qmllive
      git checkout -b 5.13 origin/5.13
      mkdir build && cd build
      qmake..
      mingw32-make install
      

      but get error when i try to run the executable :
      Entry Point _ZdaPvy Not Found not found in libstdc++-6.dll

      Does someone have an idea on what the problem is please ?

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

      @LeLev Do you have more than one MinGW installation on your system?

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

      ODБOïO 1 Reply Last reply
      1
      • jsulmJ jsulm

        @LeLev Do you have more than one MinGW installation on your system?

        ODБOïO Offline
        ODБOïO Offline
        ODБOï
        wrote on last edited by
        #3

        @jsulm hi,
        yes i have more than one minGW but i use :

        qmake.exe in \Qt\5.13.0\mingw73_64\bin
        and
        mingw32-make in \Qt\Tools\mingw730_64\bin

        jsulmJ 1 Reply Last reply
        0
        • ODБOïO ODБOï

          @jsulm hi,
          yes i have more than one minGW but i use :

          qmake.exe in \Qt\5.13.0\mingw73_64\bin
          and
          mingw32-make in \Qt\Tools\mingw730_64\bin

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

          @LeLev The problem is probably that when you start your app the system loads libstdc++ from the wrong MinGW. Did you add that other MinGW to your PATH?

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

          ODБOïO 1 Reply Last reply
          1
          • jsulmJ jsulm

            @LeLev The problem is probably that when you start your app the system loads libstdc++ from the wrong MinGW. Did you add that other MinGW to your PATH?

            ODБOïO Offline
            ODБOïO Offline
            ODБOï
            wrote on last edited by
            #5

            @jsulm i only have this 2 in my PATH
            C:\Qt\5.13.0\mingw73_64\bin;
            C:\Qt\Tools\mingw730_64\bin;

            jsulmJ 1 Reply Last reply
            0
            • ODБOïO ODБOï

              @jsulm i only have this 2 in my PATH
              C:\Qt\5.13.0\mingw73_64\bin;
              C:\Qt\Tools\mingw730_64\bin;

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

              @LeLev Use Dependency Walker tool to check which libs are used

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

              ODБOïO 1 Reply Last reply
              1
              • jsulmJ jsulm

                @LeLev Use Dependency Walker tool to check which libs are used

                ODБOïO Offline
                ODБOïO Offline
                ODБOï
                wrote on last edited by
                #7

                @jsulm thank you
                indeed it looks like you are right : it is using libstdc++ from my gstreamer install dir...
                Could you please tell me how to force right libs to be used ?

                @LeLev said in qt-apps-qmllive:

                @jsulm i only have this 2 in my PATH
                C:\Qt\5.13.0\mingw73_64\bin;
                C:\Qt\Tools\mingw730_64\bin;

                i have this in my PATH > C:\gstreamer\1.0\x86_64\

                jsulmJ 1 Reply Last reply
                0
                • ODБOïO ODБOï

                  @jsulm thank you
                  indeed it looks like you are right : it is using libstdc++ from my gstreamer install dir...
                  Could you please tell me how to force right libs to be used ?

                  @LeLev said in qt-apps-qmllive:

                  @jsulm i only have this 2 in my PATH
                  C:\Qt\5.13.0\mingw73_64\bin;
                  C:\Qt\Tools\mingw730_64\bin;

                  i have this in my PATH > C:\gstreamer\1.0\x86_64\

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

                  @LeLev You could deploy the app https://doc.qt.io/qt-5/windows-deployment.html
                  Or as temporary solution set PATH before calling your app in a batch script. Add the correct MinGW directory at the beginning of your PATH.

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

                  ODБOïO 1 Reply Last reply
                  1
                  • jsulmJ jsulm

                    @LeLev You could deploy the app https://doc.qt.io/qt-5/windows-deployment.html
                    Or as temporary solution set PATH before calling your app in a batch script. Add the correct MinGW directory at the beginning of your PATH.

                    ODБOïO Offline
                    ODБOïO Offline
                    ODБOï
                    wrote on last edited by
                    #9

                    @jsulm thank you so much

                    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