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

that it is invalid.
This commit is contained in:
Nick Clifton 2004-07-06 16:42:04 +00:00
parent d98956497e
commit e7bd9ea00e
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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);
}