summaryrefslogtreecommitdiffstats
path: root/kBuild/tools/MINGWW64.kmk
blob: 5195f22fb82f7f37de87389af6dc56cb0fc90c68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# $Id: MINGWW64.kmk 3121 2017-10-31 10:58:59Z bird $
## @file
# kBuild Tool Config - MinGW-W64.
#

#
# Copyright (c) 2004-2017 knut st. osmundsen <bird-kBuild-spam-xviiv@anduin.net>
#
# This file is part of kBuild.
#
# kBuild is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# kBuild is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with kBuild; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
#
# As a special exception you are granted permission to include this file, via
# the kmk include directive, as you wish without this in itself causing the
# resulting makefile, program or whatever to be covered by the GPL license.
# This exception does not however invalidate any other reasons why the makefile,
# program, whatever should not be covered the GPL.
#
#

ifdef TOOL_MINGWW64
$(error Already included (TOOL_MINGWW64=$(TOOL_MINGWW64)))
endif
TOOL_MINGWW64 := MinGW-W64 - The incomprehensible 64-bit GCC port to Windows.

# Tool Specific Properties
ifndef PATH_TOOL_MINGWW64
 PATH_TOOL_MINGWW64 := $(wildcard $(KBUILD_DEVTOOLS_HST)/mingw-w64/r*)
 ifeq ($(PATH_TOOL_MINGWW64),)
  PATH_TOOL_MINGWW64 := $(wildcard $(KBUILD_DEVTOOLS)/win.amd64/mingw-w64/r*)
 endif
 ifeq ($(PATH_TOOL_MINGWW64),)
  PATH_TOOL_MINGWW64 := $(wildcard $(KBUILD_DEVTOOLS)/win.x86/mingw-w64/r*)
 endif
 ifneq ($(PATH_TOOL_MINGWW64),)
  PATH_TOOL_MINGWW64 := $(lastword $(sort $(PATH_TOOL_MINGWW64)))
 endif
else
 # Resolve any fancy stuff once and for all.
 PATH_TOOL_MINGWW64 := $(PATH_TOOL_MINGWW64)
endif

# figure out if it's native or needs a win32 launcher
TOOL_MINGWW64_HOSTSUFF_EXE ?= $(HOSTSUFF_EXE)
ifndef TOOL_MINGWW64_PREFIX
 ifneq ($(PATH_TOOL_MINGWW64),)
  TOOL_MINGWW64_PREFIX := $(PATH_TOOL_MINGWW64)/bin/
 else
  TOOL_MINGWW64_PREFIX :=
 endif
 ifneq ($(KBUILD_HOST),win)
#  # we're cross compiling either using an emulator (wine/odin) or a cross compiler.
#  ifneq ($(PATH_TOOL_MINGWW64),$(subst /win.x86,,$(subst /x86.win,,$(PATH_TOOL_MINGWW64))))
   TOOL_MINGWW64_PREFIX := $(EXEC_X86_WIN32) $(TOOL_MINGWW64_PREFIX)
   TOOL_MINGWW64_HOSTSUFF_EXE := .exe
#  else
#   TOOL_MINGWW64_PREFIX := $(TOOL_MINGWW64_PREFIX)i386-mingw32msvc-
#   TOOL_MINGWW64_HOSTSUFF_EXE :=
#   TOOL_MINGWW64_XCOMPILE := 1
#  endif
 endif
else
 # Resolve any fancy stuff once and for all.
 TOOL_MINGWW64_PREFIX := $(TOOL_MINGWW64_PREFIX)
endif

TOOL_MINGWW64_CC  ?= $(TOOL_MINGWW64_PREFIX)gcc$(TOOL_MINGWW64_HOSTSUFF_EXE)
TOOL_MINGWW64_CXX ?= $(TOOL_MINGWW64_PREFIX)g++$(TOOL_MINGWW64_HOSTSUFF_EXE)
TOOL_MINGWW64_AS  ?= $(TOOL_MINGWW64_PREFIX)gcc$(TOOL_MINGWW64_HOSTSUFF_EXE)
TOOL_MINGWW64_AR  ?= $(TOOL_MINGWW64_PREFIX)ar$(TOOL_MINGWW64_HOSTSUFF_EXE)
ifndef TOOL_MINGWW64_XCOMPILE# The gentoo package doesn't have g++.
TOOL_MINGWW64_LD  ?= $(TOOL_MINGWW64_PREFIX)g++$(TOOL_MINGWW64_HOSTSUFF_EXE)
else
TOOL_MINGWW64_LD  ?= $(TOOL_MINGWW64_PREFIX)gcc$(TOOL_MINGWW64_HOSTSUFF_EXE)
endif
TOOL_MINGWW64_DLLWRAP ?= $(TOOL_MINGWW64_PREFIX)dllwrap$(TOOL_MINGWW64_HOSTSUFF_EXE)
TOOL_MINGWW64_DLLTOOL ?= $(TOOL_MINGWW64_PREFIX)dlltool$(TOOL_MINGWW64_HOSTSUFF_EXE)

