Comment 9 for bug 705689

Revision history for this message
Jani Monoses (jani) wrote : Re: unity-2d-launcher crashes with segfault error on armel (natty only)

Definitely not a unity-2d bug :)

This simple app build on pandaboard and current natty crashes in the same way as the launcher (in QReadUnlock())
Crashes 4 runs out of 5 maybe, built with either g++-4.4 or g++4.5

//to build: c++ -I/usr/include/qt4 -I/usr/include/qt4/QtGui crashercpp -lQtGui -o crasher

#include <qapplication.h>

int main(int argc, char *argv[]) {
        QApplication a(argc, argv);
        return 0;
}