RHEL 6 - how to install 'GLIBC_2.14' or 'GLIBC_2.15'?

后端 未结 5 1410
忘了有多久
忘了有多久 2020-12-23 17:29

I need these 2 packages installed on RHEL 6 linux system. They are required by several other programs.

When I do:

sudo yum install glibc-devel
         


        
5条回答
  •  我在风中等你
    2020-12-23 18:28

    For another instance of Glibc, download gcc 4.7.2, for instance from this github repo (although an official source would be better) and extract it to some folder, then update LD_LIBRARY_PATH with the path where you have extracted glib.

    export LD_LIBRARY_PATH=$glibpath/glib-2.49.4-kgesagxmtbemim2denf65on4iixy3miy/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH=$glibpath/libffi-3.2.1-wk2luzhfdpbievnqqtu24pi774esyqye/lib64:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH=$glibpath/pcre-8.39-itdbuzevbtzqeqrvna47wstwczud67wx/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH=$glibpath/gettext-0.19.8.1-aoweyaoufujdlobl7dphb2gdrhuhikil/lib:$LD_LIBRARY_PATH
    

    This should keep you safe from bricking your CentOS*.

    *Disclaimer: I just completed the thought it looks like the OP was trying to express, but I don't fully agree.

提交回复
热议问题