This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH] drop MAXPATHLEN dependency from gcc/tlink.c
- From: Samuel Thibault <samuel dot thibault at ens-lyon dot org>
- To: Ian Lance Taylor <iant at google dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Mon, 31 Dec 2007 20:55:11 +0000
- Subject: [PATCH] drop MAXPATHLEN dependency from gcc/tlink.c
Hello,
Ian Lance Taylor, le Wed 08 Aug 2007 07:24:19 -0700, a écrit :
> Samuel Thibault <samuel.thibault@ens-lyon.org> writes:
> > * gcc/tlink.c: Include "libiberty.h"
> > (initial_cwd): Change type into char*.
> > (tlink_init): Call getpwd instead of getcwd.
>
> This is OK.
>
> Thanks.
>
> Ian
Could that be applied please?
Samuel
2007-08-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
* gcc/tlink.c: Include "libiberty.h"
(initial_cwd): Change type into char*.
(tlink_init): Call getpwd instead of getcwd.
Index: gcc/tlink.c
===================================================================
--- gcc/tlink.c (revision 127116)
+++ gcc/tlink.c (copie de travail)
@@ -30,6 +30,7 @@
#include "hashtab.h"
#include "demangle.h"
#include "collect2.h"
+#include "libiberty.h"
#define MAX_ITERATIONS 17
@@ -38,7 +39,7 @@
static int tlink_verbose;
-static char initial_cwd[MAXPATHLEN + 1];
+static char *initial_cwd;
/* Hash table boilerplate for working with htab_t. We have hash tables
for symbol names, file names, and demangled symbols. */
@@ -274,7 +275,7 @@
tlink_verbose = 3;
}
- getcwd (initial_cwd, sizeof (initial_cwd));
+ initial_cwd = getpwd ();
}
static int