diff options
author | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-02 08:56:04 +0000 |
---|---|---|
committer | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-02 08:56:04 +0000 |
commit | 3d6b3bc9f3deef0ec80912317ef36ee4e01ebd80 (patch) | |
tree | 99a69350225adc7b80254507044b8c4d1993a624 /contrib/compare-debug | |
parent | 53d9c607ae481ef9facfbc43a0ab7bdee3de7930 (diff) | |
download | gcc-3d6b3bc9f3deef0ec80912317ef36ee4e01ebd80.tar.gz |
fix darwin8 bootstrap issue
* compare-debug (Darwin): Remove '-x' flag from ld-based object
stripping. Add a comment as to why we do it this way.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161686 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/compare-debug')
-rwxr-xr-x | contrib/compare-debug | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/compare-debug b/contrib/compare-debug index 820721cd971..ea68b437db0 100755 --- a/contrib/compare-debug +++ b/contrib/compare-debug @@ -59,8 +59,10 @@ trap 'rm -f "$1.$suf1" "$2.$suf2"' 0 1 2 15 case `uname -s` in Darwin) - ld -S -x -r -no_uuid "$1" -o "$1.$suf1" - ld -S -x -r -no_uuid "$2" -o "$2.$suf2" + # The strip command on darwin does not remove all debug info. + # Fortunately, we can use ld to do it instead. + ld -S -r -no_uuid "$1" -o "$1.$suf1" + ld -S -r -no_uuid "$2" -o "$2.$suf2" ;; *) cp "$1" "$1.$suf1" |