OSDN Git Service

* config/xtensa/elf.h (ASM_SPEC): Remove no-density option. Reformat.
[pf3gnuchains/gcc-fork.git] / gcc / config / xtensa / elf.h
1 /* Xtensa/Elf configuration.
2    Derived from the configuration for GCC for Intel i386 running Linux.
3    Copyright (C) 2001,2003 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21
22 #define TARGET_SECTION_TYPE_FLAGS xtensa_multibss_section_type_flags
23
24 /* Don't assume anything about the header files. */
25 #define NO_IMPLICIT_EXTERN_C
26
27 #undef ASM_APP_ON
28 #define ASM_APP_ON "#APP\n"
29
30 #undef ASM_APP_OFF
31 #define ASM_APP_OFF "#NO_APP\n"
32
33 #undef MD_EXEC_PREFIX
34 #undef MD_STARTFILE_PREFIX
35
36 #undef TARGET_VERSION
37 #define TARGET_VERSION fputs (" (Xtensa/ELF)", stderr);
38
39 #undef WCHAR_TYPE
40 #define WCHAR_TYPE "short unsigned int"
41
42 #undef WCHAR_TYPE_SIZE
43 #define WCHAR_TYPE_SIZE 16
44
45 #undef ASM_SPEC
46 #define ASM_SPEC \
47  "%{v} \
48   %{mtext-section-literals:--text-section-literals} \
49   %{mno-text-section-literals:--no-text-section-literals} \
50   %{mtarget-align:--target-align} \
51   %{mno-target-align:--no-target-align} \
52   %{mlongcalls:--longcalls} \
53   %{mno-longcalls:--no-longcalls}"
54
55 #undef LIB_SPEC
56 #define LIB_SPEC "-lc -lsim -lc -lhandlers-sim -lhal"
57
58 #undef STARTFILE_SPEC
59 #define STARTFILE_SPEC "crt1-sim%O%s crti%O%s crtbegin%O%s _vectors%O%s"
60
61 #undef ENDFILE_SPEC
62 #define ENDFILE_SPEC "crtend%O%s crtn%O%s"  
63
64 #undef LINK_SPEC
65 #define LINK_SPEC \
66  "%{shared:-shared} \
67   %{!shared: \
68     %{!static: \
69       %{rdynamic:-export-dynamic} \
70     %{static:-static}}}"
71
72 #undef LOCAL_LABEL_PREFIX
73 #define LOCAL_LABEL_PREFIX      "."
74
75 /* Avoid dots for compatibility with VxWorks.  */
76 #undef NO_DOLLAR_IN_LABEL
77 #define NO_DOT_IN_LABEL
78
79 /* Do not force "-fpic" for this target.  */
80 #define XTENSA_ALWAYS_PIC 0
81
82 /* Redefine the standard ELF version of ASM_DECLARE_FUNCTION_SIZE to
83    allow adding the ".end literal_prefix" directive at the end of the
84    function.  */
85 #undef ASM_DECLARE_FUNCTION_SIZE
86 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL)            \
87   do                                                            \
88     {                                                           \
89       if (!flag_inhibit_size_directive)                         \
90         ASM_OUTPUT_MEASURED_SIZE (FILE, FNAME);                 \
91       XTENSA_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL);          \
92     }                                                           \
93   while (0)