This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: [PATCH] gold: Maintain sparc ELF header bits properly
- From: Cary Coutant <ccoutant at google dot com>
- To: David Miller <davem at davemloft dot net>
- Cc: binutils at sourceware dot org
- Date: Fri, 20 Apr 2012 15:32:48 -0700
- Subject: Re: [PATCH] gold: Maintain sparc ELF header bits properly
- References: <20120420.181400.1345929482294901637.davem@davemloft.net>
> It really would have been nice if I could just call down into the
> default implementations after I did the sparc specific bits, but
> it's not possible to just simply say:
>
> ?this->do_make_elf_object_implementation(...)
Sure it is:
Target::do_make_elf_object(name, input_file, offset, ehdr);
or even:
this->Target::do_make_elf_object(name, input_file, offset, ehdr);
-cary