Added support for C++ compilation.
Made removing the object files a separate sh command so that it can easily
be commented out.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11888 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/check-each-file b/utils/check-each-file
index 1f6a8aa..bd76333 100755
--- a/utils/check-each-file
+++ b/utils/check-each-file
@@ -10,7 +10,7 @@
 	linker=./link-$program
 	echo "Building $program with llvm-native-gcc"
 	rm -f $program
-	gmake -s $program CC=llvm-native-gcc
+	gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
 	echo "Erasing $program and re-linking it" 
 	rm -f $program
 	echo "rm -f $program" > $linker
@@ -113,7 +113,8 @@
 echo "Recompiling everything with llvm-native-gcc"
 for f in $files
 do
-	rm -f $f && gmake $f CC=llvm-native-gcc
+	rm -f $f
+	gmake $f CC=llvm-native-gcc CXX=llvm-native-gxx
 done
 rm -f $program
 $linker