[llvm-commits] CVS: llvm/utils/check-each-file
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Feb 11 12:53:03 PST 2004
Changes in directory llvm/utils:
check-each-file updated: 1.2 -> 1.3
---
Log message:
Fix bug in initial check - when recompiling everything with llvm-native-gcc,
you have to erase the program and re-run the linker, too, before running the
checker.
---
Diffs of the changes: (+2 -0)
Index: llvm/utils/check-each-file
diff -u llvm/utils/check-each-file:1.2 llvm/utils/check-each-file:1.3
--- llvm/utils/check-each-file:1.2 Sun Feb 8 02:01:00 2004
+++ llvm/utils/check-each-file Wed Feb 11 12:52:05 2004
@@ -115,6 +115,8 @@
do
rm -f $f && gmake $f CC=llvm-native-gcc
done
+rm -f $program
+$linker
if $checker
then
echo "Sorry, I can't help you, $program is OK when compiled with llvm-native-gcc"
More information about the llvm-commits
mailing list