2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / config / freebsd-spec.h
blob45d69a685b1bf20d9a1fb85540f861cb89d290c7
1 /* Base configuration file for all FreeBSD targets.
2 Copyright (C) 1999-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
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.
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.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 /* Common FreeBSD configuration.
26 All FreeBSD architectures should include this file, which will specify
27 their commonalities.
28 Adapted from gcc/config/freebsd.h by
29 David O'Brien <obrien@FreeBSD.org>
30 Loren J. Rittle <ljrittle@acm.org>. */
33 /* In case we need to know. */
34 #define USING_CONFIG_FREEBSD_SPEC 1
36 #define FBSD_TARGET_OS_CPP_BUILTINS() \
37 do \
38 { \
39 builtin_define_with_int_value ("__FreeBSD__", FBSD_MAJOR); \
40 builtin_define_std ("unix"); \
41 builtin_define ("__KPRINTF_ATTRIBUTE__"); \
42 builtin_assert ("system=unix"); \
43 builtin_assert ("system=bsd"); \
44 builtin_assert ("system=FreeBSD"); \
45 FBSD_TARGET_CPU_CPP_BUILTINS(); \
46 } \
47 while (0)
49 /* Define the default FreeBSD-specific per-CPU hook code. */
50 #define FBSD_TARGET_CPU_CPP_BUILTINS() do {} while (0)
52 /* Provide a CPP_SPEC appropriate for FreeBSD. We just deal with the GCC
53 option `-posix', and PIC issues. */
55 #define FBSD_CPP_SPEC " \
56 %(cpp_cpu) \
57 %(cpp_arch) \
58 %{posix:-D_POSIX_SOURCE}"
60 /* Provide a STARTFILE_SPEC appropriate for FreeBSD. Here we add
61 the magical crtbegin.o file (see crtstuff.c) which provides part
62 of the support for getting C++ file-scope static object constructed
63 before entering `main'. */
65 #define FBSD_STARTFILE_SPEC \
66 "%{!shared: \
67 %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} \
68 %{!p:%{profile:gcrt1.o%s} \
69 %{!profile: \
70 %{pie: Scrt1.o%s;:crt1.o%s}}}}} \
71 crti.o%s %{static:crtbeginT.o%s;shared|pie:crtbeginS.o%s;:crtbegin.o%s}"
73 /* Provide a ENDFILE_SPEC appropriate for FreeBSD. Here we tack on
74 the magical crtend.o file (see crtstuff.c) which provides part of
75 the support for getting C++ file-scope static object constructed
76 before entering `main', followed by a normal "finalizer" file,
77 `crtn.o'. */
79 #define FBSD_ENDFILE_SPEC \
80 "%{shared|pie:crtendS.o%s;:crtend.o%s} crtn.o%s"
82 /* Provide a LIB_SPEC appropriate for FreeBSD as configured and as
83 required by the user-land thread model. Before __FreeBSD_version
84 500016, select the appropriate libc, depending on whether we're
85 doing profiling or need threads support. At __FreeBSD_version
86 500016 and later, when threads support is requested include both
87 -lc and the threading lib instead of only -lc_r. To make matters
88 interesting, we can't actually use __FreeBSD_version provided by
89 <osreldate.h> directly since it breaks cross-compiling. As a final
90 twist, make it a hard error if -pthread is provided on the command
91 line and gcc was configured with --disable-threads (this will help
92 avoid bug reports from users complaining about threading when they
93 misconfigured the gcc bootstrap but are later consulting FreeBSD
94 manual pages that refer to the mythical -pthread option). */
96 /* Provide a LIB_SPEC appropriate for FreeBSD. Just select the appropriate
97 libc, depending on whether we're doing profiling or need threads support.
98 (similar to the default, except no -lg, and no -p). */
100 #ifdef FBSD_NO_THREADS
101 #define FBSD_LIB_SPEC " \
102 %{pthread: %eThe -pthread option is only supported on FreeBSD when gcc \
103 is built with the --enable-threads configure-time option.} \
104 %{!shared: \
105 %{!pg: -lc} \
106 %{pg: -lc_p} \
108 #else
109 #if FBSD_MAJOR < 5
110 #define FBSD_LIB_SPEC " \
111 %{!shared: \
112 %{!pg: \
113 %{!pthread:-lc} \
114 %{pthread:-lc_r}} \
115 %{pg: \
116 %{!pthread:-lc_p} \
117 %{pthread:-lc_r_p}} \
119 #else
120 #define FBSD_LIB_SPEC " \
121 %{!shared: \
122 %{!pg: %{pthread:-lpthread} -lc} \
123 %{pg: %{pthread:-lpthread_p} -lc_p} \
125 %{shared: \
126 %{pthread:-lpthread} -lc \
128 #endif
129 #endif
131 #if FBSD_MAJOR < 6
132 #define FBSD_DYNAMIC_LINKER "/usr/libexec/ld-elf.so.1"
133 #else
134 #define FBSD_DYNAMIC_LINKER "/libexec/ld-elf.so.1"
135 #endif
137 /* NOTE: The freebsd-spec.h header is included also for various
138 non-FreeBSD powerpc targets, thus it should never define macros
139 other than FBSD_* prefixed ones, or USING_CONFIG_FREEBSD_SPEC. */