Change the compilers to alias -pthread to -lpthread.
[dragonfly.git] / gnu / usr.bin / cc34 / cc_prep / config / dragonfly-spec.h
blobb49eae1c4f1fdd404d648b4b05e96245ee9a940f
1 /* $DragonFly: src/gnu/usr.bin/cc34/cc_prep/config/dragonfly-spec.h,v 1.13 2007/04/17 12:18:37 corecode Exp $ */
3 /* Base configuration file for all DragonFly targets.
4 Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC 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.
13 GCC 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.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* Common DragonFly configuration.
24 All DragonFly architectures should include this file, which will specify
25 their commonalities.
27 Adapted from gcc/config/freebsd-spec.h by
28 Joerg Sonnenberger <joerg@bec.de>
30 Adapted from gcc/config/freebsd.h by
31 David O'Brien <obrien@FreeBSD.org>
32 Loren J. Rittle <ljrittle@acm.org>. */
35 /* This defines which switch letters take arguments. On DragonFly, most of
36 the normal cases (defined in gcc.c) apply, and we also have -h* and
37 -z* options (for the linker) (coming from SVR4).
38 We also have -R (alias --rpath), no -z, --soname (-h), --assert etc. */
40 #define DFBSD_SWITCH_TAKES_ARG(CHAR) \
41 (DEFAULT_SWITCH_TAKES_ARG (CHAR) \
42 || (CHAR) == 'h' \
43 || (CHAR) == 'z' /* ignored by ld */ \
44 || (CHAR) == 'R')
46 /* This defines which multi-letter switches take arguments. */
48 #define DFBSD_WORD_SWITCH_TAKES_ARG(STR) \
49 (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \
50 || !strcmp ((STR), "rpath") || !strcmp ((STR), "rpath-link") \
51 || !strcmp ((STR), "soname") || !strcmp ((STR), "defsym") \
52 || !strcmp ((STR), "assert") || !strcmp ((STR), "dynamic-linker"))
54 #define DFBSD_TARGET_OS_CPP_BUILTINS() \
55 do \
56 { \
57 if (DFBSD_MAJOR == 3) \
58 builtin_define ("__DragonFly__=3"); \
59 else if (DFBSD_MAJOR == 2) \
60 builtin_define ("__DragonFly__=2"); \
61 else if (DFBSD_MAJOR == 1) \
62 builtin_define ("__DragonFly__=1"); \
63 else \
64 builtin_define ("__DragonFly__"); \
65 builtin_define ("__DragonFly_cc_version=100001"); \
66 builtin_define_std ("unix"); \
67 builtin_define ("__KPRINTF_ATTRIBUTE__"); \
68 builtin_define ("__GCC_VISIBILITY__=1"); \
69 builtin_assert ("system=unix"); \
70 builtin_assert ("system=bsd"); \
71 builtin_assert ("system=DragonFly"); \
72 DFBSD_TARGET_CPU_CPP_BUILTINS(); \
73 } \
74 while (0)
76 /* Define the default DragonFly-specific per-CPU hook code. */
77 #define DFBSD_TARGET_CPU_CPP_BUILTINS() do {} while (0)
79 /* Provide a CPP_SPEC appropriate for DragonFly. We just deal with the GCC
80 option `-posix', and PIC issues. */
82 #define DFBSD_CPP_SPEC " \
83 %(cpp_cpu) \
84 %{fPIC|fpic|fPIE|fpie:-D__PIC__ -D__pic__} \
85 %{posix:-D_POSIX_SOURCE}"
87 /* Provide a STARTFILE_SPEC appropriate for DragonFly. Here we add
88 the magical crtbegin.o file (see crtstuff.c) which provides part
89 of the support for getting C++ file-scope static object constructed
90 before entering `main'. */
92 #define DFBSD_STARTFILE_SPEC \
93 "%{!shared: \
94 %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} \
95 %{!p:%{profile:gcrt1.o%s} \
96 %{!profile:crt1.o%s}}}} \
97 crti.o%s %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
99 /* Provide a ENDFILE_SPEC appropriate for DragonFly. Here we tack on
100 the magical crtend.o file (see crtstuff.c) which provides part of
101 the support for getting C++ file-scope static object constructed
102 before entering `main', followed by a normal "finalizer" file,
103 `crtn.o'. */
105 #define DFBSD_ENDFILE_SPEC \
106 "%{!shared:crtend.o%s} %{shared:crtendS.o%s} crtn.o%s"
108 /* Provide a LIB_SPEC appropriate for DragonFly as configured and as
109 required by the user-land thread model. Select the appropriate libc,
110 depending on whether we're doing profiling or need threads support.
111 Make it a hard error if -pthread is provided on the command line and gcc
112 was configured with --disable-threads (this will help avoid bug
113 reports from users complaining about threading when they
114 misconfigured the gcc bootstrap but are later consulting DragonFly
115 manual pages that refer to the mythical -pthread option). */
117 /* Provide a LIB_SPEC appropriate for DragonFly. Just select the appropriate
118 libc, depending on whether we're doing profiling or need threads support.
119 (simular to the default, except no -lg, and no -p). */
121 #ifdef DFBSD_NO_THREADS
122 #define DFBSD_LIB_SPEC " \
123 %{pthread: %eThe -pthread option is only supported on DragonFly when gcc \
124 is built with the --enable-threads configure-time option.} \
125 %{!nostdlib{!nostartfiles{!nolibc: -lc}}} \
127 #else
128 #define DFBSD_LIB_SPEC " \
129 %{!shared: %{pthread:-lpthread}} \
130 %{!nostdlib: %{!nostartfiles: %{!nolibc: -lc}}} \
132 #endif
134 #define LINK_LIBGCC_SPEC ""
135 #define LIBGCC_SPEC "%{shared: -lgcc_pic} %{!shared: -lgcc}"
137 #define PRE_LIB_SPEC " \
138 %{pg: -L"PREFIX2"/lib/gcc34/profiling \
139 %{!static: -rpath /usr/lib/gcc34/profiling \
140 -rpath-link "PREFIX2"/lib/gcc34/profiling}} \
141 %{g: -L"PREFIX2"/lib/gcc34/debug \
142 %{!static: -rpath /usr/lib/gcc34/debug \
143 -rpath-link "PREFIX2"/lib/gcc34/debug}} \
144 -L"PREFIX2"/lib/gcc34 \
145 %{!static: -rpath /usr/lib/gcc34 -rpath-link "PREFIX2"/lib/gcc34} \
146 %{pg: -L"PREFIX2"/lib/profiling \
147 %{!static: -rpath /usr/lib/profiling \
148 -rpath-link "PREFIX2"/lib/profiling}} \
149 %{g: -L"PREFIX2"/lib/debug \
150 %{!static: -rpath /usr/lib/debug -rpath-link "PREFIX2"/lib/debug}} \
151 %{!static: -rpath /usr/lib -rpath-link "PREFIX2"/lib} \
154 #define DFBSD_LINK_COMMAND_SPEC "\
155 %{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
156 %(linker) %l " LINK_PIE_SPEC "%X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r}\
157 %{s} %{t} %{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
158 %{static:} %{L*} %(link_libgcc) %o \
159 %{fprofile-arcs|fprofile-generate: -lgcov}\
160 %{!nostdlib:%{!nodefaultlibs:%(pre_lib)}}\
161 %{!nostdlib:%{!nodefaultlibs:%(link_gcc_c_sequence)}}\
162 %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
164 #define DFBSD_DYNAMIC_LINKER "/usr/libexec/ld-elf.so.2"
165 #define STANDARD_STARTFILE_PREFIX_1 PREFIX2"/lib/gcc34/"
166 #define STANDARD_EXEC_PREFIX PREFIX2"/libexec/gcc34/"
167 #define STANDARD_STARTFILE_PREFIX PREFIX2"/lib/gcc34/"
168 #define TOOLDIR_BASE_PREFIX PREFIX2"/libexec/gcc34"
169 #define STANDARD_BINDIR_PREFIX PREFIX2"/libexec/gcc34"
170 #define STANDARD_LIBEXEC_PREFIX PREFIX2"/libexec/gcc34"
172 #define GPLUSPLUS_INCLUDE_DIR PREFIX2"/include/c++"
173 #define GPLUSPLUS_TOOL_INCLUDE_DIR PREFIX2"/include/c++/3.4"
174 #define GPLUSPLUS_BACKWARD_INCLUDE_DIR PREFIX2"/include/c++/3.4/backward"
175 #define GCC_LOCAL_INCLUDE_DIR PREFIX2"/libdata/gcc34"
176 #define GCC_INCLUDE_DIR PREFIX2"/include"
178 #undef INCLUDE_DEFAULTS
179 #define INCLUDE_DEFAULTS \
181 { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1 }, \
182 { GPLUSPLUS_TOOL_INCLUDE_DIR, "G++", 1, 1, 0 }, \
183 { GPLUSPLUS_BACKWARD_INCLUDE_DIR, "G++", 1, 1, 0 }, \
184 { GCC_INCLUDE_DIR, "GCC", 0, 0 }, \
185 { GCC_LOCAL_INCLUDE_DIR, "GCC", 0, 0 }, \
186 { NULL, NULL, 0, 0 } \