X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d614b065a35df8f3adaa4a4afc0d7a6cb02eef97..f48b5b729bb0a1bdf88c1eebdb7e754c4d6bac92:/projects/sgauth/build?ds=sidebyside diff --git a/projects/sgauth/build b/projects/sgauth/build index eef6026f..29109a37 100755 --- a/projects/sgauth/build +++ b/projects/sgauth/build @@ -67,7 +67,6 @@ echo "########################################################################## STG_LIBS="crypto.lib common.lib - common_settings.lib conffiles.lib ia_auth_c.lib" @@ -93,6 +92,25 @@ else SHELL="/usr/local/bin/bash" fi +echo -n "Checking gcc... " +gcc --version > /dev/null 2> /dev/null +if [ $? != 0 ] +then + echo "FAIL!" + echo "gcc not found" + exit; +fi +echo "found" +echo -n "Checking g++... " +g++ --version > /dev/null 2> /dev/null +if [ $? != 0 ] +then + echo "FAIL!" + echo "g++ not found" + exit; +fi +echo "found" + echo -n "Checking endianess... " echo "int main() { int probe = 0x00000001; return *(char *)&probe; }" > build_check.c gcc $CXXFLAGS $LDFLAGS build_check.c -o fake > /dev/null 2> /dev/null