Install gcc-multilib so 32-bit C libraries are available on 64-bit Travis VMs.

This commit is contained in:
Bob Nystrom
2015-02-24 20:26:24 -08:00
parent 5f0a2ba21c
commit 963ebb237d

View File

@ -2,4 +2,10 @@ language: c
compiler:
- gcc
- clang
before_install:
# Travis VMs are 64-bit but we compile both for 32 and 64 bit. To enable the
# 32-bit builds to work, we need gcc-multilib.
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-multilib
script: make all && make test