Adam M-W
Adam M-W

Reputation: 3539

Qt Designer 4.8 Crashes on startup on Mac OS X 10.7

Has anyone else been able to run Qt Designer from the Qt library installer provided on http://qt.nokia.com/downloads/downloads#qt-lib ?

Qt Designer (which gets installed in /Developer/Applications/Qt) crashes on startup when I try to open it, but qtdemo and other applications work fine.

Upvotes: 1

Views: 1030

Answers (1)

Andrew
Andrew

Reputation: 11

On inspection of the stack trace it seems that it doesn't like it if dbus is not installed. You can grab dbus from http://dbus.freedesktop.org/releases/dbus/.

To install it you just need to:

./configure
make
sudo make install

You obviously need Xcode+gcc installed.

Upvotes: 1

Related Questions