How to fix Genymotion in linux ElementaryOS with error `CXXABI_1.3.8' not found

后端 未结 1 1529
星月不相逢
星月不相逢 2020-12-25 10:52

Whenever I am trying to start genymotion(run command ./genymotion), the following error shown in my terminal

./genymotion: /usr/lib/x86_64-linux-gnu/libstdc+         


        
相关标签:
1条回答
  • 2020-12-25 10:58

    Execute the following 5 steps to solve it:


    LD_LIBRARY_PATH=/usr/local/lib64/:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    sudo add-apt-repository ppa:ubuntu-toolchain-r/test
    sudo apt-get update
    sudo apt-get install gcc-4.9 g++-4.9
    

    In my case this method worked like a charm.

    0 讨论(0)
提交回复
热议问题