Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Build failure: 4.8.5 on Mac with phonon
Forum Updated to NodeBB v4.3 + New Features

Build failure: 4.8.5 on Mac with phonon

Scheduled Pinned Locked Moved Installation and Deployment
26 Posts 3 Posters 12.5k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • SGaistS Offline
    SGaistS Offline
    SGaist
    Lifetime Qt Champion
    wrote on last edited by
    #4

    Which version of Xcode are you using ?

    Interested in AI ? www.idiap.ch
    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

    1 Reply Last reply
    0
    • B Offline
      B Offline
      bovilexic
      wrote on last edited by
      #5

      Xcode 5.0.2

      1 Reply Last reply
      0
      • B Offline
        B Offline
        bovilexic
        wrote on last edited by
        #6

        By the way, I just did a clean install of the source, configured with:

        ./configure -release -no-webkit -arch x86_64
        

        and built with "make". I get the same error I reported earlier... I can re-do this experiment, but with 32-bit, but I'm going to guess I'll just replicate that error, too...

        BTW, I build without webkit due to a build failure, which is currently under code review...

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #7

          Does it also fail if you configure without setting the architecture ?

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          0
          • B Offline
            B Offline
            bovilexic
            wrote on last edited by
            #8

            Without an explicit architecture setting, it appears to be using "x86_64".

            Yes, it still fails, emitting exactly the error message I quoted in the original post in this thread.

            1 Reply Last reply
            0
            • B Offline
              B Offline
              bovilexic
              wrote on last edited by
              #9

              I tracked down the file in which the "missing" symbol is defined:

              src/3rdparty/phonon/phonon/objectdescriptionmodel.h

              As this class is defined, the "Undefined symbols" error suggests that the vtable isn't being exported properly.

              This templated class is defined with:

              @/* Required to ensure template class vtables are exported on both symbian
              and existing builds. */
              #if (defined(Q_OS_SYMBIAN) && defined(Q_CC_RVCT)) || defined(Q_CC_CLANG)
              // RVCT compiler (2.2.686) requires the export declaration to be on the class to export vtables
              // MWC compiler works both ways
              // GCCE compiler is unknown (it can't compile QtCore yet)
              // Clang also requires the export declaration to be on the class to export vtables
              #define PHONON_TEMPLATE_CLASS_EXPORT PHONON_EXPORT
              #define PHONON_TEMPLATE_CLASS_MEMBER_EXPORT
              #else
              // Windows builds (at least) do not support export declaration on templated class
              // But if you export a member function, the vtable is implicitly exported
              #define PHONON_TEMPLATE_CLASS_EXPORT
              #define PHONON_TEMPLATE_CLASS_MEMBER_EXPORT PHONON_EXPORT
              #endif
              ...comments deleted...
              template<ObjectDescriptionType type>
              class PHONON_TEMPLATE_CLASS_EXPORT ObjectDescriptionModel : public QAbstractListModel
              {
              public:
              ... etc ...
              @

              Guessing that the export rules for the current clang/llvm scheme used in Mavericks and Xcode5.2 may not match the existing code, I tried changing the export macro for the case "Q_CC_CLANG" to instead work like it does for Windows; i.e. to this:
              @#if (defined(Q_OS_SYMBIAN) && defined(Q_CC_RVCT)) || defined(Q_CC_CLANG)
              // RVCT compiler (2.2.686) requires the export declaration to be on the class to export vtables
              // MWC compiler works both ways
              // GCCE compiler is unknown (it can't compile QtCore yet)
              // Clang also requires the export declaration to be on the class to export vtables
              #define PHONON_TEMPLATE_CLASS_EXPORT
              #define PHONON_TEMPLATE_CLASS_MEMBER_EXPORT PHONON_EXPORT
              @

              With this change in place, phonon compiles and links, and the compilation of Qt succeeds (sans, of course, webkit).

              At this point, I suspect that the export semantics have changed in the latest compiler on Maverics/Xcode5.2, or perhaps some command-line argument needs to be changed, or some other such configuration for the compiler...

              The "fix" I made is clearly not correct, as it would apply to more than just the Q_CC_CLANG case. Additionally, I've not actually tested whether any of this actually works. But usually compiling and linking is a good first step.

              It would be good if this info were passed on to someone who actually knows something about phonon, exporting vtables, etc., so a proper fix can be put into the source tree, and then Mac folks can successfully compile Qt 4.8.5 (6?) again...

              Hope this helps.

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #10

                Do you mean Xcode 5.0.2 ?

                Just tried to build it in 64bit and all went fine, the main difference is that by default it has 10.5 as minimum version.

                How did you get rid of the Xarch error ?

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                0
                • B Offline
                  B Offline
                  bovilexic
                  wrote on last edited by
                  #11

                  Yes...Xcode 5.0.2...typo...

                  I got rid of the link error by changing the #defines for PHONON_TEMPLATE_CLASS_MEMBER_EXPORT and PHONON_TEMPLATE_CLASS_EXPORT, as described in my previous post.

                  It's rather odd that you can compile successfully, and I cannot. Looking at the command line, I see that 10.5 is the minimum version for me, as well.

                  Are you using Mavericks?

                  1 Reply Last reply
                  0
                  • SGaistS Offline
                    SGaistS Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on last edited by
                    #12

                    Yes, I do.

                    So you successfully compile the 32bit version with this correction but not the 64bit ?

                    I'll try again to build both.

                    So just to be sure we are working on the same thing, can you:

                    • post the complete command line you are using (even if it's the same as your original post
                    • Just verify that you have modified anything else in the sources and build dir to make things go ahead

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    1 Reply Last reply
                    0
                    • SGaistS Offline
                      SGaistS Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on last edited by
                      #13

                      Can you also check what mkspec you are getting for both builds ?

                      Interested in AI ? www.idiap.ch
                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      0
                      • B Offline
                        B Offline
                        bovilexic
                        wrote on last edited by
                        #14

                        I have not yet tried to build a 32-bit version with my "fix" in it. I'll send one off, and let you know when it completes (or fails). With my fix in, the 64-bit build successfully completes.

                        Do you want to see the command line that's used to compile the phonon lib(s), or link it? Or do you mean what I'm using to run configure?

                        1 Reply Last reply
                        0
                        • SGaistS Offline
                          SGaistS Offline
                          SGaist
                          Lifetime Qt Champion
                          wrote on last edited by
                          #15

                          Well… All might be useful

                          Interested in AI ? www.idiap.ch
                          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                          1 Reply Last reply
                          0
                          • B Offline
                            B Offline
                            bovilexic
                            wrote on last edited by
                            #16

                            OK, so I tried building just the 32-bit version:

                            ./configure -arch x86 -no-webkit

                            The compilation fails, whether or not my "fix" to src/3rdparty/phonon/phonon/objectdescriptionmodel.h is in place. This is what I expected, as the error in the 32-bit case seems due to a malformed project or makefile (see the original post for the command line).

                            The mkspecs used is ./mkspecs/mac-g++

                            For 64-bit builds, I use:

                            ./configure -no-webkit

                            The compilation command for objectdescriptionmodel.cpp is this:

                            g++ -c -pipe -Xarch_x86_64 -mmacosx-version-min=10.5 -fconstant-cfstrings -g -arch x86_64 -Xarch_x86
                            _64 -mmacosx-version-min=10.5 -fvisibility=hidden -fvisibility-inlines-hidden -Wall -W -fPIC -DQT_SH
                            ARED -DQT_NO_CAST_TO_ASCII -DQT_ASCII_CAST_WARNINGS -DQT3_SUPPORT -DQT_MOC_COMPAT -DQT_USE_QSTRINGBU
                            ILDER -DMAKE_PHONON_LIB -DQT_NO_DBUS -DQT_GUI_LIB -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_H
                            AVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_HAVE_SSE3 -DQT_HAVE_SSSE3 -DQT_HAVE_SSE4_1 -DQT_HAVE_SS
                            E4_2 -DQT_HAVE_AVX -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -I../../mkspecs/macx-g++ -I. -I../../in
                            clude/QtCore -I../../include/QtGui -I../../include -I../../include/phonon -I.rcc/debug-shared -I.moc
                            /debug-shared -F/Users/pjs/Applications/qt/lib -o .obj/debug-shared/objectdescriptionmodel.o ../3rdp
                            arty/phonon/phonon/objectdescriptionmodel.cpp

                            And the (failing) link line is this:

                            g++ -headerpad_max_install_names -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -Xarch_x86_64
                            -mmacosx-version-min=10.5 -o capabilities.app/Contents/MacOS/capabilities .obj/debug-shared/window.o
                            .obj/debug-shared/main.o .obj/debug-shared/moc_window.o -F/Users/pjs/Applications/qt/lib -L/Users
                            /pjs/Applications/qt/lib -framework phonon -L/Users/pjs/Applications/qt/lib -F/Users/pjs/Application
                            s/qt/lib -framework QtGui -framework QtCore

                            One potentially relevant detail, if I didn't already mention: the qt source is from git, and is fresh as of this morning (so its really 4.8.6...)

                            1 Reply Last reply
                            0
                            • SGaistS Offline
                              SGaistS Offline
                              SGaist
                              Lifetime Qt Champion
                              wrote on last edited by
                              #17

                              It's a known bug and it's being worked on "here":https://bugreports.qt-project.org/browse/QTBUG-32832

                              In short, so you can get going:

                              Reverse your header modifications

                              edit src/plugins/phonon/qt7/qt7.pro

                              Change the line containing the Xarch to -framework QuickTime

                              It will build
                              WARNING: this is only a workaround

                              Interested in AI ? www.idiap.ch
                              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              0
                              • B Offline
                                B Offline
                                bovilexic
                                wrote on last edited by
                                #18

                                Thanks!

                                OK - your recommended modification allows the 32-bit build to get past the 32-bit build-specific error I was seeing earlier:

                                clang: error: invalid Xarch argument: ‘-Xarch_i386 -framework’, options requiring arguments are unsupported
                                clang: error: invalid Xarch argument: ‘-Xarch_i386 QuickTime’, cannot change driver behavior inside Xarch argument

                                This allows the build to proceed to the phonon link step, where it fails in exactly the same fashion as the 64-bit build (problem with exporting symbols for templated class). Fortunately my previously posted "fix" gets around this problem. I'll investigate a bit more, but it still puzzles me why you can get a clean build without experiencing this same link error...hmm...

                                1 Reply Last reply
                                0
                                • SGaistS Offline
                                  SGaistS Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #19

                                  Really strange… What does g++ --version print ?

                                  Interested in AI ? www.idiap.ch
                                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  0
                                  • B Offline
                                    B Offline
                                    bovilexic
                                    wrote on last edited by
                                    #20

                                    Heh...I was going to ask you the same thing...

                                    which g++
                                    /usr/bin/g++

                                    g++ --version
                                    Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
                                    Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
                                    Target: x86_64-apple-darwin13.0.0
                                    Thread model: posix

                                    I'm wondering if this is related to which version of the Command Line Tools is installed. The /usr/bin/g++ appears to the be same version as found in /Applications/Xcode.app/Contents/Developer/usr/bin/g++ (gives the exact same version info). But there still could be issues with what's in /usr/include, /usr/bin, etc...

                                    1 Reply Last reply
                                    0
                                    • SGaistS Offline
                                      SGaistS Offline
                                      SGaist
                                      Lifetime Qt Champion
                                      wrote on last edited by
                                      #21

                                      Same result as you…

                                      I have the command line tools 5.0.2 5A3005

                                      Interested in AI ? www.idiap.ch
                                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      1 Reply Last reply
                                      0
                                      • V Offline
                                        V Offline
                                        vietdung2910
                                        wrote on last edited by
                                        #22

                                        Hi, I encounter the same problem when building Qt 4.8.6 (latest version from qt.gitgourious) on my Mountain Lion
                                        My configure is: "/configure -release -framework -arch x86_64"
                                        My Clang version is:
                                        "Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
                                        Target: x86_64-apple-darwin12.5.0
                                        Thread model: posix"
                                        Please let me know if there is any way to fix this problem. Thank you

                                        1 Reply Last reply
                                        0
                                        • B Offline
                                          B Offline
                                          bovilexic
                                          wrote on last edited by
                                          #23

                                          There are several options:

                                          1. When you configure the build, leave out anything phonon-related
                                          2. Look at the first page of this thread, at my second post on December 6 -- you can see an edit that worked for me.
                                          3. SGaist's post at the top of this page seems to have worked for him (but it did not work for me).
                                          1 Reply Last reply
                                          0

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved