From 1b13783702a6cf6c04d64da51ec511ce641d08d1 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Wed, 7 Jul 2010 23:16:28 +0200 Subject: [PATCH] lto-elf.c (ELFOSABI_NONE, [...]): Define if not defined. * lto-elf.c (ELFOSABI_NONE, ELFOSABI_LINUX): Define if not defined. (validate_file): Allow merging of ELFOSABI_NONE with ELFOSABI_LINUX objects. From-SVN: r161935 --- gcc/lto/ChangeLog | 6 ++++++ gcc/lto/lto-elf.c | 31 ++++++++++++++++++++++++++++--- 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/gcc/lto/ChangeLog b/gcc/lto/ChangeLog index a1a03b67a8c..40886c4b162 100644 --- a/gcc/lto/ChangeLog +++ b/gcc/lto/ChangeLog @@ -1,3 +1,9 @@ +2010-07-07 Jakub Jelinek + + * lto-elf.c (ELFOSABI_NONE, ELFOSABI_LINUX): Define if not defined. + (validate_file): Allow merging of ELFOSABI_NONE with ELFOSABI_LINUX + objects. + 2010-07-05 Jan Hubicka * lto.c (add_cgraph_node_to_partition): Forward declare; walk also diff --git a/gcc/lto/lto-elf.c b/gcc/lto/lto-elf.c index bb4df809d9e..55a3db2228c 100644 --- a/gcc/lto/lto-elf.c +++ b/gcc/lto/lto-elf.c @@ -38,6 +38,13 @@ along with GCC; see the file COPYING3. If not see # define EM_SPARC32PLUS 18 #endif +#ifndef ELFOSABI_NONE +# define ELFOSABI_NONE 0 +#endif +#ifndef ELFOSABI_LINUX +# define ELFOSABI_LINUX 3 +#endif + /* Handle opening elf files on hosts, such as Windows, that may use text file handling that will break binary access. */ @@ -519,10 +526,28 @@ validate_file (lto_elf_file *elf_file) memcpy (cached_file_attrs.elf_ident, elf_ident, sizeof cached_file_attrs.elf_ident); } + else + { + char elf_ident_buf[EI_NIDENT]; + + memcpy (elf_ident_buf, elf_ident, sizeof elf_ident_buf); - if (memcmp (elf_ident, cached_file_attrs.elf_ident, - sizeof cached_file_attrs.elf_ident)) - return false; + if (elf_ident_buf[EI_OSABI] != cached_file_attrs.elf_ident[EI_OSABI]) + { + /* Allow mixing ELFOSABI_NONE with ELFOSABI_LINUX, with the result + ELFOSABI_LINUX. */ + if (elf_ident_buf[EI_OSABI] == ELFOSABI_NONE + && cached_file_attrs.elf_ident[EI_OSABI] == ELFOSABI_LINUX) + elf_ident_buf[EI_OSABI] = cached_file_attrs.elf_ident[EI_OSABI]; + else if (elf_ident_buf[EI_OSABI] == ELFOSABI_LINUX + && cached_file_attrs.elf_ident[EI_OSABI] == ELFOSABI_NONE) + cached_file_attrs.elf_ident[EI_OSABI] = elf_ident_buf[EI_OSABI]; + } + + if (memcmp (elf_ident_buf, cached_file_attrs.elf_ident, + sizeof cached_file_attrs.elf_ident)) + return false; + } /* Check that the input file is a relocatable object file with the correct architecture. */ -- 2.30.2