$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Glibcxx_3.4.32 not found CentOS Solving

September 18, 2023 | By the+gnu+linux+evangelist.

Solving glibcxx_3.4.32 not found in CentOS

Hi! This Guide Try to Solve glibcxx_3.4.32 not found in CentOS 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.

Finally, this Setup is Valid also for All the others Red Hat Linux Based Distros like:

  • Red Hat Enterprise Linux
  • Oracle Enterprise Linux
  • Rocky Linux
  • AlmaLinux
glibcxx_3.4.32 not found CentOS Solving - Featured
  1. 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 CentOS.
    But if Yes, the try to see if it’s missing with:
    sudo dnf install libstdc++
  2. 2. Setting LD Library Path

    Now to Set LD Library Path on CentOS
    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. 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.