From: Alan Modra Date: Wed, 20 Feb 2002 13:16:42 +0000 (+0000) Subject: * osf-core.c (osf_core_vec): OSF/1 (Digital Unix) core files are X-Git-Tag: binutils-2_12~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f713a8e3970d55a6b9c9cc53dcef4d68c133c36;p=thirdparty%2Fbinutils-gdb.git * osf-core.c (osf_core_vec): OSF/1 (Digital Unix) core files are little endian. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 126939fb001..3858d5ae540 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2002-02-20 Peter Schauer + + * osf-core.c (osf_core_vec): OSF/1 (Digital Unix) core files are + little endian. + 2002-02-19 Jakub Jelinek * elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Enable diff --git a/bfd/osf-core.c b/bfd/osf-core.c index edf54706e59..862342ec974 100644 --- a/bfd/osf-core.c +++ b/bfd/osf-core.c @@ -191,8 +191,8 @@ const bfd_target osf_core_vec = { "osf-core", bfd_target_unknown_flavour, - BFD_ENDIAN_BIG, /* target byte order */ - BFD_ENDIAN_BIG, /* target headers byte order */ + BFD_ENDIAN_LITTLE, /* target byte order */ + BFD_ENDIAN_LITTLE, /* target headers byte order */ (HAS_RELOC | EXEC_P | /* object flags */ HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS | WP_TEXT | D_PAGED),