diff options
author | Jack Lloyd <[email protected]> | 2016-11-16 12:52:59 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-16 12:52:59 -0500 |
commit | 567d93fab2704fa538a861529c0fe719822b4ecd (patch) | |
tree | 053787aeceea496ce8e920f72047d9855960bf0b /src/scripts | |
parent | 91cc252359ad915df73673e7e34b2a14010f9bb7 (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-x | src/scripts/ci/travis/build.sh | 2 |
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) |