Solving glibcxx_3.4.32 not found in openSUSE
Hi! This Guide Try to Solve glibcxx_3.4.32 not found in openSUSE GNU/Linux.
First, you need a GCC 13+ Setup on System.
Then in case of a Custom GCC Build you may need to Set the LD Library Path.
1. Checking GCC
First, to Check GCC Setup
gcc --version
You need to have a 13.x in Output.
If Not, in case see: How to Install GCC 13.x on openSUSE.
But if Yes, the try to see if it’s missing with:sudo zypper install libstdc++
2. Setting LD Library Path
Now to Set LD Library Path on openSUSE
This in case of a Custom GCC Setup run:echo "export LD_LIBRARY_PATH=/usr/lib:/usr/local/lib:/usr/local/lib64:/usr/lib/x86_64-linux-gnu" >> ~/.bashrc
Last, to reload it:bash
3. Searching for GLIBCXX
Finally, try to Check for Available GLIBCXX Versions
For instance with:strings /usr/local/lib64/libstdc++.so.6 | grep GLIBC
You may likely need to vary the Library Path in the above Command.