Thu Apr 21 12:12:26 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
+ * objdump.c (_DUMMY_NAME_): Don't define.
+ (display_target_list): Use tmpnam to get a file name rather than
+ using _DUMMY_NAME_. Unlink it when done.
+ (display_info_table): Likewise.
+
* nlmconv.c (secsec): New static variable.
(main): Create .nlmsections section in output BFD. Store
information about it in sections header.
}
}
\f
-/* A file to open each BFD on. It will never actually be written to. */
-#ifdef __GO32__
-#define _DUMMY_NAME_ "##dummy"
-#else
-#define _DUMMY_NAME_ "/dev/null"
-#endif
-
/* The length of the longest architecture name + 1. */
#define LONGEST_ARCH sizeof("rs6000:6000")
static void
display_target_list ()
{
+ extern char *tmpnam ();
extern bfd_target *bfd_target_vector[];
+ char *dummy_name;
int t;
+ dummy_name = tmpnam ((char *) NULL);
for (t = 0; bfd_target_vector[t]; t++)
{
int a;
bfd_target *p = bfd_target_vector[t];
- bfd *abfd = bfd_openw (_DUMMY_NAME_, p->name);
+ bfd *abfd = bfd_openw (dummy_name, p->name);
/* It *is* possible that bfd_openw might fail; avoid the
tragic consequences that would otherwise ensue. */
if (abfd == NULL)
{
- bfd_nonfatal (_DUMMY_NAME_);
+ bfd_nonfatal (dummy_name);
+ unlink (dummy_name);
return;
}
bfd_set_format (abfd, bfd_object);
printf (" %s\n",
bfd_printable_arch_mach ((enum bfd_architecture) a, 0));
}
+ unlink (dummy_name);
}
/* Print a table showing which architectures are supported for entries
int first;
int last;
{
- int t, a;
extern bfd_target *bfd_target_vector[];
+ extern char *tmpnam ();
+ int t, a;
+ char *dummy_name;
/* Print heading of target names. */
printf ("\n%*s", (int) LONGEST_ARCH, " ");
printf ("%s ", bfd_target_vector[t]->name);
putchar ('\n');
+ dummy_name = tmpnam ((char *) NULL);
for (a = (int) bfd_arch_obscure + 1; a < (int) bfd_arch_last; a++)
if (strcmp (bfd_printable_arch_mach (a, 0), "UNKNOWN!") != 0)
{
for (t = first; t++ < last && bfd_target_vector[t];)
{
bfd_target *p = bfd_target_vector[t];
- bfd *abfd = bfd_openw (_DUMMY_NAME_, p->name);
+ bfd *abfd = bfd_openw (dummy_name, p->name);
/* Just in case the open failed somehow. */
if (abfd == NULL)
{
- bfd_nonfatal (_DUMMY_NAME_);
+ bfd_nonfatal (dummy_name);
+ unlink (dummy_name);
return;
}
bfd_set_format (abfd, bfd_object);
}
putchar ('\n');
}
+ unlink (dummy_name);
}
/* Print tables of all the target-architecture combinations that