On Wed, Jun 19, 2013 at 02:03:34PM +0200, Matthias Klose wrote:
> Am 27.11.2012 19:14, schrieb Meador Inge:
> > On 11/26/2012 09:05 AM, Richard Biener wrote:
> >
> >> On Wed, Nov 7, 2012 at 10:51 PM, Meador Inge <[email protected]>
> >> wrote:
> >>> Ping ^ 4.
> >>
> >> Ok.
> >
> > Thanks for the review. Committed to trunk.
>
> This did break gcc-ar and gcc-nm; now a regression on the 4.8 branch.
>
> $ gcc-ar-4.8 -h
> gcc-ar-4.8: Cannot find plugin 'liblto_plugin.so'
>
> the plugin is *not* installed with x permission flags (which seems to be the
> standard for shared libraries). You did change the code to use find_a_file
> which searches only for files with the x bit set.
That actually is the standard for shared libraries, the linker creates
libraries with those permissions and libtool/automake installs them that way
too. So if you override this, you need to cope with that decision.
Jakub