Skip to content

Instantly share code, notes, and snippets.

@xeptore
Created December 22, 2017 05:00
Show Gist options
  • Save xeptore/59844d0d3061a2304c343e15dcd606bc to your computer and use it in GitHub Desktop.
Save xeptore/59844d0d3061a2304c343e15dcd606bc to your computer and use it in GitHub Desktop.

Install 32bit C++ Libraries on Ubuntu

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo dpkg --add-architecture i386
sudo apt-get install apt-file
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-file find libstdc++.so.6
sudo apt-get install libstdc++6;sudo apt-get install libstdc++6:i386
sudo apt-get install libusb++-0.1;sudo apt-get install libusb++-0.1:i386
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment