Results 1 to 4 of 4

Thread: Bus error on QWebkit

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Aug 2010
    Posts
    1
    Qt products
    Qt4 Qt/Embedded
    Platforms
    Unix/X11

    Default Bus error on QWebkit

    Hi everybody,

    I'm currently working on an sh4 architecture with Qt Embedded 4.6.2.
    All Qt's examples and demos works well except the webkit based binaries.
    The browser demo crash with a bus error.

    I found with gdb that it's libQtWebkit that crashed, without more explanations.
    It's the same thing every time I'm using a QWebkit object. I can instantiate it but it crash when I want to set a property or calling a method.

    If someone have any idea of how to fix this problem it would be very cool to share it.

    Thx

  2. #2
    Join Date
    Nov 2010
    Posts
    1
    Qt products
    Qt4 Qt/Embedded
    Platforms
    MacOS X Unix/X11

    Default Re: Bus error on QWebkit

    Got the same issue last week, trying to launch WebKit examples on sh4 board with Qt Embedded 4.6.2
    I wonder if you managed to get it running since August?

  3. #3
    Join Date
    Aug 2011
    Posts
    2
    Qt products
    Qt4 Qt/Embedded
    Platforms
    Unix/X11 Windows Symbian S60

    Default Re: Bus error on QWebkit

    hi, QT-4.7.3 webkit porting to SH-4(7785), still the "Bus error".


    Added after 51 minutes:


    Hi, SH-4 can do un-aligned integer access,
    But cant deal with un-aligned float/double,

    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=545925

    so, there may be a problem in WebKit WebCore/rendering/RenderArena.cpp(https://bugs.webkit.org/show_bug.cgi?id=19946)

    QtWebKit(Qt-4.7.3)seems not fixed?Trying fix this, But not approved now.
    Last edited by chenzx; 24th August 2011 at 09:37.

  4. #4
    Join Date
    Aug 2011
    Posts
    2
    Qt products
    Qt4 Qt/Embedded
    Platforms
    Unix/X11 Windows Symbian S60

    Default Re: Bus error on QWebkit

    i can't find the WebKit SVN version for Qt-4.7.3, can some one help me?
    figured out a method to validate the alignment problem under Win32 desktop for SH4-embedded:

    TimerBase::TimerBase()
    : m_nextFireTime(0)
    , m_repeatInterval(0)
    , m_heapIndex(-1)
    #ifndef NDEBUG
    , m_thread(currentThread())
    #endif
    {
    + ASSERT( (unsigned int)&m_nextFireTime % 8 == 0 );//perhaps need to check other places?
    }

Similar Threads

  1. QWebKit shows raw text
    By prof.ebral in forum Newbie
    Replies: 17
    Last Post: 6th February 2011, 10:12
  2. How to follow a link in QWebKit?
    By piotr.dobrogost in forum Qt Programming
    Replies: 2
    Last Post: 3rd August 2009, 14:05
  3. Hacking QWebkit
    By qtfeeder in forum Qt Programming
    Replies: 4
    Last Post: 8th July 2009, 17:54
  4. performance of QWebKit() in QGraphicsProxyWidget
    By wagmare in forum Qt Programming
    Replies: 11
    Last Post: 8th December 2008, 10:26
  5. Filling forms with QWebKit
    By physicistjedi in forum Qt Programming
    Replies: 1
    Last Post: 4th December 2008, 18:50

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.