fix for ubuntu 20.04 (#748)

pull/750/head
Weston 6 years ago committed by GitHub
parent 2a09b30649
commit d3ec217e60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,3 +12,4 @@ pygments
capstone==4.0.1
enum34
pytest
testresources

@ -20,7 +20,9 @@ osx() {
install_apt() {
sudo apt-get update || true
sudo apt-get -y install gdb python-dev python3-dev python-pip python3-pip libglib2.0-dev libc6-dbg
# This breaks Ubuntu 20.04, but is probably still needed for older version
sudo apt-get -y python-pip || true
sudo apt-get -y install gdb python-dev python3-dev python3-pip libglib2.0-dev libc6-dbg
if uname -m | grep x86_64 > /dev/null; then
sudo apt-get -y install libc6-dbg:i386 || true

Loading…
Cancel
Save