mirror of git://gcc.gnu.org/git/gcc.git
gcc-ar.c (main): Don't check for execute bits for the plugin.
2012-05-09 Matthias Klose <doko@ubuntu.com> * gcc-ar.c (main): Don't check for execute bits for the plugin. From-SVN: r187338
This commit is contained in:
parent
c75e90f3d8
commit
b0cd199e8d
|
@ -1,3 +1,7 @@
|
||||||
|
2012-05-09 Matthias Klose <doko@ubuntu.com>
|
||||||
|
|
||||||
|
* gcc-ar.c (main): Don't check for execute bits for the plugin.
|
||||||
|
|
||||||
2012-05-09 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
|
2012-05-09 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
|
||||||
|
|
||||||
* tree-ssa-loop-ivopts.c (add_autoinc_candidates, get_address_cost):
|
* tree-ssa-loop-ivopts.c (add_autoinc_candidates, get_address_cost):
|
||||||
|
|
|
@ -70,7 +70,7 @@ main(int ac, char **av)
|
||||||
dir_separator,
|
dir_separator,
|
||||||
LTOPLUGINSONAME,
|
LTOPLUGINSONAME,
|
||||||
NULL);
|
NULL);
|
||||||
if (access (plugin, X_OK))
|
if (access (plugin, R_OK))
|
||||||
{
|
{
|
||||||
fprintf (stderr, "%s: Cannot find plugin %s\n", av[0], plugin);
|
fprintf (stderr, "%s: Cannot find plugin %s\n", av[0], plugin);
|
||||||
exit (1);
|
exit (1);
|
||||||
|
|
Loading…
Reference in New Issue