Results 1 to 3 of 3

Thread: Version Upgrade from Qt 5.2.1 to Qt 5.5.1 caused heavy performance drop

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Aug 2013
    Posts
    3
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows Android

    Thumbs down Version Upgrade from Qt 5.2.1 to Qt 5.5.1 caused heavy performance drop

    Hello everyone,

    this is a thread I never expected to open, but today I ran into a problem when updating my Qt-version.

    I was happily using Qt 5.2.1 32 bit with MinGW 4.8 and QtCreator 3.0.1 (based on Qt 5.2.1 (MSVC 2010, 32 bit)). Then I needed the Websocket support that was only added in Qt 5.3. So why not download the newest version? So I installed Qt 5.5.1 32 bit with MinGW 4.9 and Qt Creator 3.5.1 (opensource) (based on Qt 5.5.1 (MSVC 2013, 32 bit)).

    At first, I could not compile my application. Then I figured out it was due to a lib of myself that I was using that was created with Qt 5.2.1. So I compiled it with Qt 5.5.1, and then I could also compile my application. But what a change! The performance has hugely dropped! I have a lot of qDebug() in my code. With Qt 5.2.1 I could see if running very fast through the console. But now, a) the color of the text is pink (any reason why? i was not debugging...) and b) the qDebug() output now runs quite slowly through the console. And opening a complex widget (no code changes!) takes 15 seconds, with Qt 5.2.1 it opened instantly!

    I can only think that a reason could be that the install path is not "optimal"?

    Qt 5.2.1 is installed here:
    C:/Qt/...
    Qt 5.5.1 is installed here:
    C:/Qt5.5.1/

    My computer is runnning Windows 8 64 bit.

    I tried to disable the qDebug() messages to see if there is the root cause, with

    Qt Code:
    1. CONFIG(release,release|debug){
    2. DEFINES += QT_NO_DEBUG_OUTPUT
    3. }
    To copy to clipboard, switch view to plain text mode 

    But this did nothing at all (I mean: the qDebug()-messages did not disappear), even after cleaning and rebuilding everything.

    Or can the problem be due to the QtCreator community edition?
    Last edited by turtle; 24th January 2016 at 23:04.

Similar Threads

  1. Replies: 6
    Last Post: 21st October 2015, 09:46
  2. How to know the signal which caused a qstate transition
    By ClintEastwood in forum Qt Programming
    Replies: 6
    Last Post: 24th April 2013, 15:27
  3. Replies: 2
    Last Post: 8th January 2011, 10:24
  4. Crash caused by QVariant (mis)use
    By mclark in forum Newbie
    Replies: 2
    Last Post: 31st October 2006, 15:05
  5. Weird crash caused by a QTreeView
    By vfernandez in forum Qt Programming
    Replies: 1
    Last Post: 10th September 2006, 18:31

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.