After a successful install of mac OS 10.7 I tried to compile my qt 4.7 project.

I had many warnings of "unsupported mac os x version". I thus decided to use Qt 4.8 beta and now, all the warnings are gone.

However, I now have a linker problem using Phonon:

dyld: Library not loaded:/Users/pulseagent/repos/build2/Desktop/Qt/4.8.0/gcc/lib/QtDBus.framework/Versions/4/QtDBus
Referenced from: /Users/kikohs/QtSDK/Desktop/Qt/4.8.0/gcc/lib/phonon.framework/Versions/Current/phonon
Reason: Incompatible library version: phonon requires version 4.8.0 or later, but QtDBus provides version 4.7.0

Do you know I could I fix this ?

Thanks!

link|improve this question

62% accept rate
Did you make sure all paths of your development environment point to the new 4.8 version of Qt? – Bart Jul 22 '11 at 21:38
feedback

4 Answers

You could easily install QT under Lion using homebrew(which already has a fix for this):

  1. install homebrew using

    /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"

  2. install qt using

    brew install qt --build-from-source

link|improve this answer
I would like to stick with the native Qt for mac. – Kikohs Jul 29 '11 at 17:12
1  
the installation via homebrew is "native". The only difference is that you build from source – Diego Plentz Aug 8 '11 at 14:48
feedback
up vote 0 down vote accepted

For now I decided to stick with Qt 4.7.3, to remove the warnings I hacked the qtglobal.h and added Mac 10.7 as a supported version.

It seems to run fine ...

link|improve this answer
You didn't get errors compiling kernel/qtwidget_mac.mm? – trojanfoe Jul 26 '11 at 13:42
I don't think so. I only have warnings about deprecated backend cocoa functions (scroll). – Kikohs Jul 29 '11 at 17:11
feedback

I would recommend using MacPorts. If you download the MacPorts installer 2.0.0 (latest at the time of writing) you can unpack the qt4-mac-devel-4.8.0-beta1.tgz file posted at the end of this MacPorts trac report over the qt4-mac-devel port, in order to get 4.8.0 beta 1 working under Lion.

It's not official yet, but then nor is Qt 4.8.0. It seems to work well and can be used to build Qt Creator 2.2.1 without problems.

link|improve this answer
Can you deploy as easily as a native Qt for mac app ? – Kikohs Jul 29 '11 at 17:13
Yes. In order to comply with the LGPL license you need to dynamically link with the Qt framework files, include the Qt framework files in the application bundle and modify the binary to use the framework files from within the application bundle. There are utilities to help do this. – trojanfoe Jul 31 '11 at 10:32
feedback

I'm using Qt Creator 2.2.1 and Qt 4.7.4 (64 bit).

While a build in Lion reported a number of warnings (to do with the Mac OS version) the resulting app did work as expected.

Using the macdeployqt tool ( QtSDK/Desktop/Qt/473/gcc/bin/macdeployqt ), with the -dmg switch, creates a dmg file from the app with all of the required dependencies.

And while this reported a number of errors (to do with copying nib files) the resulting dmg file still worked as expected.

link|improve this answer
I have the same error nib blabla. To remove the warnings I hacked qtglobal.h to add Lion as a supported version. – Kikohs Sep 5 '11 at 8:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.