Goldilocks and the three bears.
-
Reference: https://bbs.archlinux.org/viewtopic.php?id=266662
I am having the same problem as these guys. Qt 5.9 is too old and Qt 5.15.2 is too young. I'm looking for a version of Qt that is just right.
My system is Debian Bullseye and I'm using Anaconda. The Anaconda package list is sparse for Qt releases where I need them. So.... rather than build and try each version, I thought I would ask this forum.
Thanks.
The link errors I'm seeing are listed below.
/usr/bin/ld: /usr/lib/libQt5Core.so.5.15.2: undefined reference to
std::__exception_ptr::exception_ptr::_M_release()@CXXABI_1.3.13' /usr/bin/ld: /usr/lib/libQt5Widgets.so.5.15.2: undefined reference tostd::__throw_bad_array_new_length()@GLIBCXX_3.4.29'
/usr/bin/ld: /usr/lib/libQt5Core.so.5.15.2: undefined reference to `std::__exception_ptr::exception_ptr::_M_addref()@CXXABI_1.3.13' -
Reference: https://bbs.archlinux.org/viewtopic.php?id=266662
I am having the same problem as these guys. Qt 5.9 is too old and Qt 5.15.2 is too young. I'm looking for a version of Qt that is just right.
My system is Debian Bullseye and I'm using Anaconda. The Anaconda package list is sparse for Qt releases where I need them. So.... rather than build and try each version, I thought I would ask this forum.
Thanks.
The link errors I'm seeing are listed below.
/usr/bin/ld: /usr/lib/libQt5Core.so.5.15.2: undefined reference to
std::__exception_ptr::exception_ptr::_M_release()@CXXABI_1.3.13' /usr/bin/ld: /usr/lib/libQt5Widgets.so.5.15.2: undefined reference tostd::__throw_bad_array_new_length()@GLIBCXX_3.4.29'
/usr/bin/ld: /usr/lib/libQt5Core.so.5.15.2: undefined reference to `std::__exception_ptr::exception_ptr::_M_addref()@CXXABI_1.3.13'@vaughanatworld Your project is linking against a version of libstdc++ that is older than those API/ABI levels (GLIBCXX_3.4.29/CXXABI_1.3.13) used by the Qt libraries. This might be the system version instead of an Anaconda-supplied version, or vice versa. You may also have several different Anaconda-supplied versions causing an incorrect selection (example). Your build may be using a toolchain other than the one you think you are (as in the post you linked).
Hard for us to tell