From a09f1a766b297f1e248c86b3d2795c1501a506ef Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Wed, 19 Jun 2013 21:01:06 +0000 Subject: re PR driver/57651 (gcc-ar and gcc-nm don't find the lto plugin) 2013-06-19 Matthias Klose PR driver/57651 * file-find.h (find_a_file): Add a mode parameter. * file-find.c (find_a_file): Likewise. * gcc-ar.c (main): Call find_a_file with R_OK for the plugin, with X_OK for the executables. * collect2.c (main): Call find_a_file with X_OK. From-SVN: r200219 --- gcc/file-find.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/file-find.c') diff --git a/gcc/file-find.c b/gcc/file-find.c index 45af9380..bc6b434 100644 --- a/gcc/file-find.c +++ b/gcc/file-find.c @@ -31,7 +31,7 @@ find_file_set_debug(bool debug_state) } char * -find_a_file (struct path_prefix *pprefix, const char *name) +find_a_file (struct path_prefix *pprefix, const char *name, int mode) { char *temp; struct prefix_list *pl; @@ -50,7 +50,7 @@ find_a_file (struct path_prefix *pprefix, const char *name) if (IS_ABSOLUTE_PATH (name)) { - if (access (name, X_OK) == 0) + if (access (name, mode) == 0) { strcpy (temp, name); @@ -66,7 +66,7 @@ find_a_file (struct path_prefix *pprefix, const char *name) strcpy (temp, name); strcat (temp, HOST_EXECUTABLE_SUFFIX); - if (access (temp, X_OK) == 0) + if (access (temp, mode) == 0) return temp; #endif @@ -83,7 +83,7 @@ find_a_file (struct path_prefix *pprefix, const char *name) if (stat (temp, &st) >= 0 && ! S_ISDIR (st.st_mode) - && access (temp, X_OK) == 0) + && access (temp, mode) == 0) return temp; #ifdef HOST_EXECUTABLE_SUFFIX @@ -93,7 +93,7 @@ find_a_file (struct path_prefix *pprefix, const char *name) if (stat (temp, &st) >= 0 && ! S_ISDIR (st.st_mode) - && access (temp, X_OK) == 0) + && access (temp, mode) == 0) return temp; #endif } -- cgit v1.1