Index: build/install-build-deps-android.sh |
diff --git a/build/install-build-deps-android.sh b/build/install-build-deps-android.sh |
index ae46fa24a14a2888a6e1e27e04679723c128c514..f5d288a7268f8ce9c2aa23b768031a6cdb0770fd 100755 |
--- a/build/install-build-deps-android.sh |
+++ b/build/install-build-deps-android.sh |
@@ -47,6 +47,11 @@ sudo apt-get -y install lighttpd python-pexpect xvfb x11-utils |
# Few binaries in the Android SDK require 32-bit libraries on the host. |
sudo apt-get -y install lib32z1 g++-multilib |
+# On Trusty-based systems you can't compile V8's mksnapshot without this one. |
+# It is compiled for the host, using the -m32 flag, so it needs some 32 bit |
+# development support. It seems harmless on older Linux releases. |
+sudo apt-get -y install linux-libc-dev:i386 |
+ |
sudo apt-get -y install ant |
# Install openjdk and openjre 7 stuff |