summaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2014-09-01 15:46:25 -0700
committerJosh Haberman <jhaberman@gmail.com>2014-09-01 15:46:25 -0700
commit4b7fad462433c7bcb66b6bc16a3381d54013f823 (patch)
treee5f11a17b32d3d31363cfa725e1f7c1aa46834e1 /travis.sh
parent562a4d80df607990afd9a5955d376f17bdca6289 (diff)
32-bit builds also needs 32-bit C++ library.
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/travis.sh b/travis.sh
index 650c306..4f5960a 100755
--- a/travis.sh
+++ b/travis.sh
@@ -32,7 +32,8 @@ withprotobuf_script() {
# need to be available as 32-bit libs also, which gets hairy fast.
# Can't enable the JIT because it only supports x64.
core32_install() {
- sudo apt-get install libc6-dev-i386
+ sudo apt-get update -qq
+ sudo apt-get install libc6-dev-i386 lib32stdc++6
}
core32_script() {
make -j12 tests USER_CPPFLAGS=-m32
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback