gcc44: Improve locale support in libstdc++.
[dragonfly.git] / contrib / gcc-4.4 / gcc / config / dragonfly.h
1 /* Base configuration file for all DragonFly targets.
2    Copyright (C) 1999, 2000, 2001, 2007, 2008 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 /* Common DragonFly configuration.
21    All DragonFly architectures should include this file, which will specify
22    their commonalities.
23
24    Adapted from gcc/config/freebsd.h by
25    Joerg Sonnenberger <joerg@bec.de>
26
27    Adapted from gcc/config/i386/freebsd-elf.h by
28    David O'Brien <obrien@FreeBSD.org>.
29    Further work by David O'Brien <obrien@FreeBSD.org> and
30    Loren J. Rittle <ljrittle@acm.org>.  */
31
32
33 /* This defines which switch letters take arguments.  On DragonFly, most of
34    the normal cases (defined in gcc.c) apply, and we also have -h* and
35    -z* options (for the linker) (coming from SVR4).
36    We also have -R (alias --rpath), no -z, --soname (-h), --assert etc.  */
37
38 #undef  SWITCH_TAKES_ARG
39 #define SWITCH_TAKES_ARG(CHAR)                                          \
40   (DEFAULT_SWITCH_TAKES_ARG (CHAR)                                      \
41     || (CHAR) == 'h'                                                    \
42     || (CHAR) == 'z' /* ignored by ld */                                \
43     || (CHAR) == 'R')
44
45
46 #undef  WORD_SWITCH_TAKES_ARG
47 #define WORD_SWITCH_TAKES_ARG(STR)                                      \
48   (DEFAULT_WORD_SWITCH_TAKES_ARG (STR)                                  \
49    || !strcmp ((STR), "rpath")  || !strcmp ((STR), "rpath-link")        \
50    || !strcmp ((STR), "soname") || !strcmp ((STR), "defsym")            \
51    || !strcmp ((STR), "assert") || !strcmp ((STR), "dynamic-linker"))
52
53
54 /* JRM: 15 Nov 2010
55    SWITCH_TAKES_ARG & WORD_SWITCH_TAKES_ARG removed due to poisoning
56    prior to gcc 4.6.0 release.  Replaced with dragonfly.opt.
57    http://gcc.gnu.org/ml/gcc-patches/2010-10/msg02102.html
58    http://gcc.gnu.org/ml/gcc-patches/2010-10/msg02373.html */
59    
60 #undef  TARGET_OS_CPP_BUILTINS
61 #define TARGET_OS_CPP_BUILTINS()            \
62   do                                        \
63     {                                       \
64        builtin_define_std ("unix");         \
65        builtin_define ("__DragonFly__");    \
66        builtin_assert ("system=unix");      \
67        builtin_assert ("system=bsd");       \
68        builtin_assert ("system=DragonFly"); \
69     }                                       \
70   while (0)
71
72 #undef  CPP_SPEC
73 #define CPP_SPEC \
74  "%(cpp_cpu) %(cpp_arch) %{posix:-D_POSIX_SOURCE}"
75
76 #undef  STARTFILE_SPEC
77 #define STARTFILE_SPEC  \
78   "%{!shared: \
79      %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} \
80                        %{!p:%{profile:gcrt1.o%s} \
81                          %{!profile:crt1.o%s}}}} \
82    crti.o%s %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
83
84 #undef  ENDFILE_SPEC
85 #define ENDFILE_SPEC \
86   "%{!shared:crtend.o%s} %{shared:crtendS.o%s} crtn.o%s"
87
88 #undef  LIB_SPEC
89 #define LIB_SPEC \
90   "%{pthread:-lpthread} -lc"
91
92 /* Provide a LINK_SPEC appropriate for DragonFly.  Here we provide support
93    for the special GCC options -static and -shared, which allow us to
94    link things in one of these three modes by applying the appropriate
95    combinations of options at link-time.
96
97    When the -shared link option is used a final link is not being
98    done.  */
99
100 #define DFBSD_LINK_SPEC \
101  "%{p:%nconsider using '-pg' instead of '-p' with gprof(1)} \
102   %{v:-V} \
103   %{assert*} %{R*} %{rpath*} %{defsym*} \
104   %{shared:-Bshareable %{h*} %{soname*}} \
105     %{!shared: \
106       %{!static: \
107         %{rdynamic:-export-dynamic} \
108         -dynamic-linker %(dfbsd_dynamic_linker) } \
109     %{static:-Bstatic}} \
110   %{symbolic:-Bsymbolic}"
111
112 #undef  LINK_SPEC
113 #define LINK_SPEC DFBSD_LINK_SPEC
114
115 #define DFBSD_DYNAMIC_LINKER \
116   "/usr/libexec/ld-elf.so.2"
117
118 #if defined(HAVE_LD_EH_FRAME_HDR)
119 #define LINK_EH_SPEC \
120   "%{!static:--eh-frame-hdr}"
121 #endif
122
123 /* Use --as-needed -lgcc_s for eh support.  */
124 #ifdef HAVE_LD_AS_NEEDED
125 #define USE_LD_AS_NEEDED 1
126 #endif
127
128 /************************[  Target stuff  ]***********************************/
129
130 /* All DragonFly Architectures support the ELF object file format.  */
131 #undef  OBJECT_FORMAT_ELF
132 #define OBJECT_FORMAT_ELF
133
134 /* Don't assume anything about the header files.  */
135 #undef  NO_IMPLICIT_EXTERN_C
136 #define NO_IMPLICIT_EXTERN_C    1
137
138 /* Make gcc agree with DragonFly's standard headers (<machine/stdint.h>, etc...)  */
139
140 #undef  WCHAR_TYPE
141 #define WCHAR_TYPE "int"
142
143 #define MATH_LIBRARY_PROFILE    "-lm_p"
144
145 /* Code generation parameters.  */
146
147 /* Use periods rather than dollar signs in special g++ assembler names.
148    This ensures the configuration knows our system correctly so we can link
149    with libraries compiled with the native cc.  */
150 #undef NO_DOLLAR_IN_LABEL
151
152 /* Used by libgcc2.c.  We support file locking with fcntl / F_SETLKW.
153    This enables the test coverage code to use file locking when exiting a
154    program, which avoids race conditions if the program has forked.  */
155 #define TARGET_POSIX_IO