“No such file or directory” but it exists

前端 未结 13 1973
南笙
南笙 2020-11-29 21:24

I simply want to run an executable from the command line, ./arm-mingw32ce-g++, but then I get the error message,

bash: ./arm-mingw32ce-g++: No s         


        
13条回答
  •  时光取名叫无心
    2020-11-29 21:53

    I found my solution for my Ubuntu 18 here.

    sudo dpkg --add-architecture i386
    

    Then:

    sudo apt-get update
    sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
    

提交回复
热议问题