Browse Source

(output_file_create): Report the target format chosen when bfd_openw reports

that it is invalid.
jimb-rda-nptl-branch
Nick Clifton 22 years ago
parent
commit
e7bd9ea00e
  1. 3
      gas/ChangeLog
  2. 5
      gas/output-file.c

3
gas/ChangeLog

@ -1,5 +1,8 @@
2004-07-06 Nick Clifton <nickc@redhat.com>
* output-file.c (output_file_create): Report the target format
chosen when bfd_openw reports that it is invalid.
* config/obj-coff.c (coff_pseudo_table): Only define the weak
pseudo for BFD based assemblers.

5
gas/output-file.c

@ -48,7 +48,10 @@ output_file_create (char *name)
else if (!(stdoutput = bfd_openw (name, TARGET_FORMAT)))
{
as_perror (_("FATAL: can't create %s"), name);
if (bfd_get_error () == bfd_error_invalid_target)
as_perror (_("Selected target format '%s' unknown"), TARGET_FORMAT);
else
as_perror (_("FATAL: can't create %s"), name);
exit (EXIT_FAILURE);
}

Loading…
Cancel
Save