Search code examples
c++x86debian32bit-64bit32-bit

Debian Stretch and Jessie 32-bit libraries


For those looking for the answer, there it's, as it's not clear on other websites.

This is required at least by the Intel compiler. Maybe it helps also for other software.


Solution

  • Just run those commands in your terminal.

    sudo dpkg --add-architecture i386
    sudo apt-get update
    sudo apt-get install build-essential gcc-multilib rpm libstdc++6:i386 libgcc1:i386 zlib1g:i386 libncurses5:i386
    

    Or as root remove the "sudo" from them.