OSDN Git Service

Change callers in config/[h-l]*/ to match:
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / svr3dbx.h
1 /* Definitions for Intel 386 running system V, using dbx-in-coff encapsulation.
2    Copyright (C) 1992, 1995 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC 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 2, or (at your option)
9 any later version.
10
11 GNU CC 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.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 #include "i386/svr3gas.h"
22
23 /* We do not want to output SDB debugging information.  */
24
25 #undef SDB_DEBUGGING_INFO
26
27 /* We want to output DBX debugging information.  */
28
29 #define DBX_DEBUGGING_INFO
30
31 /* Compensate for botch in dbxout_init/dbxout_source_file which
32    unconditionally drops the first character from ltext_label_name */
33
34 #undef ASM_GENERATE_INTERNAL_LABEL
35 #define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER)  \
36     sprintf ((BUF), "*.%s%d", (PREFIX), (NUMBER))
37
38 /* With the current gas, .align N aligns to an N-byte boundary.
39    This is done to be compatible with the system assembler.
40    You must specify -DOTHER_ALIGN when building gas-1.38.1.  */
41
42 #undef ASM_OUTPUT_ALIGN
43 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
44      if ((LOG)!=0) fprintf ((FILE), "\t.align %d\n", 1<<(LOG))
45
46 /* Align labels, etc. at 4-byte boundaries.
47    For the 486, align to 16-byte boundary for sake of cache.  */
48
49 #undef LABEL_ALIGN_AFTER_BARRIER
50 #define LABEL_ALIGN_AFTER_BARRIER(LABEL) (i386_align_jumps)
51
52 /* Align start of loop at 4-byte boundary.  */
53
54 #undef LOOP_ALIGN
55 #define LOOP_ALIGN(LABEL) (i386_align_loops)
56
57
58 /* Additional overrides needed for dbx-in-coff gas, mostly taken from pbb.h */
59
60 /* Although the gas we use can create .ctor and .dtor sections from N_SETT
61    stabs, it does not support section directives, so we need to have the loader
62    define the lists.
63  */
64 #define CTOR_LISTS_DEFINED_EXTERNALLY
65
66 /* Use crt1.o as a startup file and crtn.o as a closing file.  */
67 /*
68  * The loader directive file svr3.ifile defines how to merge the constructor 
69  * sections into the data section.  Also, since gas only puts out those 
70  * sections in response to N_SETT stabs, and does not (yet) have a 
71  * ".sections" directive, svr3.ifile also defines the list symbols 
72  * __DTOR_LIST__ and __CTOR_LIST__.
73  */
74 #undef STARTFILE_SPEC
75 #define STARTFILE_SPEC \
76   "%{!r:%{!z:svr3.ifile%s}%{z:svr3z.ifile%s}}\
77    %{pg:gcrt1.o%s}%{!pg:%{posix:%{p:mcrtp1.o%s}%{!p:crtp1.o%s}}%{!posix:%{p:mcrt1.o%s}%{!p:crt1.o%s}}} \
78    %{p:-L/usr/lib/libp}%{pg:-L/usr/lib/libp}"
79   
80 #define ENDFILE_SPEC "crtn.o%s"
81   
82 #undef LIB_SPEC
83 #define LIB_SPEC "%{posix:-lcposix} %{shlib:-lc_s} -lc -lg"