mt-sde (CFLAGS_FOR_TARGET): Add -mno-gpopt.
[gcc.git] / gcc / config / dbxelf.h
1 /* Definitions needed when using stabs embedded in ELF sections.
2 Copyright (C) 1999, 2004, 2007 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC 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)
9 any later version.
10
11 GCC 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 GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /* This file may be included by any ELF target which wishes to
21 support -gstabs generating stabs in sections, as produced by gas
22 and understood by gdb. */
23
24 #ifndef GCC_DBX_ELF_H
25 #define GCC_DBX_ELF_H
26
27 /* Output DBX (stabs) debugging information if doing -gstabs. */
28
29 #define DBX_DEBUGGING_INFO 1
30
31 /* Make LBRAC and RBRAC addresses relative to the start of the
32 function. The native Solaris stabs debugging format works this
33 way, gdb expects it, and it reduces the number of relocation
34 entries... */
35
36 #define DBX_BLOCKS_FUNCTION_RELATIVE 1
37
38 /* ... but, to make this work, functions must appear prior to line info. */
39
40 #define DBX_FUNCTION_FIRST
41
42 /* When generating stabs debugging, use N_BINCL entries. */
43
44 #define DBX_USE_BINCL
45
46 /* There is no limit to the length of stabs strings. */
47
48 #ifndef DBX_CONTIN_LENGTH
49 #define DBX_CONTIN_LENGTH 0
50 #endif
51
52 /* Like block addresses, stabs line numbers are relative to the
53 current function. */
54
55 #define DBX_LINES_FUNCTION_RELATIVE 1
56
57 /* Generate a blank trailing N_SO to mark the end of the .o file, since
58 we can't depend upon the linker to mark .o file boundaries with
59 embedded stabs. */
60
61 #define DBX_OUTPUT_NULL_N_SO_AT_MAIN_SOURCE_FILE_END
62
63 #endif /* ! GCC_DBX_ELF_H */