Results 1 to 14 of 14

Thread: Crash on QApplication::exec()

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Aug 2010
    Posts
    11
    Thanks
    1

    Default Re: Crash on QApplication::exec()

    Ah, the line numbers don't match up exactly as I removed some commented out lines from my post. Line 56 refers to the closing brace of the method, line 46 in the code I posted above.

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,373
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Thanks
    3
    Thanked 5,019 Times in 4,795 Posts
    Wiki edits
    10

    Default Re: Crash on QApplication::exec()

    In that case the crash occurs when destructors are called (most probably the destructor of your vmfdebuger class). Could you post a full debugger backtrace with the binary built in debug mode?
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  3. #3
    Join Date
    Aug 2010
    Posts
    11
    Thanks
    1

    Default Re: Crash on QApplication::exec()

    Here is the application output for debug mode. Apparently QT wasn't installed correctly, but I don't know how it even compiles if it can't find QtCore, etc? I have no idea where that world clock stuff is coming from. Sorry for my ignorance, but how do I do a proper back trace?


    Qt Code:
    1. Unable to read symbols for QtSql.framework/Versions/4/QtSql (file not found).
    2. Unable to read symbols from "QtSql" (not yet mapped into memory).
    3. Unable to read symbols for QtXml.framework/Versions/4/QtXml (file not found).
    4. Unable to read symbols from "QtXml" (not yet mapped into memory).
    5. Unable to read symbols for QtGui.framework/Versions/4/QtGui (file not found).
    6. Unable to read symbols from "QtGui" (not yet mapped into memory).
    7. Unable to read symbols for QtNetwork.framework/Versions/4/QtNetwork (file not found).
    8. Unable to read symbols from "QtNetwork" (not yet mapped into memory).
    9. Unable to read symbols for QtCore.framework/Versions/4/QtCore (file not found).
    10. Unable to read symbols from "QtCore" (not yet mapped into memory).
    11. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/customwidgetplugin/.obj/debug-shared/analogclock.o" - no debug information available for "analogclock.cpp".
    12. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/customwidgetplugin/.obj/debug-shared/customwidgetplugin.o" - no debug information available for "customwidgetplugin.cpp".
    13. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/customwidgetplugin/.obj/debug-shared/moc_analogclock.o" - no debug information available for ".moc/debug-shared/moc_analogclock.cpp".
    14. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/customwidgetplugin/.obj/debug-shared/moc_customwidgetplugin.o" - no debug information available for ".moc/debug-shared/moc_customwidgetplugin.cpp".
    15. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/worldtimeclockplugin/.obj/debug-shared/worldtimeclock.o" - no debug information available for "worldtimeclock.cpp".
    16. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/worldtimeclockplugin/.obj/debug-shared/worldtimeclockplugin.o" - no debug information available for "worldtimeclockplugin.cpp".
    17. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/worldtimeclockplugin/.obj/debug-shared/moc_worldtimeclock.o" - no debug information available for ".moc/debug-shared/moc_worldtimeclock.cpp".
    18. Could not find object file "/private/tmp/qt-stuff-6474/source/qt-everywhere-opensource-src-4.7.0/examples/designer/worldtimeclockplugin/.obj/debug-shared/moc_worldtimeclockplugin.o" - no debug information available for ".moc/debug-shared/moc_worldtimeclockplugin.cpp".
    19. 2011-04-04 17:05:25.579 vmfdebuger[6072:a0f] -[NSCFArray name]: unrecognized selector sent to instance 0x102ea6650
    20. Qt has caught an exception thrown from an event handler. Throwing
    21. exceptions from an event handler is not supported in Qt. You must
    22. reimplement QApplication::notify() and catch all exceptions there.
    To copy to clipboard, switch view to plain text mode 

  4. #4
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,373
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Thanks
    3
    Thanked 5,019 Times in 4,795 Posts
    Wiki edits
    10

    Default Re: Crash on QApplication::exec()

    It seems you have no debugging symbols for the libraries installed.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  5. #5
    Join Date
    Aug 2010
    Posts
    11
    Thanks
    1

    Default Re: Crash on QApplication::exec()

    Hi sorry about the delay but I've finally been able to get back to this. I have the QtCore, QtGui, etc frameworks installed in /Library/Frameworks/. How to I get the symbols to load properly?

  6. #6
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,373
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Thanks
    3
    Thanked 5,019 Times in 4,795 Posts
    Wiki edits
    10

    Default Re: Crash on QApplication::exec()

    Do you have the debugging symbols for those libraries? Did you build Qt in both release and debug mode?
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  7. #7
    Join Date
    Aug 2010
    Posts
    11
    Thanks
    1

    Default Re: Crash on QApplication::exec()

    Yes, I built Qt as frameworks, and the debug symbols are contained in the frameworks. I can't seem to change where it is looking for them from for example QtGui.framework/Versions/4/QtGui, where it is trying to find them, to /Library/Frameworks/QtGui.framework/Versions/4/QtGui where they are located.

  8. #8
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,373
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Thanks
    3
    Thanked 5,019 Times in 4,795 Posts
    Wiki edits
    10

    Default Re: Crash on QApplication::exec()

    Quote Originally Posted by Nivek View Post
    Yes, I built Qt as frameworks, and the debug symbols are contained in the frameworks.
    Apparently not if the debugger can't find them.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


Similar Threads

  1. QThread::exec and QApplication instantiation
    By Ray Froehlich in forum Qt Programming
    Replies: 1
    Last Post: 28th July 2010, 05:35
  2. Replies: 4
    Last Post: 1st December 2008, 11:13
  3. Quitting before the QApplication::exec()
    By jsmax in forum Qt Programming
    Replies: 2
    Last Post: 17th April 2008, 20:19
  4. Replies: 2
    Last Post: 16th March 2007, 09:04
  5. <QtGui/QApplication> vs. <QApplication>
    By seneca in forum Qt Programming
    Replies: 5
    Last Post: 25th January 2006, 10:58

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.