commit 1061fbaef242d5a48f001b731247c83f039d546a parent 9e0fc902abb3316d37eb21891300a5e6121b720d Author: sin <sin@2f30.org> Date: Wed, 25 Sep 2013 15:53:03 +0100 Use g++ and disable openssl and execinfo for libtorrent Diffstat:
M | cross-scripts/libtorrent | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/cross-scripts/libtorrent b/cross-scripts/libtorrent @@ -12,7 +12,9 @@ unpack() { build() { pushd src/libtorrent-0.13.3 - CC=x86_64-linux-musl-gcc ./configure --prefix=$libcroot --disable-shared || return 1 + CXX=x86_64-linux-musl-g++ ./configure --prefix=$libcroot \ + --disable-openssl --disable-shared || return 1 + sed -i 's/#define USE_EXECINFO 1//g' config.h make -j$nprocs || return 1 popd }