I turned to Libreoffice for the yum issues on openoffice, install from official binary.
a small issue when startup application:
1 2 3 4 |
[suse@suse ~]$swriter /opt/libreoffice/program/../basis-link/ure-link/lib/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required by /usr/lib/libproxy.so.1) Failed to load module: /usr/lib/gio/modules/libgiolibproxy.so |
thanks google, it should be a potential problem on the cxx lib version, the attached lib on Libreoffice is old,
FIX:
just replace(ln) to the os current lib.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
[suse@suse /opt/libreoffice/basis-link/ure-link/lib]$rpm -qf /usr/lib/libstdc++.so.6 libstdc++-4.6.0-7.fc15.i686 [suse@suse /opt/libreoffice/basis-link/ure-link/lib]$strings libstdc++.so.6.0527 | grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 GLIBCXX_3.4.2 GLIBCXX_3.4.3 GLIBCXX_3.4.4 GLIBCXX_3.4.5 GLIBCXX_3.4.6 GLIBCXX_3.4.7 GLIBCXX_3.4.8 GLIBCXX_3.4.9 GLIBCXX_FORCE_NEW [suse@suse /opt/libreoffice/basis-link/ure-link/lib]$strings libstdc++.so.6 | grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 GLIBCXX_3.4.2 GLIBCXX_3.4.3 GLIBCXX_3.4.4 GLIBCXX_3.4.5 GLIBCXX_3.4.6 GLIBCXX_3.4.7 GLIBCXX_3.4.8 GLIBCXX_3.4.9 GLIBCXX_3.4.10 GLIBCXX_3.4.11 GLIBCXX_3.4.12 GLIBCXX_3.4.13 GLIBCXX_3.4.14 GLIBCXX_3.4.15 GLIBCXX_3.4.16 GLIBCXX_FORCE_NEW GLIBCXX_DEBUG_MESSAGE_LENGTH |