+2011-01-10 H.J. Lu <hongjiu.lu@intel.com>
+
+ * ldlang.c (startup_file): Removed.
+ (lang_startup): Updated.
+
2011-01-05 H.J. Lu <hongjiu.lu@intel.com>
PR ld/12364
#define obstack_chunk_alloc xmalloc
#define obstack_chunk_free free
-static const char *startup_file;
static const char *entry_symbol_default = "start";
static bfd_boolean placed_commons = FALSE;
static bfd_boolean stripped_excluded_sections = FALSE;
void
lang_startup (const char *name)
{
- if (startup_file != NULL)
+ if (first_file->filename != NULL)
{
einfo (_("%P%F: multiple STARTUP files\n"));
}
first_file->filename = name;
first_file->local_sym_name = name;
first_file->real = TRUE;
-
- startup_file = name;
}
void