aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-11-16 12:52:59 -0500
committerJack Lloyd <[email protected]>2016-11-16 12:52:59 -0500
commit567d93fab2704fa538a861529c0fe719822b4ecd (patch)
tree053787aeceea496ce8e920f72047d9855960bf0b /src/scripts
parent91cc252359ad915df73673e7e34b2a14010f9bb7 (diff)
Disable ffi on cross builds.
Not really needed (don't have a cross python to run) and avoids the unfortunate random test failures.
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/ci/travis/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh
index da5734932..169799e42 100755
--- a/src/scripts/ci/travis/build.sh
+++ b/src/scripts/ci/travis/build.sh
@@ -50,7 +50,7 @@ elif [ "$BUILD_MODE" = "valgrind" ]; then
elif [ "${BUILD_MODE:0:5}" != "cross" ]; then
# Only use external libraries when compiling natively
- CFG_FLAGS+=(--with-bzip2 --with-lzma --with-sqlite --with-zlib)
+ CFG_FLAGS+=(--with-bzip2 --with-lzma --with-sqlite --with-zlib --disable-modules=ffi)
if [ "$BUILD_MODE" = "coverage" ]; then
CFG_FLAGS+=(--with-tpm)