Skip to content

Commit

Permalink
one should actually not use the static c++ runtime in an Android library
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasVautherin committed Dec 16, 2019
1 parent 806978d commit dfcff77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ script:
./dockcross-manylinux1-x64 cmake --build build/manylinux1-x64 -j 2 --target install;
fi
- if [[ "${BUILD_TARGET}" = "android-arm64" ]]; then
./dockcross-android-arm64 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=build/android-arm64/install -DBUILD_BACKEND=ON -DBUILD_SHARED_LIBS=OFF -DANDROID_STL="c++_static" -j 2 -Bbuild/android-arm64 -H.;
./dockcross-android-arm64 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=build/android-arm64/install -DBUILD_BACKEND=ON -DBUILD_SHARED_LIBS=OFF -j 2 -Bbuild/android-arm64 -H.;
./dockcross-android-arm64 cmake --build build/android-arm64 -j 2 --target install;
fi
- if [[ "${BUILD_TARGET}" = "android-arm" ]]; then
./dockcross-android-arm cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=build/android-arm/install -DBUILD_BACKEND=ON -DBUILD_SHARED_LIBS=OFF -DANDROID_STL="c++_static" -j 2 -Bbuild/android-arm -H.;
./dockcross-android-arm cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=build/android-arm/install -DBUILD_BACKEND=ON -DBUILD_SHARED_LIBS=OFF -j 2 -Bbuild/android-arm -H.;
./dockcross-android-arm cmake --build build/android-arm -j 2 --target install;
fi
- if [[ "${BUILD_TARGET}" = "linux-armv7" ]]; then
Expand Down

0 comments on commit dfcff77

Please sign in to comment.