Fix for PR39557
[official-gcc.git] / contrib / compare-debug
blob6e979e9d7865844fab944b01226199810ace5f34
1 #! /bin/sh
3 # Compare stripped copies of two given object files.
5 # Copyright (C) 2007 Free Software Foundation
6 # Originally by Alexandre Oliva <aoliva@redhat.com>
8 # This file is part of GCC.
10 # GCC is free software; you can redistribute it and/or modify it under
11 # the terms of the GNU General Public License as published by the Free
12 # Software Foundation; either version 3, or (at your option) any later
13 # version.
15 # GCC is distributed in the hope that it will be useful, but WITHOUT
16 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
18 # License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with GCC; see the file COPYING3. If not see
22 # <http://www.gnu.org/licenses/>.
24 rm='rm -f'
26 case $1 in
27 -p | --preserve)
28 rm='echo preserving'
29 shift
31 esac
33 if test $# != 2; then
34 echo 'usage: compare-debug file1.o file2.o' >&2
35 exit 1
38 if test ! -f "$1"; then
39 echo "$1" does not exist >&2
40 exit 1
43 if test ! -f "$2"; then
44 echo "$2" does not exist >&2
45 exit 1
48 suf1=stripped
49 while test -f "$1.$suf1"; do
50 suf1=$suf1.
51 done
53 suf2=stripped
54 while test -f "$2.$suf2"; do
55 suf2=$suf2.
56 done
58 trap 'rm -f "$1.$suf1" "$2.$suf2"' 0 1 2 15
60 cp "$1" "$1.$suf1"
61 strip "$1.$suf1"
63 cp "$2" "$2.$suf2"
64 strip "$2.$suf2"
66 if cmp "$1.$suf1" "$2.$suf2"; then
67 status=0
68 else
69 status=1
72 $rm "$1.$suf1" "$2.$suf2"
74 trap "exit $status; exit" 0 1 2 15
76 exit $status