# General Properties used by kBuild
TOOL_MINGWW64_COBJSUFF           ?= .o
TOOL_MINGWW64_CFLAGS             ?= -g
TOOL_MINGWW64_CFLAGS.debug       ?= -O0
TOOL_MINGWW64_CFLAGS.release     ?= -O2
TOOL_MINGWW64_CFLAGS.profile     ?= -O2 #-pg
TOOL_MINGWW64_CINCS              ?=
TOOL_MINGWW64_CDEFS              ?=

TOOL_MINGWW64_CXXOBJSUFF         ?= .o
TOOL_MINGWW64_CXXOBJSUFF         ?= .o
TOOL_MINGWW64_CXXFLAGS           ?= -g
TOOL_MINGWW64_CXXFLAGS.debug     ?= -O0
TOOL_MINGWW64_CXXFLAGS.release   ?= -O2
TOOL_MINGWW64_CXXFLAGS.profile   ?= -O2 #-pg
TOOL_MINGWW64_CXXINCS            ?=
TOOL_MINGWW64_CXXDEFS            ?=

TOOL_MINGWW64_ASFLAGS            ?= -g -x assembler-with-cpp
TOOL_MINGWW64_ASOBJSUFF          ?= .o

TOOL_MINGWW64_ARFLAGS            ?= cr
TOOL_MINGWW64_ARLIBSUFF          ?= .a

TOOL_MINGWW64_LDFLAGS            ?=
TOOL_MINGWW64_LDFLAGS.debug      ?= -g
TOOL_MINGWW64_LDFLAGS.release    ?= -s


## Compile C source.
# @param    $(target)   Normalized main target name.
# @param    $(source)   Source filename (relative).
# @param    $(obj)      Object file name. This shall be (re)created by the compilation.
# @param    $(dep)	    Dependcy file. This shall be (re)created by the compilation.
# @param    $(flags)    Flags.
# @param    $(defs)     Definitions. No -D or something.
# @param    $(incs)     Includes. No -I or something.
# @param    $(dirdep)   Directory creation dependency.
# @param    $(deps)		Other dependencies.
# @param    $(outbase)  Output basename (full). Use this for list files and such.
# @param    $(objsuff)  Object suffix.
TOOL_MINGWW64_COMPILE_C_OUTPUT =
TOOL_MINGWW64_COMPILE_C_DEPEND =
TOOL_MINGWW64_COMPILE_C_DEPORD =
define TOOL_MINGWW64_COMPILE_C_CMDS
	$(QUIET)$(TOOL_MINGWW64_CC) -c\
		$(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
		-Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
		-o $(obj)\
		$(abspath $(source))
endef


## Compile C++ source.
# @param    $(target)   Normalized main target name.
# @param    $(source)   Source filename (relative).
# @param    $(obj)      Object file name. This shall be (re)created by the compilation.
# @param    $(dep)      Dependcy file. This shall be (re)created by the compilation.
# @param    $(flags)    Flags.
# @param    $(defs)     Definitions. No -D or something.
# @param    $(incs)     Includes. No -I or something.
# @param    $(dirdep)   Directory creation dependency.
# @param    $(deps)     Other dependencies.
# @param    $(outbase)  Output basename (full). Use this for list files and such.
# @param    $(objsuff)  Object suffix.
TOOL_MINGWW64_COMPILE_CXX_OUTPUT =
TOOL_MINGWW64_COMPILE_CXX_DEPEND =
TOOL_MINGWW64_COMPILE_CXX_DEPORD =
define TOOL_MINGWW64_COMPILE_CXX_CMDS
	$(QUIET)$(TOOL_MINGWW64_CXX) -c\
		$(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
		-Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
		-o $(obj)\
		$(abspath $(source))
endef


## Compile Assembly source.
# @param    $(target)   Normalized main target name.
# @param    $(source)   Source filename (relative).
# @param    $(obj)      Object file name. This shall be (re)created by the compilation.
# @param    $(dep)      Dependcy file. This shall be (re)created by the compilation.
# @param    $(flags)    Flags.
# @param    $(defs)     Definitions. No -D or something.
# @param    $(incs)     Includes. No -I or something.
# @param    $(dirdep)   Directory creation dependency.
# @param    $(deps)     Other dependencies.
# @param    $(outbase)  Output basename (full). Use this for list files and such.
# @param    $(objsuff)  Object suffix.
#
TOOL_MINGWW64_COMPILE_AS_OUTPUT =
TOOL_MINGWW64_COMPILE_AS_DEPEND =
TOOL_MINGWW64_COMPILE_AS_DEPORD =
define TOOL_MINGWW64_COMPILE_AS_CMDS
	$(QUIET)$(TOOL_MINGWW64_AS) -c\
		$(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
		-Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
		-o $(obj)\
		$(abspath $(source))
endef


## Link library
# @param    $(target)   Normalized main target name.
# @param    $(out)      Library name.
# @param    $(objs)     Object files to put in the library.
# @param    $(flags)    Flags.
# @param    $(dirdep)   Directory creation dependency.
# @param    $(deps)     Other dependencies.
#
# @param    $(outbase)  Output basename (full). Use this for list files and such.
TOOL_MINGWW64_LINK_LIBRARY_OUTPUT = $(out).ar-script
TOOL_MINGWW64_LINK_LIBRARY_DEPEND = $(othersrc)
TOOL_MINGWW64_LINK_LIBRARY_DEPORD =
define TOOL_MINGWW64_LINK_LIBRARY_CMDS
	$(QUIET)$(APPEND) $(out).ar-script 'CREATE $(out)'
	$(QUIET)$(APPEND) -n $(out).ar-script \
		$(foreach o,$(objs), 'ADDMOD $(o)') \
		$(foreach o,$(othersrc), 'ADDLIB $(o)')
	$(QUIET)$(APPEND) $(out).ar-script 'SAVE'
	$(QUIET)$(APPEND) $(out).ar-script 'END'
	$(QUIET)$(TOOL_MINGWW64_AR) -M < $(out).ar-script
endef



## Link program
# @param    $(target)   Normalized main target name.
# @param    $(out)      Program name.
# @param    $(objs)     Object files to link together.
# @param    $(libs)     Libraries to search.
# @param    $(libpath)  Library search paths.
# @param    $(flags)    Flags.
# @param    $(dirdep)   Directory creation dependency.
# @param    $(deps)     Other dependencies.
# @param    $(othersrc)     Unhandled sources.
# @param    $(custom_pre)   Custom step invoked before linking.
# @param    $(custom_post)  Custom step invoked after linking.
#
# @param    $(outbase)  Output basename (full). Use this for list files and such.
TOOL_MINGWW64_LINK_PROGRAM_OUTPUT =
TOOL_MINGWW64_LINK_PROGRAM_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))
TOOL_MINGWW64_LINK_PROGRAM_DEPORD =
define TOOL_MINGWW64_LINK_PROGRAM_CMDS
	$(QUIET)$(TOOL_MINGWW64_LD) $(flags) -o $(out) $(objs)\
		$(foreach p,$(libpath), -L$(p))\
		$(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib)))
