#!/bin/sh | |
cd `dirname $0` | |
BUILD_OUTPUT=$($NDK/ndk-build "$@" 2>&1) | |
# Note: the build can fail because it is ill-specific, so don't panic | |
# and just look for the expected warning. | |
printf "%s\n" "$BUILD_OUTPUT" | grep -q -e "WARNING:.*: LOCAL_THIN_ARCHIVE is for building static libraries" | |
if [ $? != 0 ]; then | |
echo "ERROR: Can't find warning about LOCAL_THIN_ARCHIVE in output:" | |
printf "%s\n" "$BUILD_OUTPUT" | |
exit 1 | |
fi |