bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Binutils bug


From: Mayan Moudgill
Subject: Binutils bug
Date: Tue, 21 Nov 2000 19:10:22 -0500

Version:
binutils 2.10.1

Symptom:
ar crashes when built for rs6000-ibm-aix target on i586-pc-cygwin host

Fix:
replace line 811 of bfd/rs6000-coff.c

#define xcoff_big_format_p(abfd) \
  (xcoff_ardata (abfd)->magic[1] == 'b' )

with

#define xcoff_big_format_p(abfd) \
  (xcoff_ardata (abfd) != NULL || xcoff_ardata (abfd)->magic[1] == 'b' )

Mayan Moudgill



reply via email to

[Prev in Thread] Current Thread [Next in Thread]