endef


## Link DLL.
# @param    $(target)   Normalized main target name.
# @param    $(out)      DLL name.
# @param    $(objs)     Object files to link together.
# @param    $(libs)     Libraries to search.
# @param    $(libpath)  Library search paths.
# @param    $(flags)    Flags.
# @param    $(dirdep)   Directory creation dependency.
# @param    $(deps)     Other dependencies.
# @param    $(othersrc)     Unhandled sources.
# @param    $(custom_pre)   Custom step invoked before linking.
# @param    $(custom_post)  Custom step invoked after linking.
# @param    $(outbase)  Output basename (full). Use this for list files and such.
TOOL_MINGWW64_LINK_DLL_OUTPUT =
TOOL_MINGWW64_LINK_DLL_OUTPUT_MAYBE = $(outbase).a $(outbase).exp $(PATH_STAGE_LIB)/$(notdir $(outbase)).exp $(PATH_STAGE_LIB)/$(notdir $(outbase)).a
## @todo Find a better solution for installing the extra files (.a, .exp, .pdb, etc).
TOOL_MINGWW64_LINK_DLL_DEPEND = $(foreach lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib)))\
	$(filter %.def %.res,$(othersrc))
TOOL_MINGWW64_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_STAGE_LIB))
define TOOL_MINGWW64_LINK_DLL_CMDS
	$(QUIET)$(REDIRECT) -C "$(dir $(out))" -- $(TOOL_MINGWW64_DLLWRAP) $(flags)\
		--dllname=$(notdir $(out))\
		--output-exp=$(outbase).exp\
		--output-lib=$(outbase).a\
		$(foreach def,$(filter %.def,$(othersrc)), --def $(def))\
		$(filter %.res,$(othersrc))\
		$(objs)\
		$(foreach p,$(libpath), -L$(p))\
		$(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(basename $(lib))), $(lib)))
	$(QUIET)$(CP) $(outbase).exp $(outbase).a $(PATH_STAGE_LIB)/
endef
## @todo separate install stuff!