X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=utils%2Fcheck-each-file;h=bd7633301dc296558d8a213ae4d297c7fd0e3bc2;hb=00552e3875ee5f382db6c98286a241a7d0efe1b8;hp=1f6a8aa065a9c1385c584854f854810ccda09f1f;hpb=0afbc2f511e900e8a3ddfbc8431264a6bf788548;p=oota-llvm.git diff --git a/utils/check-each-file b/utils/check-each-file index 1f6a8aa065a..bd7633301dc 100755 --- a/utils/check-each-file +++ b/utils/check-each-file @@ -10,7 +10,7 @@ then 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 @@ files=`cat $checkfiles` 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