annotate gcc/config/i386/mingw32.h @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Operating system specific defines to be used when targeting GCC for
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 hosting on Windows32, using GNU tools and the Windows32 API Library.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
3 Copyright (C) 1997-2020 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 the Free Software Foundation; either version 3, or (at your option)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 any later version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 GNU General Public License for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20
111
kono
parents: 67
diff changeset
21 #undef DEFAULT_ABI
kono
parents: 67
diff changeset
22 #define DEFAULT_ABI MS_ABI
kono
parents: 67
diff changeset
23
kono
parents: 67
diff changeset
24 /* By default, target has a 80387, uses IEEE compatible arithmetic,
kono
parents: 67
diff changeset
25 returns float values in the 387 and needs stack probes.
kono
parents: 67
diff changeset
26 We also align doubles to 64-bits for MSVC default compatibility.
kono
parents: 67
diff changeset
27 Additionally we enable MS_BITFIELD_LAYOUT by default. */
kono
parents: 67
diff changeset
28
kono
parents: 67
diff changeset
29 #undef TARGET_SUBTARGET_DEFAULT
kono
parents: 67
diff changeset
30 #define TARGET_SUBTARGET_DEFAULT \
kono
parents: 67
diff changeset
31 (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS \
kono
parents: 67
diff changeset
32 | MASK_STACK_PROBE | MASK_ALIGN_DOUBLE \
kono
parents: 67
diff changeset
33 | MASK_MS_BITFIELD_LAYOUT)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35 /* See i386/crtdll.h for an alternative definition. _INTEGRAL_MAX_BITS
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 is for compatibility with native compiler. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 #define EXTRA_OS_CPP_BUILTINS() \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 do \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 { \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 builtin_define ("__MSVCRT__"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 builtin_define ("__MINGW32__"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 builtin_define ("_WIN32"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 builtin_define_std ("WIN32"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 builtin_define_std ("WINNT"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45 builtin_define_with_int_value ("_INTEGRAL_MAX_BITS", \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
46 TYPE_PRECISION (intmax_type_node));\
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
47 if (TARGET_64BIT && ix86_abi == MS_ABI) \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
48 { \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49 builtin_define ("__MINGW64__"); \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
50 builtin_define_std ("WIN64"); \
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
51 builtin_define ("_WIN64"); \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
52 } \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
53 } \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
54 while (0)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
55
111
kono
parents: 67
diff changeset
56 #ifndef TARGET_USE_PTHREAD_BY_DEFAULT
kono
parents: 67
diff changeset
57 #define SPEC_PTHREAD1 "pthread"
kono
parents: 67
diff changeset
58 #define SPEC_PTHREAD2 "!no-pthread"
kono
parents: 67
diff changeset
59 #else
kono
parents: 67
diff changeset
60 #define SPEC_PTHREAD1 "!no-pthread"
kono
parents: 67
diff changeset
61 #define SPEC_PTHREAD2 "pthread"
kono
parents: 67
diff changeset
62 #endif
kono
parents: 67
diff changeset
63
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
64 #undef SUB_LINK_ENTRY32
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
65 #undef SUB_LINK_ENTRY64
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
66 #define SUB_LINK_ENTRY32 "-e _DllMainCRTStartup@12"
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
67 #if defined(USE_MINGW64_LEADING_UNDERSCORES)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
68 #define SUB_LINK_ENTRY64 "-e _DllMainCRTStartup"
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
69 #else
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
70 #define SUB_LINK_ENTRY64 "-e DllMainCRTStartup"
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
71 #endif
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
72
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
73 #undef SUB_LINK_ENTRY
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
74 #if TARGET_64BIT_DEFAULT
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
75 #define SUB_LINK_ENTRY SUB_LINK_ENTRY64
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
76 #else
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
77 #define SUB_LINK_ENTRY SUB_LINK_ENTRY32
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
78 #endif
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
79
111
kono
parents: 67
diff changeset
80 #undef NATIVE_SYSTEM_HEADER_COMPONENT
kono
parents: 67
diff changeset
81 #define NATIVE_SYSTEM_HEADER_COMPONENT "MINGW"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
82
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
83 #undef CPP_SPEC
111
kono
parents: 67
diff changeset
84 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{mthreads:-D_MT} " \
kono
parents: 67
diff changeset
85 "%{" SPEC_PTHREAD1 ":-D_REENTRANT} " \
kono
parents: 67
diff changeset
86 "%{" SPEC_PTHREAD2 ": } "
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 /* For Windows applications, include more libraries, but always include
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89 kernel32. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 #undef LIB_SPEC
111
kono
parents: 67
diff changeset
91 #define LIB_SPEC "%{pg:-lgmon} %{" SPEC_PTHREAD1 ":-lpthread} " \
kono
parents: 67
diff changeset
92 "%{" SPEC_PTHREAD2 ": } " \
kono
parents: 67
diff changeset
93 "%{mwindows:-lgdi32 -lcomdlg32} " \
kono
parents: 67
diff changeset
94 "%{fvtable-verify=preinit:-lvtv -lpsapi; \
kono
parents: 67
diff changeset
95 fvtable-verify=std:-lvtv -lpsapi} " \
kono
parents: 67
diff changeset
96 "-ladvapi32 -lshell32 -luser32 -lkernel32"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
97
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 /* Weak symbols do not get resolved if using a Windows dll import lib.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 Make the unwind registration references strong undefs. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100 #if DWARF2_UNWIND_INFO
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
101 /* DW2-unwind is just available for 32-bit mode. */
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
102 #if TARGET_64BIT_DEFAULT
111
kono
parents: 67
diff changeset
103 #define SHARED_LIBGCC_UNDEFS_SPEC \
kono
parents: 67
diff changeset
104 "%{m32: %{shared-libgcc: -u ___register_frame_info -u ___deregister_frame_info}}"
kono
parents: 67
diff changeset
105 #else
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
106 #define SHARED_LIBGCC_UNDEFS_SPEC \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 "%{shared-libgcc: -u ___register_frame_info -u ___deregister_frame_info}"
111
kono
parents: 67
diff changeset
108 #endif
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
109 #else
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
110 #define SHARED_LIBGCC_UNDEFS_SPEC ""
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
111 #endif
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
112
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
113 #undef SUBTARGET_EXTRA_SPECS
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
114 #define SUBTARGET_EXTRA_SPECS \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
115 { "shared_libgcc_undefs", SHARED_LIBGCC_UNDEFS_SPEC }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
116
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
117 #if ! MINGW_DEFAULT_LARGE_ADDR_AWARE
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
118 /* This is used without --enable-large-address-aware. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
119 # define LINK_SPEC_LARGE_ADDR_AWARE ""
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
120 #elif ! TARGET_BI_ARCH
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
121 /* This is used on i686-pc-mingw32 with --enable-large-address-aware. */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
122 # define LINK_SPEC_LARGE_ADDR_AWARE \
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
123 "%{!shared:%{!mdll:--large-address-aware}}"
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
124 #elif TARGET_64BIT_DEFAULT
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
125 /* This is used on x86_64-pc-mingw32 with --enable-large-address-aware.
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
126 ??? It probably doesn't work, because the linker emulation defaults
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
127 to i386pep, the 64-bit mode that does not support
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
128 --large-address-aware, and x86_64-pc-mingw32 does not override the
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
129 emulation to i386pe for -m32, unlike x86_64-w64-mingw32. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
130 # define LINK_SPEC_LARGE_ADDR_AWARE \
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
131 "%{!shared:%{!mdll:%{m32:--large-address-aware}}}"
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
132 #else
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
133 /* This would only be used if someone introduced a biarch
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
134 configuration that defaulted to 32-bit. */
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
135 # define LINK_SPEC_LARGE_ADDR_AWARE \
1830386684a0 gcc-9.2.0
anatofuz
parents: 131
diff changeset
136 "%{!shared:%{!mdll:%{!m64:--large-address-aware}}}"
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
137 #endif
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
138
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
139 #define LINK_SPEC "%{mwindows:--subsystem windows} \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
140 %{mconsole:--subsystem console} \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
141 %{shared: %{mdll: %eshared and mdll are not compatible}} \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
142 %{shared: --shared} %{mdll:--dll} \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
143 %{static:-Bstatic} %{!static:-Bdynamic} \
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
144 %{shared|mdll: " SUB_LINK_ENTRY " --enable-auto-image-base} \
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
145 " LINK_SPEC_LARGE_ADDR_AWARE "\
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
146 %(shared_libgcc_undefs)"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
147
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
148 /* Include in the mingw32 libraries with libgcc */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
149 #ifdef ENABLE_SHARED_LIBGCC
111
kono
parents: 67
diff changeset
150 #define SHARED_LIBGCC_SPEC " \
kono
parents: 67
diff changeset
151 %{static|static-libgcc:-lgcc -lgcc_eh} \
kono
parents: 67
diff changeset
152 %{!static: \
kono
parents: 67
diff changeset
153 %{!static-libgcc: \
kono
parents: 67
diff changeset
154 %{!shared: \
kono
parents: 67
diff changeset
155 %{!shared-libgcc:-lgcc -lgcc_eh} \
kono
parents: 67
diff changeset
156 %{shared-libgcc:-lgcc_s -lgcc} \
kono
parents: 67
diff changeset
157 } \
kono
parents: 67
diff changeset
158 %{shared:-lgcc_s -lgcc} \
kono
parents: 67
diff changeset
159 } \
kono
parents: 67
diff changeset
160 } "
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
161 #else
111
kono
parents: 67
diff changeset
162 #define SHARED_LIBGCC_SPEC " -lgcc "
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
163 #endif
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164 #undef REAL_LIBGCC_SPEC
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
165 #define REAL_LIBGCC_SPEC \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
166 "%{mthreads:-lmingwthrd} -lmingw32 \
111
kono
parents: 67
diff changeset
167 " SHARED_LIBGCC_SPEC " \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
168 -lmoldname -lmingwex -lmsvcrt"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
169
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170 #undef STARTFILE_SPEC
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
171 #define STARTFILE_SPEC "%{shared|mdll:dllcrt2%O%s} \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
172 %{!shared:%{!mdll:crt2%O%s}} %{pg:gcrt2%O%s} \
111
kono
parents: 67
diff changeset
173 crtbegin.o%s \
kono
parents: 67
diff changeset
174 %{fvtable-verify=none:%s; \
kono
parents: 67
diff changeset
175 fvtable-verify=preinit:vtv_start.o%s; \
kono
parents: 67
diff changeset
176 fvtable-verify=std:vtv_start.o%s}"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
177
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
178 #undef ENDFILE_SPEC
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
179 #define ENDFILE_SPEC \
111
kono
parents: 67
diff changeset
180 "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
kono
parents: 67
diff changeset
181 %{!shared:%:if-exists(default-manifest.o%s)}\
kono
parents: 67
diff changeset
182 %{fvtable-verify=none:%s; \
kono
parents: 67
diff changeset
183 fvtable-verify=preinit:vtv_end.o%s; \
kono
parents: 67
diff changeset
184 fvtable-verify=std:vtv_end.o%s} \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
185 crtend.o%s"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
186
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
187 /* Override startfile prefix defaults. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
188 #ifndef STANDARD_STARTFILE_PREFIX_1
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
189 #define STANDARD_STARTFILE_PREFIX_1 "/mingw/lib/"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
190 #endif
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
191 #ifndef STANDARD_STARTFILE_PREFIX_2
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
192 #define STANDARD_STARTFILE_PREFIX_2 ""
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
193 #endif
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
194
111
kono
parents: 67
diff changeset
195 /* For native mingw-version we need to take care that NATIVE_SYSTEM_HEADER_DIR
kono
parents: 67
diff changeset
196 macro contains POSIX-style path. See bug 52947. */
kono
parents: 67
diff changeset
197 #undef NATIVE_SYSTEM_HEADER_DIR
kono
parents: 67
diff changeset
198 #define NATIVE_SYSTEM_HEADER_DIR "/mingw/include"
kono
parents: 67
diff changeset
199
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
200 /* Output STRING, a string representing a filename, to FILE.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
201 We canonicalize it to be in Unix format (backslashes are replaced
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
202 forward slashes. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 #undef OUTPUT_QUOTED_STRING
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 #define OUTPUT_QUOTED_STRING(FILE, STRING) \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 do { \
111
kono
parents: 67
diff changeset
206 const char *_string = (const char *) (STRING); \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
207 char c; \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 \
111
kono
parents: 67
diff changeset
209 putc ('\"', (FILE)); \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
210 \
111
kono
parents: 67
diff changeset
211 while ((c = *_string++) != 0) \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
212 { \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
213 if (c == '\\') \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
214 c = '/'; \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
215 \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
216 if (ISPRINT (c)) \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
217 { \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
218 if (c == '\"') \
111
kono
parents: 67
diff changeset
219 putc ('\\', (FILE)); \
kono
parents: 67
diff changeset
220 putc (c, (FILE)); \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
221 } \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
222 else \
111
kono
parents: 67
diff changeset
223 fprintf ((FILE), "\\%03o", (unsigned char) c); \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
224 } \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 \
111
kono
parents: 67
diff changeset
226 putc ('\"', (FILE)); \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 } while (0)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
229 /* Define as short unsigned for compatibility with MS runtime. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 #undef WINT_TYPE
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
231 #define WINT_TYPE "short unsigned int"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
233 /* mingw32 uses the -mthreads option to enable thread support. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 #undef GOMP_SELF_SPECS
111
kono
parents: 67
diff changeset
235 #define GOMP_SELF_SPECS "%{fopenacc|fopenmp|%:gt(%{ftree-parallelize-loops=*:%*} 1): " \
kono
parents: 67
diff changeset
236 "-mthreads -pthread}"
kono
parents: 67
diff changeset
237 #undef GTM_SELF_SPECS
kono
parents: 67
diff changeset
238 #define GTM_SELF_SPECS "%{fgnu-tm:-mthreads -pthread}"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
239
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
240 /* mingw32 atexit function is safe to use in shared libraries. Use it
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
241 to register C++ static destructors. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
242 #define TARGET_CXX_USE_ATEXIT_FOR_CXA_ATEXIT hook_bool_void_true
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
243
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
244 /* Contains a pointer to type target_ovr_attr defining the target specific
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
245 overrides of format attributes. See c-format.h for structure
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
246 definition. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
247 #undef TARGET_OVERRIDES_FORMAT_ATTRIBUTES
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
248 #define TARGET_OVERRIDES_FORMAT_ATTRIBUTES mingw_format_attribute_overrides
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
249
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
250 /* Specify the count of elements in TARGET_OVERRIDES_ATTRIBUTE. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
251 #undef TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
252 #define TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT 3
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
253
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
254 /* Custom initialization for warning -Wpedantic-ms-format for c-format. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
255 #undef TARGET_OVERRIDES_FORMAT_INIT
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
256 #define TARGET_OVERRIDES_FORMAT_INIT msformat_init
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
257
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
258 /* MS specific format attributes for ms_printf, ms_scanf, ms_strftime. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
259 #undef TARGET_FORMAT_TYPES
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
260 #define TARGET_FORMAT_TYPES mingw_format_attributes
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
261
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
262 #undef TARGET_N_FORMAT_TYPES
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
263 #define TARGET_N_FORMAT_TYPES 3
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
264
111
kono
parents: 67
diff changeset
265 #define HAVE_ENABLE_EXECUTE_STACK
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
266 #undef CHECK_EXECUTE_STACK_ENABLED
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
267 #define CHECK_EXECUTE_STACK_ENABLED flag_setstackexecutable
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
268
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
269 /* This matches SHLIB_SONAME and SHLIB_SOVERSION in t-cygming. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
270 /* This matches SHLIB_SONAME and SHLIB_SOVERSION in t-cygwin. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
271 #if DWARF2_UNWIND_INFO
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
272 #define LIBGCC_EH_EXTN "_dw2"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
273 #else
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
274 #define LIBGCC_EH_EXTN "_sjlj"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
275 #endif
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
276 #define LIBGCC_SONAME "libgcc_s" LIBGCC_EH_EXTN "-1.dll"
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
277