]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/i386/mingw-w64.h
Update copyright years in gcc/
[thirdparty/gcc.git] / gcc / config / i386 / mingw-w64.h
CommitLineData
35091630
KT
1/* Operating system specific defines to be used when targeting GCC for
2 hosting on Windows 32/64 via mingw-w64 runtime, using GNU tools and
3 the Windows API Library.
23a5b65a 4 Copyright (C) 2009-2014 Free Software Foundation, Inc.
35091630
KT
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 3, or (at your option)
11any later version.
12
13GCC is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
c04bdac0 22/* Enable -municode feature and support optional pthread support. */
35091630
KT
23
24#undef CPP_SPEC
c04bdac0
KT
25#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{mthreads:-D_MT} " \
26 "%{municode:-DUNICODE} " \
0de99d26
OS
27 "%{" SPEC_PTHREAD1 ":-D_REENTRANT} " \
28 "%{" SPEC_PTHREAD2 ":-U_REENTRANT} "
35091630
KT
29
30#undef STARTFILE_SPEC
31#define STARTFILE_SPEC "%{shared|mdll:dllcrt2%O%s} \
32 %{!shared:%{!mdll:%{!municode:crt2%O%s}}} \
33 %{!shared:%{!mdll:%{municode:crt2u%O%s}}} \
34 %{pg:gcrt2%O%s} \
35 crtbegin.o%s"
4b97723d 36
4b97723d
KT
37/* Enable multilib. */
38
39#undef ASM_SPEC
78a14252 40#define ASM_SPEC "%{m32:--32} %{m64:--64}"
4b97723d 41
c04bdac0
KT
42#undef LIB_SPEC
43#define LIB_SPEC "%{pg:-lgmon} %{" SPEC_PTHREAD1 ":-lpthread} " \
44 "%{" SPEC_PTHREAD2 ": } " \
45 "%{mwindows:-lgdi32 -lcomdlg32} " \
46 "-ladvapi32 -lshell32 -luser32 -lkernel32"
47
ad211091
KT
48#undef SPEC_32
49#undef SPEC_64
4b97723d
KT
50#if TARGET_64BIT_DEFAULT
51#define SPEC_32 "m32"
52#define SPEC_64 "!m32"
53#else
54#define SPEC_32 "!m64"
55#define SPEC_64 "m64"
56#endif
57
ad211091
KT
58#undef SUB_LINK_ENTRY32
59#undef SUB_LINK_ENTRY64
60#define SUB_LINK_ENTRY32 "-e _DllMainCRTStartup@12"
61#if defined(USE_MINGW64_LEADING_UNDERSCORES)
62#define SUB_LINK_ENTRY64 "-e _DllMainCRTStartup"
63#else
64#define SUB_LINK_ENTRY64 "-e DllMainCRTStartup"
65#endif
66
67#undef SUB_LINK_SPEC
68#undef SUB_LINK_ENTRY
4b97723d 69#define SUB_LINK_SPEC "%{" SPEC_64 ":-m i386pep} %{" SPEC_32 ":-m i386pe}"
ad211091 70#define SUB_LINK_ENTRY "%{" SPEC_64 ":" SUB_LINK_ENTRY64 "} %{" SPEC_32 ":" SUB_LINK_ENTRY32 "}"
4b97723d 71
ad211091 72#undef MULTILIB_DEFAULTS
4b97723d
KT
73#if TARGET_64BIT_DEFAULT
74#define MULTILIB_DEFAULTS { "m64" }
75#else
76#define MULTILIB_DEFAULTS { "m32" }
77#endif
78
79#undef LINK_SPEC
032502c2 80#define LINK_SPEC SUB_LINK_SPEC " %{mwindows:--subsystem windows} \
4b97723d
KT
81 %{mconsole:--subsystem console} \
82 %{shared: %{mdll: %eshared and mdll are not compatible}} \
83 %{shared: --shared} %{mdll:--dll} \
84 %{static:-Bstatic} %{!static:-Bdynamic} \
ad211091 85 %{shared|mdll: " SUB_LINK_ENTRY " --enable-auto-image-base} \
4b97723d 86 %(shared_libgcc_undefs)"