Commit e29354d4 by Samuel Thibault Committed by Thomas Schwinge

tlink.c: Include "libiberty.h".

2008-11-20  Samuel Thibault  <samuel.thibault@ens-lyon.org>

	* tlink.c: Include "libiberty.h".
	(initial_cwd): Change type into char *.
	(tlink_init): Call getpwd instead of getcwd.

From-SVN: r142043
parent 32427faa
2008-11-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
* tlink.c: Include "libiberty.h".
(initial_cwd): Change type into char *.
(tlink_init): Call getpwd instead of getcwd.
2008-11-19 Zdenek Dvorak <ook@ucw.cz> 2008-11-19 Zdenek Dvorak <ook@ucw.cz>
PR rtl-optimization/32283 PR rtl-optimization/32283
......
...@@ -30,6 +30,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -30,6 +30,7 @@ along with GCC; see the file COPYING3. If not see
#include "hashtab.h" #include "hashtab.h"
#include "demangle.h" #include "demangle.h"
#include "collect2.h" #include "collect2.h"
#include "libiberty.h"
#define MAX_ITERATIONS 17 #define MAX_ITERATIONS 17
...@@ -38,7 +39,7 @@ extern int prepends_underscore; ...@@ -38,7 +39,7 @@ extern int prepends_underscore;
static int tlink_verbose; 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 /* Hash table boilerplate for working with htab_t. We have hash tables
for symbol names, file names, and demangled symbols. */ for symbol names, file names, and demangled symbols. */
...@@ -273,7 +274,7 @@ tlink_init (void) ...@@ -273,7 +274,7 @@ tlink_init (void)
tlink_verbose = 3; tlink_verbose = 3;
} }
getcwd (initial_cwd, sizeof (initial_cwd)); initial_cwd = getpwd ();
} }
static int static int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment