This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: PATCH: PR ld/12507: Can't build a program with -flto -nostdlib


On Fri, Feb 25, 2011 at 08:33:09PM -0800, H.J. Lu wrote:
> This patch works.

Looks good to me.

> diff --git a/ld/plugin.c b/ld/plugin.c
> index 7892e36..40acbdb 100644
> --- a/ld/plugin.c
> +++ b/ld/plugin.c
> @@ -492,8 +492,7 @@ get_symbols (const void *handle, int nsyms, struct ld_plugin
> _symbol *syms)
>  	 symbol is externally visible.  */
>        ironly = (!is_visible_from_outside (&syms[n], owner_sec, blhe)
>  		&& !bfd_hash_lookup (non_ironly_hash, syms[n].name,
> -				     FALSE, FALSE)
> -		&& strcmp (syms[n].name, entry_symbol.name) != 0);
> +				     FALSE, FALSE));
> 
>        /* If it was originally undefined or common, then it has been
>  	 resolved; determine how.  */
> @@ -838,6 +837,8 @@ plugin_call_cleanup (void)
>  static void
>  init_non_ironly_hash (void)
>  {
> +  struct bfd_sym_chain *sym;
> +
>    if (non_ironly_hash == NULL)
>      {
>        non_ironly_hash =
> @@ -847,6 +848,12 @@ init_non_ironly_hash (void)
>  				  sizeof (struct bfd_hash_entry),
>  				  61))
>  	einfo (_("%P%F: bfd_hash_table_init failed: %E\n"));
> +
> +      for (sym = &entry_symbol; sym != NULL; sym = sym->next)
> +	if (sym->name
> +	    && !bfd_hash_lookup (non_ironly_hash, sym->name, TRUE, TRUE))
> +	  einfo (_("%P%X: hash table failure adding symbol %s\n"),
> +		 sym->name);
>      }
>  }

-- 
Alan Modra
Australia Development Lab, IBM


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]