OSDN Git Service

* config/linux.h (LIB_SPEC): If -pthread, add -lpthread even if
[pf3gnuchains/gcc-fork.git] / gcc / config / arm / linux-elf.h
1 /* Definitions for ARM running Linux-based GNU systems using ELF
2    Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002 
3    Free Software Foundation, Inc.
4    Contributed by Philip Blundell <philb@gnu.org>
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* elfos.h should have already been included.  Now just override
24    any conflicting definitions and add any extras.  */
25
26 /* Run-time Target Specification.  */
27 #undef  TARGET_VERSION
28 #define TARGET_VERSION  fputs (" (ARM GNU/Linux with ELF)", stderr);
29
30 /* Do not assume anything about header files.  */
31 #define NO_IMPLICIT_EXTERN_C
32
33 /* Default is to use APCS-32 mode.  */
34 #undef  TARGET_DEFAULT
35 #define TARGET_DEFAULT (ARM_FLAG_APCS_32 | ARM_FLAG_MMU_TRAPS)
36
37 #define SUBTARGET_EXTRA_LINK_SPEC " -m armelf_linux -p"
38
39 #undef  MULTILIB_DEFAULTS
40 #define MULTILIB_DEFAULTS \
41         { "marm", "mlittle-endian", "mhard-float", "mapcs-32", "mno-thumb-interwork" }
42
43 #define CPP_APCS_PC_DEFAULT_SPEC "-D__APCS_32__"
44
45 /* The GNU C++ standard library requires that these macros be defined.  */
46 #undef CPLUSPLUS_CPP_SPEC
47 #define CPLUSPLUS_CPP_SPEC "-D_GNU_SOURCE %(cpp)"
48
49 /* Now we define the strings used to build the spec file.  */
50 #define LIB_SPEC \
51   "%{pthread:-lpthread} \
52    %{shared:-lc} \
53    %{!shared:%{profile:-lc_p}%{!profile:-lc}}"
54
55 #define LIBGCC_SPEC "%{msoft-float:-lfloat} -lgcc"
56
57 /* Provide a STARTFILE_SPEC appropriate for GNU/Linux.  Here we add
58    the GNU/Linux magical crtbegin.o file (see crtstuff.c) which
59    provides part of the support for getting C++ file-scope static
60    object constructed before entering `main'. */
61    
62 #undef  STARTFILE_SPEC
63 #define STARTFILE_SPEC \
64   "%{!shared: \
65      %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} \
66                        %{!p:%{profile:gcrt1.o%s} \
67                          %{!profile:crt1.o%s}}}} \
68    crti.o%s %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
69
70 /* Provide a ENDFILE_SPEC appropriate for GNU/Linux.  Here we tack on
71    the GNU/Linux magical crtend.o file (see crtstuff.c) which
72    provides part of the support for getting C++ file-scope static
73    object constructed before entering `main', followed by a normal
74    GNU/Linux "finalizer" file, `crtn.o'.  */
75
76 #undef  ENDFILE_SPEC
77 #define ENDFILE_SPEC \
78   "%{!shared:crtend.o%s} %{shared:crtendS.o%s} crtn.o%s"
79
80 #undef  LINK_SPEC
81 #define LINK_SPEC "%{h*} %{version:-v} \
82    %{b} %{Wl,*:%*} \
83    %{static:-Bstatic} \
84    %{shared:-shared} \
85    %{symbolic:-Bsymbolic} \
86    %{rdynamic:-export-dynamic} \
87    %{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.2} \
88    -X \
89    %{mbig-endian:-EB}" \
90    SUBTARGET_EXTRA_LINK_SPEC
91
92 #define TARGET_OS_CPP_BUILTINS()                \
93     do {                                        \
94         builtin_define_std ("unix");            \
95         builtin_define_std ("linux");           \
96         builtin_define ("__gnu_linux__");       \
97         builtin_define ("__ELF__");             \
98         builtin_assert ("system=unix");         \
99         builtin_assert ("system=posix");        \
100     } while (0)
101
102 /* This is how we tell the assembler that two symbols have the same value.  */
103 #define ASM_OUTPUT_DEF(FILE, NAME1, NAME2) \
104   do                                       \
105     {                                      \
106       assemble_name (FILE, NAME1);         \
107       fputs (" = ", FILE);                 \
108       assemble_name (FILE, NAME2);         \
109       fputc ('\n', FILE);                  \
110     }                                      \
111   while (0)
112
113 /* NWFPE always understands FPA instructions.  */
114 #undef  FP_DEFAULT
115 #define FP_DEFAULT FP_SOFT3
116
117 /* Call the function profiler with a given profile label.  */
118 #undef  ARM_FUNCTION_PROFILER
119 #define ARM_FUNCTION_PROFILER(STREAM, LABELNO)                          \
120 {                                                                       \
121   fprintf (STREAM, "\tbl\tmcount%s\n", NEED_PLT_RELOC ? "(PLT)" : "");  \
122 }
123
124 #undef  CC1_SPEC
125 #define CC1_SPEC "%{profile:-p}"