From ede575495613c7d0f1332379878dee17cf7f9739 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 15 Dec 1993 18:09:47 -0500 Subject: [PATCH] (gnucompare, gnucompare3): New targets. From-SVN: r6236 --- gcc/Makefile.in | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 65b180a1666..6ccaed274f8 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2136,6 +2136,21 @@ compare3: force done -rm -f tmp-foo* +# Compare the object files in the current directory with those in the +# stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid +# running tail and the overhead of twice copying each object file. + +gnucompare: force + for file in *.o; do \ + cmp --ignore-initial=16 $$file stage2/$$file || true ; \ + done + +# Similar, but compare with stage3 directory +gnucompare3: force + for file in *.o; do \ + cmp --ignore-initial=16 $$file stage3/$$file || true ; \ + done + # Copy the object files from a particular stage into a subdirectory. stage1: force -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi -- 2.30.2