]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* output-file.c - Deal with the output file |
2da5c037 | 2 | Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1996, 1998, 1999, 2001, |
ebd1c875 | 3 | 2003, 2004, 2005, 2006 Free Software Foundation, Inc. |
252b5132 RH |
4 | |
5 | This file is part of GAS, the GNU Assembler. | |
6 | ||
7 | GAS is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2, or (at your option) | |
10 | any later version. | |
11 | ||
12 | GAS is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with GAS; see the file COPYING. If not, write to | |
4b4da160 NC |
19 | the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
20 | 02110-1301, USA. */ | |
252b5132 | 21 | |
252b5132 | 22 | #include "as.h" |
252b5132 RH |
23 | #include "output-file.h" |
24 | ||
252b5132 RH |
25 | #ifndef TARGET_MACH |
26 | #define TARGET_MACH 0 | |
27 | #endif | |
252b5132 | 28 | |
252b5132 RH |
29 | bfd *stdoutput; |
30 | ||
31 | void | |
24361518 | 32 | output_file_create (char *name) |
252b5132 RH |
33 | { |
34 | if (name[0] == '-' && name[1] == '\0') | |
0e389e77 | 35 | as_fatal (_("can't open a bfd on stdout %s"), name); |
f740e790 | 36 | |
252b5132 RH |
37 | else if (!(stdoutput = bfd_openw (name, TARGET_FORMAT))) |
38 | { | |
e7bd9ea0 NC |
39 | if (bfd_get_error () == bfd_error_invalid_target) |
40 | as_perror (_("Selected target format '%s' unknown"), TARGET_FORMAT); | |
41 | else | |
42 | as_perror (_("FATAL: can't create %s"), name); | |
252b5132 RH |
43 | exit (EXIT_FAILURE); |
44 | } | |
f740e790 | 45 | |
252b5132 | 46 | bfd_set_format (stdoutput, bfd_object); |
252b5132 | 47 | bfd_set_arch_mach (stdoutput, TARGET_ARCH, TARGET_MACH); |
252b5132 RH |
48 | if (flag_traditional_format) |
49 | stdoutput->flags |= BFD_TRADITIONAL_FORMAT; | |
50 | } | |
51 | ||
52 | void | |
24361518 | 53 | output_file_close (char *filename) |
252b5132 | 54 | { |
252b5132 RH |
55 | /* Close the bfd. */ |
56 | if (bfd_close (stdoutput) == 0) | |
57 | { | |
58 | bfd_perror (filename); | |
0e389e77 | 59 | as_perror (_("FATAL: can't close %s\n"), filename); |
252b5132 RH |
60 | exit (EXIT_FAILURE); |
61 | } | |
f740e790 | 62 | stdoutput = NULL; /* Trust nobody! */ |
252b5132 | 63 | } |