]> sigrok.org Git - sigrok-util.git/commitdiff
sigrok-cross-android: Drop boost-thread.
authorUwe Hermann <redacted>
Fri, 31 Mar 2017 17:30:20 +0000 (19:30 +0200)
committerUwe Hermann <redacted>
Fri, 31 Mar 2017 17:30:20 +0000 (19:30 +0200)
This is no longer needed, PV uses pure C++11 threading now.

cross-compile/android/sigrok-cross-android

index 8e9356b64ee21c0db07ed399a9fccb8c74d63221..682c3ba544a8c66849b3de21842b4f1a76020ab5 100755 (executable)
@@ -442,7 +442,7 @@ $WGET http://$SF_MIRROR/project/boost/boost/$VER_BOOST/boost_${VER_BOOST//./_}.t
 tar xfj boost_${VER_BOOST//./_}.tar.bz2
 cd boost_${VER_BOOST//./_}
 patch -p0 < ../../boost_wchar.patch
-CC= ./bootstrap.sh --with-toolset=gcc --with-libraries=filesystem,system,thread,serialization,test --without-icu
+CC= ./bootstrap.sh --with-toolset=gcc --with-libraries=filesystem,system,serialization,test --without-icu
 echo "using gcc : $NDK_TOOLCHAIN_VERSION : \"${TOOLCHAIN_TRIPLET}-g++\" : <cxxflags>\"$SYSROOT -I$PREFIX/include $CPPFLAGS_STL\" <linkflags>\"$SYSROOT -L$PREFIX/lib $LDFLAGS_STL -lgnustl_shared\" ;" > user-config.jam
 ./b2 -q -d+2 --ignore-site-config --user-config=user-config.jam toolset=gcc variant=release link=shared threading=multi runtime-link=shared target-os=android --prefix=$PREFIX --layout=system install $PARALLEL
 cd ..