Added message directing user to perform the build with the build command

pull/200/head
Jeffrey Walton 2016-06-13 20:28:46 -04:00
parent 94f26519d2
commit a6090c64ed
3 changed files with 32 additions and 11 deletions

View File

@ -343,4 +343,11 @@ if [ ! -z "$VERBOSE" ] && [ "$VERBOSE" != "0" ]; then
fi
fi
echo
echo "*******************************************************************************"
echo "It looks the the environemnt is set correcty. Your next step is"
echo "build the library with 'make -f GNUmakefile-cross'"
echo "*******************************************************************************"
echo
[ "$0" = "$BASH_SOURCE" ] && exit 0 || return 0

View File

@ -130,4 +130,11 @@ if [ ! -z "$VERBOSE" ] && [ "$VERBOSE" -ne 0 ]; then
echo "ARM_EMBEDDED_SYSROOT: $ARM_EMBEDDED_SYSROOT"
fi
echo
echo "*******************************************************************************"
echo "It looks the the environemnt is set correcty. Your next step is"
echo "build the library with 'make -f GNUmakefile-cross'"
echo "*******************************************************************************"
echo
[ "$0" = "$BASH_SOURCE" ] && exit 0 || return 0

View File

@ -270,13 +270,20 @@ TOOLS=(clang clang++ ar ranlib libtool ld)
for tool in ${TOOLS[@]}
do
if [ ! -e "$IOS_TOOLCHAIN/$tool" ] && [ ! -e "$XCODE_TOOLCHAIN/$tool" ]; then
echo "WARNING: unable to find $tool at IOS_TOOLCHAIN or XCODE_TOOLCHAIN"
echo "ERROR: unable to find $tool at IOS_TOOLCHAIN or XCODE_TOOLCHAIN"
FOUND_ALL=0
fi
done
if [ "$SETENV_VERBOSE" == "1" ] && [ "$FOUND_ALL" == "1" ]; then
echo "TOOL TEST: found all tools, this might actually work"
if [ "$FOUND_ALL" -eq "0" ]; then
[ "$0" = "$BASH_SOURCE" ] && exit 1 || return 1
fi
echo
echo "*******************************************************************************"
echo "It looks the the environemnt is set correcty. Your next step is"
echo "build the library with 'make -f GNUmakefile-cross'"
echo "*******************************************************************************"
echo
[ "$0" = "$BASH_SOURCE" ] && exit 0 || return 0