]> git.stg.codes - stg.git/blobdiff - projects/sgconf_xml/build
Add compiler existance checking
[stg.git] / projects / sgconf_xml / build
index ae08b781d690b1def6cff7195905d2ecc218e96e..76985b16c1d9d83862647dc74a1466fcc69f7a8a 100755 (executable)
@@ -90,6 +90,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