1 /* output-file.c - Deal with the output file
2 Copyright (C) 1987-2024 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25 #include "output-file.h"
34 output_file_create (const char *name
)
36 if (name
[0] == '-' && name
[1] == '\0')
37 as_fatal (_("can't open a bfd on stdout %s"), name
);
39 else if (!(stdoutput
= bfd_openw (name
, TARGET_FORMAT
)))
41 bfd_error_type err
= bfd_get_error ();
43 if (err
== bfd_error_invalid_target
)
44 as_fatal (_("selected target format '%s' unknown"), TARGET_FORMAT
);
46 as_fatal (_("can't create %s: %s"), name
, bfd_errmsg (err
));
49 bfd_set_format (stdoutput
, bfd_object
);
50 bfd_set_arch_mach (stdoutput
, TARGET_ARCH
, TARGET_MACH
);
51 if (flag_traditional_format
)
52 stdoutput
->flags
|= BFD_TRADITIONAL_FORMAT
;
56 stash_frchain_obs (asection
*sec
)
58 segment_info_type
*info
= seg_info (sec
);
61 struct frchain
*frchp
;
62 for (frchp
= info
->frchainP
; frchp
; frchp
= frchp
->frch_next
)
63 obstack_ptr_grow (¬es
, &frchp
->frch_obstack
);
64 info
->frchainP
= NULL
;
69 output_file_close (void)
72 bfd
*obfd
= stdoutput
;
80 /* Prevent an infinite loop - if the close failed we will call as_fatal
81 which will call xexit() which may call this function again... */
84 /* We can't free obstacks attached to the output bfd sections before
85 closing the output bfd since data in those obstacks may need to
86 be accessed, but we can't access anything in the output bfd after
88 for (sec
= obfd
->sections
; sec
; sec
= sec
->next
)
89 stash_frchain_obs (sec
);
90 stash_frchain_obs (reg_section
);
91 stash_frchain_obs (expr_section
);
92 stash_frchain_obs (bfd_abs_section_ptr
);
93 stash_frchain_obs (bfd_und_section_ptr
);
94 obstack_ptr_grow (¬es
, NULL
);
95 obs
= obstack_finish (¬es
);
98 if (!flag_always_generate_output
&& had_errors ())
99 res
= bfd_close_all_done (obfd
);
101 res
= bfd_close (obfd
);
105 filename
= out_file_name
;
106 out_file_name
= NULL
;
107 if (!keep_it
&& filename
)
108 unlink_if_ordinary (filename
);
123 as_fatal ("%s: %s", filename
, bfd_errmsg (bfd_get_error ()));