(bfd_get_target_info): Don't use alloca.
+2009-11-18 Alan Modra <amodra@bigpond.net.au>
+
+ * targets.c: Don't include alloca-conf.h.
+ (bfd_get_target_info): Don't use alloca.
+
2009-11-17 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10955
#include "bfd.h"
#include "libbfd.h"
#include "fnmatch.h"
-#include "alloca-conf.h"
/*
It's okay to see some:
for triplets like "pe-arm-wince-little". */
if (!_bfd_find_arch_match (tname, arches, def_target_arch))
{
- char *new_tname = (char *) alloca (strlen (hyp) + 1);
+ char new_tname[50];
+
strcpy (new_tname, hyp);
while ((hyp = strrchr (new_tname, '-')) != NULL)
{