Commit 714988e6 authored by KAPP Arnaud's avatar KAPP Arnaud

Merge pull request #1694 from hintjens/master

Problem: Android build is too slow
parents f64c3858 c49eef46
......@@ -33,7 +33,7 @@ fi
(cd "${cache}" && git clone --depth 1 git://github.com/jedisct1/libsodium.git) || exit 1
(cd "${cache}/libsodium" && ./autogen.sh \
&& ./configure "${ANDROID_BUILD_OPTS[@]}" --disable-soname-versions \
&& make \
&& make -j 4 \
&& make install) || exit 1
}
......@@ -47,8 +47,8 @@ LIBTOOL_EXTRA_LDFLAGS='-avoid-version'
(cp -r ../.. "${cache}/libzmq" && cd "${cache}/libzmq" && make clean)
(cd "${cache}/libzmq" && ./autogen.sh \
&& ./configure "${ANDROID_BUILD_OPTS[@]}" --with-libsodium=yes \
&& make \
&& ./configure "${ANDROID_BUILD_OPTS[@]}" --without-documentation --with-libsodium=yes \
&& make -j 4 \
&& make install) || exit 1
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment