Files
lightning/external/libwally-core/tools/travis_build.sh
Rusty Russell f42f34b82d external: new subdirectory for all external libraries and submodules.
You will want to 'make distclean' after this.

I also removed libsecp; we use the one in in libwally anyway.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2017-08-29 17:54:14 +02:00

19 lines
548 B
Bash
Executable File

#!/bin/sh
ENABLE_SWIG_PYTHON="--enable-swig-python"
ENABLE_SWIG_JAVA="--enable-swig-java"
if [ -n "$HOST" ]; then
USE_HOST="--host=$HOST"
if [ "$HOST" = "i686-linux-gnu" ]; then
export CC="$CC -m32"
ENABLE_SWIG_PYTHON=""
# We only disable Java because the 64 bit jvm won't run the
# tests given a 32 bit libwally.so. It compiles fine.
export ENABLE_SWIG_JAVA=""
fi
fi
./configure --disable-dependency-tracking --enable-export-all $ENABLE_SWIG_PYTHON $ENABLE_SWIG_JAVA $USE_HOST && make && make check