author | Richard Taylor <richard.i.taylor@nokia.com> |
Mon, 25 Jan 2010 09:56:17 +0000 | |
changeset 155 | e65788ec4aa9 |
parent 147 | bbe5275eca96 |
child 173 | 6080bce951bf |
child 325 | 226aba1c0d68 |
permissions | -rw-r--r-- |
3 | 1 |
# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 |
# All rights reserved. |
|
3 |
# This component and the accompanying materials are made available |
|
4 |
# under the terms of the License "Eclipse Public License v1.0" |
|
5 |
# which accompanies this distribution, and is available |
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 |
# |
|
8 |
# Initial Contributors: |
|
9 |
# Nokia Corporation - initial contribution. |
|
10 |
# |
|
11 |
# Contributors: |
|
12 |
# |
|
13 |
# Description: |
|
14 |
# ARMv5 EXE/DLL ABIv2 Function Like Makefile (FLM) |
|
15 |
# Knows how to build all possible ABIV2 executables for ARM |
|
16 |
# |
|
17 |
# |
|
18 |
||
19 |
# Only build feature invariant binaries in non-product builds *and* |
|
20 |
# Only build feature variant binaries in product builds. |
|
21 |
# |
|
22 |
# FEATUREVARIANTNAME != "" implies product build |
|
23 |
# FEATUREVARIANT == 1 implies a feature variant binary |
|
24 |
# |
|
25 |
# test FEATUREVARIANTNAME=="" or FEATUREVARIANT==1 |
|
26 |
# |
|
27 |
ifneq ($(or $(call equal,$(FEATUREVARIANTNAME),),$(call equal,$(FEATUREVARIANT),1)),) |
|
28 |
||
29 |
$(if $(FLMDEBUG),$(info <flm name='e32abiv2' target='$(TARGET)' type='$(TARGETTYPE)' outputpath='$(OUTPUTPATH)' metasource='$(METASOURCE)' postlinkfiletype='$(POSTLINKFILETYPE)' />)) |
|
30 |
||
31 |
# Strip switch-type parameters |
|
32 |
# |
|
33 |
POSTLINKTARGETTYPE:=$(strip $(POSTLINKTARGETTYPE)) |
|
34 |
UID1:=$(strip $(UID1)) |
|
35 |
UID2:=$(strip $(UID2)) |
|
36 |
UID3:=$(strip $(UID3)) |
|
37 |
SID:=$(strip $(SECUREID)) |
|
38 |
VENDORID:=$(strip $(VENDORID)) |
|
39 |
AUTOEXPORTS:=$(strip $(AUTOEXPORTS)) |
|
40 |
DEFFILE:=$(strip $(DEFFILE)) |
|
41 |
IMPORTLIBRARYREQUIRED:=$(strip $(IMPORTLIBRARYREQUIRED)) |
|
42 |
EPOCALLOWDLLDATA:=$(strip $(EPOCALLOWDLLDATA)) |
|
43 |
PAGED:=$(strip $(PAGED)) |
|
44 |
||
45 |
# the output directories |
|
46 |
VARIANTPLATFORM:=$(VARIANTPLATFORM)$(FEATUREVARIANTNAME) |
|
47 |
RELEASABLEPATH:=$(RELEASEPATH)/$(VARIANTPLATFORM)/$(VARIANTTYPE) |
|
48 |
INTERMEDIATEPATH:=$(OUTPUTPATH)/$(VARIANTPLATFORM)/$(VARIANTTYPE) |
|
49 |
INTERMEDIATE_PLATFORM_PATH:=$(OUTPUTPATH)/$(VARIANTPLATFORM) |
|
50 |
TRACE_MARKER_PATH:=$(OUTPUTPATH) |
|
51 |
IMPORTLIBPATH:=$(RUNTIME_LIBS_PATH) |
|
52 |
||
53 |
# LOCALLY USED VARIABLES |
|
54 |
CLEANTARGETS:= |
|
55 |
WHATRELEASE:= |
|
56 |
||
57 |
# Work out which new/delete library to use for binaries. |
|
58 |
CHECKLIB_TYPE:=symc++ |
|
59 |
STDCPPTAGFILE:= |
|
60 |
ifeq ($(NOSTDCPP),1) |
|
61 |
ifeq ($(STDCPP),1) |
|
62 |
$(info <warning>STDCPP and NOSTDCPP both specified in $(PROJECT_META)</warning>) |
|
63 |
else |
|
64 |
ifeq ($(HAS_DEDICATED_OP_NEWDEL_LIB),1) |
|
65 |
DEFAULT_NEWLIB:=$(DEFAULT_SYMBIAN_NEWLIB) |
|
66 |
endif |
|
67 |
endif |
|
68 |
else |
|
69 |
ifeq ($(STDCPP),1) |
|
70 |
CDEFS:=$(CDEFS) __SYMBIAN_STDCPP_SUPPORT__ |
|
71 |
ifneq ($(SUPPORTS_STDCPP_NEWLIB),) |
|
72 |
ifeq ($(HAS_DEDICATED_OP_NEWDEL_LIB),1) |
|
73 |
DEFAULT_NEWLIB:=$(DEFAULT_STDCPP_NEWLIB) |
|
74 |
endif |
|
75 |
CHECKLIB_TYPE:=stdc++ |
|
76 |
STDCPPTAGFILE:=$(EPOCROOT)/epoc32/tools/tag/tag_elf |
|
77 |
endif |
|
78 |
endif |
|
79 |
endif |
|
80 |
||
81 |
# If NEWLIB is specified in the MMP file, it overrides all the past stuff. |
|
82 |
ifeq ($(NEWLIB),) |
|
83 |
NEWLIB:=$(DEFAULT_NEWLIB) |
|
84 |
endif |
|
85 |
||
86 |
||
87 |
########################################################################## |
|
88 |
## OUTPUTS - externally relevant targets that this FLM generates |
|
89 |
||
90 |
||
91 |
ifeq ($(EXPORTLIBRARY),) |
|
92 |
EXPORTLIBRARY:=$(TARGET) |
|
93 |
endif |
|
94 |
||
95 |
# This will insert the file version between the name and the extension. |
|
96 |
# If there is more than one dot in generated filename the inserted position will be |
|
97 |
# BEFORE the last but two dot. E.g name1.name2.name3.dll to name1.name2{version}.name3.dll |
|
98 |
LIBEXT:=$(lastword $(subst .,$(CHAR_SPACE) ,$(EXPORTLIBRARY))) |
|
99 |
LIBBASE:=$(patsubst %.$(LIBEXT),%,$(EXPORTLIBRARY)) |
|
100 |
ifneq ($(findstring .,$(EXPORTLIBRARY)),) |
|
101 |
# Please note $(EXPORTLIBRARY) doesn't include target type. |
|
102 |
VER_E32IMPORTLIBBASE:=$(IMPORTLIBPATH)/$(LIBBASE){$(VERSIONHEX)}.$(LIBEXT) |
|
103 |
else |
|
104 |
VER_E32IMPORTLIBBASE:=$(IMPORTLIBPATH)/$(EXPORTLIBRARY){$(VERSIONHEX)} |
|
105 |
endif |
|
106 |
||
107 |
# Postlinkable targets need to be linked and elf2e32'd |
|
108 |
ifneq ($(DOPOSTLINK),) |
|
109 |
E32TARGET:=$(RELEASABLEPATH)/$(TARGET)$(if $(EXPLICITVERSION),{$(VERSIONHEX)},).$(if $(REQUESTEDTARGETEXT),$(REQUESTEDTARGETEXT),$(POSTLINKFILETYPE)) |
|
110 |
LINK_TARGET:=$(RELEASABLEPATH)/$(TARGET)$(if $(EXPLICITVERSION),{$(VERSIONHEX)},).$(if $(REQUESTEDTARGETEXT),$(REQUESTEDTARGETEXT),$(POSTLINKFILETYPE)).sym |
|
111 |
MAPFILE:=$(RELEASABLEPATH)/$(TARGET).$(if $(REQUESTEDTARGETEXT),$(REQUESTEDTARGETEXT),$(POSTLINKFILETYPE)).map |
|
112 |
else |
|
113 |
E32TARGET:= |
|
114 |
LINK_TARGET:= |
|
115 |
MAPFILE:= |
|
116 |
endif |
|
117 |
||
118 |
# libs and klibs, on the other hand need to be archived |
|
119 |
ifneq ($(call isoneof,$(TARGETTYPE),lib klib stdlib),) |
|
120 |
ARTARGET:=$(RELEASABLEPATH)/$(TARGET).lib |
|
121 |
# We need libs and klibs before we can link stuff with them: |
|
122 |
LIBRARY:: $(ARTARGET) |
|
123 |
else |
|
124 |
ARTARGET:= |
|
125 |
endif |
|
126 |
||
127 |
||
128 |
ifneq ($(IMPORTLIBRARYREQUIRED),) # no dso files for plugins, animation dlls etc |
|
129 |
# make sure we don't build import libraries more than once for UDEB and UREL |
|
130 |
# Without this, wierd target-specific variable problems happen with LIBRARY in particular |
|
131 |
||
132 |
TMP_IMPORTLIBTARGET_ROOT:=$(IMPORTLIBPATH)/$(EXPORTLIBRARY) |
|
133 |
||
134 |
# ABIv2 .dso |
|
135 |
IMPORTLIBTARGET_DSO:= |
|
136 |
IMPORTLIBTARGETVERSIONED_DSO:= |
|
137 |
||
138 |
BUILDMARKER_IMPORTLIBTARGET_DSO:=TARGET_$(subst :,,$(VER_E32IMPORTLIBBASE)).dso |
|
139 |
WHATRELEASE:=$(WHATRELEASE) $(if $(EXPLICITVERSION),,$(TMP_IMPORTLIBTARGET_ROOT).dso) |
|
140 |
WHATRELEASE:=$(WHATRELEASE) $(VER_E32IMPORTLIBBASE).dso |
|
141 |
ifeq ($($(BUILDMARKER_IMPORTLIBTARGET_DSO)),) |
|
142 |
IMPORTLIBTARGET_DSO:=$(TMP_IMPORTLIBTARGET_ROOT).dso |
|
143 |
IMPORTLIBTARGETVERSIONED_DSO:=$(VER_E32IMPORTLIBBASE).dso |
|
144 |
endif |
|
145 |
||
146 |
# ABIv1 .lib (for specific builds, toolchains and host OS platforms only) |
|
147 |
IMPORTLIBTARGET_LIB:= |
|
148 |
IMPORTLIBTARGETVERSIONED_LIB:= |
|
149 |
BUILDMARKER_IMPORTLIBTARGET_LIB:=TARGET_$(subst :,,$(VER_E32IMPORTLIBBASE)).lib |
|
150 |
# Only for builds that require and support them, and only on windows |
|
151 |
ifeq ($(OSTYPE),cygwin) |
|
152 |
ifeq ($(GENERATE_ABIV1_IMPLIBS),1) |
|
153 |
WHATRELEASE:=$(WHATRELEASE) $(if $(EXPLICITVERSION),,$(TMP_IMPORTLIBTARGET_ROOT).lib) |
|
154 |
WHATRELEASE:=$(WHATRELEASE) $(VER_E32IMPORTLIBBASE).lib |
|
155 |
ifeq ($($(BUILDMARKER_IMPORTLIBTARGET_LIB)),) |
|
156 |
IMPORTLIBTARGET_LIB:=$(TMP_IMPORTLIBTARGET_ROOT).lib |
|
157 |
IMPORTLIBTARGETVERSIONED_LIB:=$(VER_E32IMPORTLIBBASE).lib |
|
158 |
endif |
|
159 |
endif |
|
160 |
endif |
|
161 |
endif |
|
162 |
||
163 |
# Try to make sure that we get the right linkas name |
|
164 |
# If linkas is specified then split it up and |
|
165 |
# put the hex version number in the right place |
|
166 |
ifeq ($(LINKAS),) |
|
167 |
LINKASNAME=$(TARGET) |
|
168 |
LINKASTYPE=$(if $(REQUESTEDTARGETEXT),$(REQUESTEDTARGETEXT),$(POSTLINKFILETYPE)) |
|
169 |
else |
|
170 |
SPLIT_LINKAS=$(subst ., ,$(LINKAS)) |
|
171 |
LINKASNAME=$(word 1,$(SPLIT_LINKAS)) |
|
172 |
LINKASTYPE=$(word 2,$(SPLIT_LINKAS)) |
|
173 |
endif |
|
174 |
||
175 |
# ignore UID3 if it is zero |
|
176 |
ifeq ($(UID3),00000000) |
|
177 |
LINKASVERSIONED=$(LINKASNAME){$(VERSIONHEX)}.$(LINKASTYPE) |
|
178 |
else |
|
179 |
LINKASVERSIONED=$(LINKASNAME){$(VERSIONHEX)}$(if $(UID3),[$(UID3)],).$(LINKASTYPE) |
|
180 |
endif |
|
181 |
||
182 |
########################################################################## |
|
183 |
## TARGET GROUPS ## |
|
184 |
RELEASABLES:=$(strip $(E32TARGET) $(ARTARGET) $(LINK_TARGET) $(MAPFILE)) |
|
185 |
# More targets to be added later |
|
186 |
TARGETS:=$(strip $(E32TARGET) $(IMPORTLIBTARGET) $(LINK_TARGET) $(ARTARGET)) |
|
187 |
||
188 |
CREATABLEPATHS:=$(OUTPUTPATH) |
|
189 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(INTERMEDIATE_PLATFORM_PATH) |
|
190 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(INTERMEDIATEPATH) |
|
191 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(RELEASABLEPATH) |
|
192 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(RUNTIME_LIBS_PATH) |
|
193 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(IMPORTLIBPATH) |
|
194 |
WHATRELEASE:=$(WHATRELEASE) $(RELEASABLES) |
|
195 |
||
196 |
||
197 |
||
198 |
## HIGH LEVEL Targets ## |
|
199 |
.PHONY:: $(ALLTARGET) |
|
200 |
||
201 |
## GLOBAL TARGETS ############################################################ |
|
202 |
$(ALLTARGET):: $(RELEASABLES) |
|
203 |
TARGET:: $(RELEASABLES) |
|
204 |
||
205 |
## Internal targets ## |
|
206 |
||
207 |
# Determine the name of the generated DSO file ############################### |
|
208 |
# This is to generate the dso with the Some{Versionhex}.file.dso |
|
209 |
# It reproduces what appears to be a problem in the current build system |
|
210 |
# that affects messageintercept{000a0000}.esockdebug.dso whose |
|
211 |
# filename differs from it's "linkas" name. |
|
212 |
E32VAR:=$(subst .,$(CHAR_SPACE) ,$(TARGET)) |
|
213 |
E32SOME:=$(word 1,$(E32VAR)) |
|
214 |
E32VAR2:=$(patsubst $(E32SOME).%,%,$(TARGET)) |
|
215 |
||
216 |
# Separate '_SH' variables created for output into bash - Preserves '{' and '}' |
|
217 |
||
218 |
ifneq ($(findstring .,$(TARGET)),) |
|
219 |
DSODEFFILENAMEBASE:=$(E32SOME){$(VERSIONHEX)}.$(E32VAR2) |
|
220 |
else |
|
221 |
DSODEFFILENAMEBASE:=$(TARGET){$(VERSIONHEX)} |
|
222 |
endif |
|
223 |
GENERATED_DSO:=$(call dblquote,$(INTERMEDIATEPATH)/$(DSODEFFILENAMEBASE).dso) |
|
224 |
GENERATED_DEFFILE:=$(INTERMEDIATEPATH)/$(DSODEFFILENAMEBASE).def |
|
225 |
||
226 |
## IMPORT LIBRARY ########################################################### |
|
227 |
||
228 |
# Static libraries will be postlinked when they are used so don't try to postlink them |
|
229 |
||
230 |
ifneq ($(IMPORTLIBRARYREQUIRED),) |
|
231 |
ifneq ($(or $(DEFFILE),$(EXPORTUNFROZEN)),) |
|
232 |
# Both ABIv2 .dso and ABIv1 .lib import library generation require a processed .def file, |
|
233 |
# unless EXPORTUNFROZEN is being used |
|
234 |
PREPPEDDEFFILE:= |
|
235 |
ifneq ($(DEFFILE),) |
|
236 |
ifeq ($(EXPORTUNFROZEN),) |
|
237 |
PREPPEDDEFFILE:=$(INTERMEDIATEPATH)/$(TARGET).prep |
|
238 |
CLEANTARGETS:=$(CLEANTARGETS) $(PREPPEDDEFFILE) |
|
239 |
define importlibtarget_prepfile |
|
240 |
$(PREPPEDDEFFILE): $(DEFFILE) |
|
241 |
$(call startrule,importlibtarget_prepfile,FORCESUCCESS) \ |
|
242 |
$(PREPDEF) $(call dblquote,$(DEFFILE)) $(call dblquote,$(PREPPEDDEFFILE)) \ |
|
243 |
$(call endrule,importlibtarget_prepfile) |
|
244 |
endef |
|
245 |
$(eval $(importlibtarget_prepfile)) |
|
246 |
endif |
|
247 |
endif |
|
248 |
||
249 |
# ABIv2 .dso |
|
250 |
ifneq ($(IMPORTLIBTARGET_DSO),) # check that we haven't tried to specify this target already |
|
251 |
||
26
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
252 |
# By Now we're committed to producing a target for this DSO so it's safe to |
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
253 |
# set the marker that will prevent any further targets from being made. |
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
254 |
$(eval $(BUILDMARKER_IMPORTLIBTARGET_DSO):=1) |
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
255 |
|
3 | 256 |
ifneq ($(EXPLICITVERSION),) |
257 |
TARGETS:=$(strip $(TARGETS) $(IMPORTLIBTARGETVERSIONED_DSO)) |
|
258 |
||
259 |
# Add this importlibrary to our global targets |
|
260 |
LIBRARY:: $(IMPORTLIBTARGETVERSIONED_DSO) |
|
261 |
$(ALLTARGET):: $(IMPORTLIBTARGETVERSIONED_DSO) |
|
262 |
TARGET:: $(IMPORTLIBTARGETVERSIONED_DSO) |
|
263 |
||
264 |
else |
|
265 |
TARGETS:=$(strip $(TARGETS) $(IMPORTLIBTARGETVERSIONED_DSO) $(IMPORTLIBTARGET_DSO)) |
|
266 |
||
267 |
# Add this importlibrary to our global targets |
|
268 |
LIBRARY:: $(IMPORTLIBTARGET_DSO) |
|
269 |
$(ALLTARGET):: $(IMPORTLIBTARGETVERSIONED_DSO) $(IMPORTLIBTARGET_DSO) |
|
270 |
TARGET:: $(IMPORTLIBTARGETVERSIONED_DSO) $(IMPORTLIBTARGET_DSO) |
|
271 |
||
272 |
||
273 |
endif |
|
274 |
||
275 |
||
276 |
||
277 |
ifneq ($(EXPORTUNFROZEN),) # Unfrozen - warn and create .dso as side-effect of the final postlink |
|
278 |
$(info <warning project='$(PROJECT_META)' component='$(COMPONENT_META)'>EXPORTUNFROZEN present in $(PROJECT_META) - unfrozen exports will be represented in import library.</warning> ) |
|
279 |
define importlibtarget_unfrozen |
|
280 |
$(IMPORTLIBTARGET_DSO): $(IMPORTLIBTARGETVERSIONED_DSO) |
|
281 |
$(call startrule,importlibtarget_unfrozen,FORCESUCCESS) \ |
|
282 |
$(GNUCP) $$(call dblquote,$$<) $$(call dblquote,$$@) \ |
|
283 |
$(call endrule,importlibtarget_unfrozen) |
|
284 |
endef |
|
285 |
||
286 |
define importlibtarget_unfrozen_ver |
|
287 |
$(IMPORTLIBTARGETVERSIONED_DSO): $(E32TARGET) |
|
288 |
$(call startrule,importlibversioned_unfrozen,FORCESUCCESS) \ |
|
289 |
$(GNUCP) "$(GENERATED_DSO)" "$$@" \ |
|
290 |
$(call endrule,importlibversioned_unfrozen) |
|
291 |
endef |
|
292 |
||
293 |
ifeq ($(EXPLICITVERSION),) |
|
294 |
# Generate the general dso if we aren't |
|
295 |
# being asked to make just the specific version. |
|
296 |
$(eval $(importlibtarget_unfrozen)) |
|
297 |
endif |
|
298 |
||
299 |
$(eval $(importlibtarget_unfrozen_ver)) |
|
300 |
else |
|
301 |
ifneq ($(DEFFILE),) # Frozen - use the def file and create .dso directly |
|
302 |
define importlibtarget_func |
|
303 |
$(IMPORTLIBTARGET_DSO): $(IMPORTLIBTARGETVERSIONED_DSO) |
|
304 |
$(call startrule,importlibtarget,FORCESUCCESS) \ |
|
305 |
$(GNUCP) "$$<" "$$@" \ |
|
306 |
$(call endrule,importlibtarget) |
|
307 |
endef |
|
308 |
||
309 |
ifeq ($(EXPLICITVERSION),) |
|
310 |
# Generate the general dso if we aren't |
|
311 |
# being asked to make just the specific version. |
|
312 |
$(eval $(importlibtarget_func)) |
|
313 |
endif |
|
314 |
||
315 |
define importlibtargetversioned_func |
|
316 |
$(IMPORTLIBTARGETVERSIONED_DSO): $(ELF2E32) $(PREPPEDDEFFILE) |
|
317 |
$(call startrule,importlibversioned,FORCESUCCESS) \ |
|
318 |
$(ELF2E32) --sid=0x$(if $(SID),$(SID),$(if $(UID3),$(UID3),0)) --version=$(VERSION) \ |
|
319 |
--definput="$(PREPPEDDEFFILE)" \ |
|
320 |
--dso=$$(call dblquote,$$@) \ |
|
321 |
--linkas=$(call dblquote,$(LINKASVERSIONED)) \ |
|
322 |
$(call endrule,importlibversioned) |
|
323 |
endef |
|
324 |
$(eval $(importlibtargetversioned_func)) |
|
325 |
endif # ifneq ($(DEFFILE),) |
|
326 |
endif # ifneq ($(EXPORTUNFROZEN),) |
|
327 |
endif # ifneq ($(IMPORTLIBTARGET_DSO),) |
|
328 |
||
329 |
# ABIv1 .lib |
|
330 |
ifneq ($(IMPORTLIBTARGETVERSIONED_LIB),) # check that we haven't tried to specify this target already |
|
331 |
||
26
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
332 |
# By Now we're committed to producing a target for this DSO so it's safe to |
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
333 |
# set the marker that will prevent any further targets from being made. |
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
334 |
$(eval $(BUILDMARKER_IMPORTLIBTARGET_LIB):=1) |
96670e6a4bfd
Try to cope with the iscapi implib problem.
timothy.murphy@nokia.com
parents:
9
diff
changeset
|
335 |
|
3 | 336 |
define abiv1_generatelib |
337 |
||
338 |
ifeq ($(EXPLICITVERSION),) |
|
339 |
LIBRARY:: $(IMPORTLIBTARGETVERSIONED_LIB) $(IMPORTLIBTARGET_LIB) |
|
340 |
||
341 |
else |
|
342 |
LIBRARY:: $(IMPORTLIBTARGETVERSIONED_LIB) |
|
343 |
||
344 |
endif |
|
345 |
||
346 |
# If frozen, a prepped .def file is used as the basis for .lib creation |
|
347 |
# If unfrozen, .lib files are based on the .def file generated by the final postlink |
|
348 |
$(IMPORTLIBTARGETVERSIONED_LIB): $(if $(EXPORTUNFROZEN),$(E32TARGET),$(PREPPEDDEFFILE)) |
|
349 |
$(call startrule,importlibversioned_abiv1) \ |
|
350 |
if [ -f "$(EPOCROOT)/epoc32/tools/def2dll.pl" -a -f "$(if $(EXPORTUNFROZEN),$(call dblquote,$(GENERATED_DEFFILE)),$(PREPPEDDEFFILE))" ]; then \ |
|
351 |
$(PERL) $(EPOCROOT)/epoc32/tools/def2dll.pl \ |
|
352 |
--path=$(IMPORTLIBPATH) \ |
|
353 |
--bldpath=$(INTERMEDIATEPATH) \ |
|
354 |
--import=$(notdir $(basename $(IMPORTLIBTARGETVERSIONED_LIB))) \ |
|
355 |
--deffile="$(if $(EXPORTUNFROZEN),$(call dblquote,$(GENERATED_DEFFILE)),$(PREPPEDDEFFILE))" \ |
|
356 |
--linkAs=$(call dblquote,$(LINKASVERSIONED)) \ |
|
357 |
--inter ; fi \ |
|
358 |
$(call endrule,importlibversioned_abiv1) |
|
359 |
||
360 |
ifeq ($(EXPLICITVERSION),) |
|
361 |
$(IMPORTLIBTARGET_LIB): $(IMPORTLIBTARGETVERSIONED_LIB) |
|
362 |
$(call startrule,importlibtarget_abiv1) \ |
|
363 |
if [ -f $(EPOCROOT)/epoc32/tools/def2dll.pl ]; then $(GNUCP) "$$<" "$$@" ; fi \ |
|
364 |
$(call endrule,importlibtarget_abiv1) |
|
365 |
endif |
|
366 |
endef |
|
367 |
||
368 |
$(eval $(abiv1_generatelib)) |
|
369 |
endif # ifneq ($(IMPORTLIBTARGET_LIB),) |
|
370 |
endif # ($(or $(DEFFILE),$(EXPORTUNFROZEN)),) |
|
371 |
endif # ifneq ($(IMPORTLIBRARYREQUIRED),) |
|
372 |
||
373 |
||
374 |
## POSTLINK ################################################################## |
|
375 |
||
376 |
# Set up the name of the exports file if this is a customdll |
|
377 |
EXPTARGET:= |
|
378 |
ifneq ($(DOPOSTLINK),) |
|
379 |
ifneq ($(and $(or $(STATICLIBRARY),$(ARMLIBS),$(ARMRT)),$(DEFFILE)),) |
|
380 |
EXPTARGET:=$(INTERMEDIATE_PLATFORM_PATH)/$(notdir $(VER_E32IMPORTLIBBASE)).exp |
|
381 |
endif |
|
382 |
endif |
|
383 |
||
384 |
# Generating the import library is enough if TARGETTYPE=implib ############# |
|
385 |
||
386 |
ifneq ($(DOPOSTLINK),) |
|
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
387 |
# Capabilities |
147
bbe5275eca96
fix bug 1570: actually *use* the capabilities and fix test for windows and for capability flags.
timothy.murphy@nokia.com
parents:
144
diff
changeset
|
388 |
FINAL_CAPABILITIES:=$(if $(CAPABILITY),$(CAPABILITY),NONE) |
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
389 |
|
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
390 |
# Paging options for the old postlinker |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
391 |
POSTLINKER_PAGEDOPTION:=--defaultpaged |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
392 |
ifeq ($(PAGED),1) |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
393 |
POSTLINKER_PAGEDOPTION:=--paged |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
394 |
endif |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
395 |
ifeq ($(PAGED),0) |
102
80785a1bc266
single character fix for --unpaged
Richard Taylor <richard.i.taylor@nokia.com>
parents:
75
diff
changeset
|
396 |
POSTLINKER_PAGEDOPTION:=--unpaged |
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
397 |
endif |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
398 |
|
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
399 |
CLEANTARGETS:=$(CLEANTARGETS) $(E32TARGET) |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
400 |
CLEANTARGETS:=$(CLEANTARGETS) $(GENERATED_DEFFILE) |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
401 |
CLEANTARGETS:=$(CLEANTARGETS) $(GENERATED_DSO) |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
402 |
|
3 | 403 |
endif # ifneq ($(DOPOSTLINK),) |
404 |
||
405 |
ifneq ($(TARGETTYPE),implib) |
|
406 |
||
407 |
## CUSTOM DLLS ############################################################### |
|
408 |
# exp file |
|
409 |
# |
|
410 |
# This tends to help getting exported objects |
|
411 |
# out of the arm libs and into custom dlls. |
|
412 |
||
413 |
ifneq ($(EXPTARGET),) |
|
414 |
ifeq ($(TARGET_$(EXPTARGET)),) |
|
415 |
# We only need one of these exptargets for UDEB and UREL |
|
416 |
TARGET_$(EXPTARGET):=1 |
|
417 |
||
418 |
EXPTARGETASMFILE:=$(INTERMEDIATE_PLATFORM_PATH)/$(notdir $(VER_E32IMPORTLIBBASE)).s |
|
419 |
||
420 |
define e32expgen_func |
|
421 |
$(EXPTARGET): $(DEFFILE) $(ELF2E32) |
|
422 |
$(call startrule,expgen) \ |
|
423 |
$(ELF2E32) \ |
|
424 |
--definput=$$(call dblquote,$(DEFFILE)) \ |
|
425 |
--dump=a \ |
|
426 |
--output=$(call dblquote,$(EXPTARGETASMFILE)) && \ |
|
427 |
$(ASM) $(TARGET_ARCH_OPTION) $(AAPCS_OPTION) $(ASM_OUTPUT_OPTION) $$(call dblquote, $$@) $(EXPTARGETASMFILE) \ |
|
428 |
$(call endrule,expgen) |
|
429 |
endef |
|
430 |
||
431 |
$(eval $(e32expgen_func)) |
|
432 |
CLEANTARGETS:=$(CLEANTARGETS) $(EXPTARGET) $(EXPTARGETASMFILE) |
|
433 |
endif |
|
434 |
endif |
|
435 |
||
436 |
||
437 |
||
438 |
||
439 |
## SOURCE FILES ############################################################## |
|
440 |
||
441 |
# Source files can be either C++ files (.cpp) or Assmbler-in-C++ files (.cia) |
|
442 |
# We have to split the two because they have the same link stage, the compile |
|
443 |
# stage is different for each. |
|
444 |
||
445 |
CPPFILEEXTENSIONS:=.cpp .CPP .Cpp .CPp .CpP .cPP .cpP .cPp .cc .CC \ |
|
446 |
.Cc .c++ .C++ .cxx .CXX .Cxx .cXx .CxX .CXx .cC .cXX .cxX |
|
447 |
CFILEEXTENSIONS:=.c .C |
|
448 |
CIAFILEEXTENSIONS:=.CIA .cia .Cia .cIa .cIA .ciA .CIa .CiA |
|
449 |
ASMFILEEXTENSIONS:=.s .S |
|
450 |
||
451 |
||
452 |
# Extract the CPP files from our sources |
|
453 |
CPPFILES:=$(call extractfilesoftype,$(CPPFILEEXTENSIONS),$(SOURCE)) |
|
454 |
CFILES:=$(call extractfilesoftype,$(CFILEEXTENSIONS),$(SOURCE)) |
|
455 |
ASMFILES:=$(call extractfilesoftype,$(ASMFILEEXTENSIONS),$(SOURCE)) |
|
456 |
||
457 |
# Find out what assember-in-c files there are |
|
458 |
# If appropriate, work out what CPP files will be created from the assembler files |
|
459 |
CIAFILES:=$(call extractfilesoftype,$(CIAFILEEXTENSIONS),$(SOURCE)) |
|
460 |
CIA_CPPFILES:= |
|
461 |
ifeq ($(TRANSFORM_CIA),1) |
|
462 |
CIA_CPPFILES:=$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(CIAFILEEXTENSIONS),_.cpp,$(CIAFILES))) |
|
463 |
else |
|
464 |
||
465 |
endif |
|
466 |
||
467 |
## LINK ###################################################################### |
|
468 |
# Bring together all the .o files compiled from .cpp, .c, .s and .cia files. |
|
469 |
# These files are stored in the "non-releasable" output diretory. |
|
470 |
||
471 |
define mapcpp2object |
|
472 |
$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(CPPFILEEXTENSIONS),.o,$1)) |
|
473 |
endef |
|
474 |
||
475 |
define mapc2object |
|
476 |
$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(CFILEEXTENSIONS),.o,$1)) |
|
477 |
endef |
|
478 |
||
479 |
define mapasm2object |
|
480 |
$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(ASMFILEEXTENSIONS),.o,$1)) |
|
481 |
endef |
|
482 |
||
483 |
define mapcia2object |
|
484 |
$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(CIAFILEEXTENSIONS),_.o,$1)) |
|
485 |
endef |
|
486 |
||
487 |
# Determine what object files will be linked by using the source files. |
|
488 |
CPPFILES_LINKOBJECTS:=$(call mapcpp2object,$(CPPFILES)) |
|
489 |
CFILES_LINKOBJECTS:=$(call mapc2object,$(CFILES)) |
|
490 |
ifeq ($(TRANSFORM_CIA),1) |
|
491 |
CIAFILES_LINKOBJECTS:=$(patsubst %_.cpp,%_.o,$(CIA_CPPFILES)) |
|
492 |
else |
|
493 |
CIAFILES_LINKOBJECTS:=$(call mapcia2object,$(CIAFILES)) |
|
494 |
endif |
|
495 |
ASMFILES_LINKOBJECTS:=$(call mapasm2object,$(ASMFILES)) |
|
496 |
||
497 |
# Try to link object files in the order in which the source files were specified. |
|
498 |
# This makes BC comparisons with non-Raptor builds easier. |
|
499 |
# Use the order of the source list to establish the order of the object files: |
|
500 |
LINKOBJECTS:=$(call relocatefiles,$(INTERMEDIATEPATH),$(SOURCE)) |
|
501 |
# Replace the file extensions of the Source files with .o (or _.o for cia files) now |
|
502 |
# the list will contain the object files in the same order as the list of source files. |
|
503 |
LINKOBJECTS:=$(foreach FILE,$(LINKOBJECTS),$(basename $(FILE))$(if $(filter $(addprefix %,$(CIAFILEEXTENSIONS)),$(FILE)),_).o) |
|
504 |
||
505 |
ifneq ($(MULTIFILE_ENABLED),) |
|
506 |
MULTIFILEOBJECT:=$(INTERMEDIATEPATH)/$(TARGET).$(POSTLINKFILETYPE)_$(VARIANTTYPE)_multifileobject.o |
|
507 |
MULTIFILE_VIAFILE:=$(INTERMEDIATEPATH)/$(TARGET)_$(VARIANTTYPE)_multifile.via |
|
508 |
endif |
|
509 |
||
510 |
## Via file #################################### |
|
511 |
# list of all objects to be linked |
|
512 |
# |
|
513 |
VIAFILE:=$(INTERMEDIATEPATH)/$(TARGET)_$(VARIANTTYPE)_objects.via |
|
514 |
ifneq ($(GENERATELINKERFEEDBACK),) |
|
515 |
FEEDBACKFILE:=$(INTERMEDIATEPATH)/$(TARGET)_$(VARIANTTYPE)_feedback.fdb |
|
516 |
endif |
|
517 |
||
518 |
# The groupin10 macro allows us to construct a via file, 10 objects at a time |
|
519 |
# to avoid limits on argument lengths and sizes on Windows. |
|
520 |
# It expands to a list of commands, each of which is on a separate line. |
|
521 |
# This causes the shell to be invoked once for each line but each line should |
|
522 |
# be shorter than the maximum allowed by windows. |
|
523 |
define groupin10 |
|
524 |
$(if $1,@echo -e $(foreach L,$(wordlist 1,10,$1),"$(L)\\n") >>$(VIAFILE),) |
|
525 |
$(if $1,$(call groupin10,$(wordlist 11,$(words $1),$1)),@true) |
|
526 |
endef |
|
527 |
||
528 |
################################################ |
|
529 |
||
530 |
||
531 |
## Link-type selection: |
|
532 |
# runtime static libraries link via AR |
|
533 |
ifneq ($(ARTARGET),) |
|
534 |
# Assuming that there are no libdeps in this case because this is probably one of the |
|
535 |
# Runtime libraries which has no deps. |
|
536 |
||
537 |
define artarget_func |
|
538 |
$(ARTARGET): $(if $(MULTIFILE_ENABLED),$(MULTIFILEOBJECT),$(LINKOBJECTS)) $(STDCPPTAGFILE) |
|
539 |
$(if $(MULTIFILE_ENABLED),,@echo "$(STDCPPTAGFILE)" > $(VIAFILE); |
|
540 |
$(call groupin10,$(LINKOBJECTS)) ;) |
|
541 |
$(call startrule,ar,FORCESUCCESS) \ |
|
542 |
$$(call dblquote,$(AR)) $(ARCHIVER_CREATE_OPTION) $$@ $(if $(MULTIFILE_ENABLED),$(MULTIFILEOBJECT),$(COMMANDFILE_OPTION)$(VIAFILE)) \ |
|
543 |
$(if $(DUMPBCINFO),&& $(FROMELF) -v $$@ > $$@.elfdump,) \ |
|
544 |
$(call endrule,ar) |
|
545 |
endef |
|
546 |
$(eval $(artarget_func)) |
|
547 |
||
5 | 548 |
CLEANTARGETS:=$(CLEANTARGETS) $(VIAFILE) $(if $(DUMPBCINFO),$(ARTARGET).elfdump,) |
3 | 549 |
endif |
550 |
||
551 |
||
552 |
||
553 |
# Targettype is some type of DLL or EXE (or derivative) |
|
554 |
ifneq ($(LINK_TARGET),) |
|
555 |
||
556 |
escaped_located_ARMLIBS:=$(foreach L,$(ARMLIBS),$(call ruleEscape,$(wildcard $(subst $(CHAR_SPACE),?,$(RVCTLIB)/*/$(L))))) |
|
557 |
quoted_located_ARMLIBS:=$(foreach L,$(ARMLIBS),$(call dblquoteitem,$(wildcard $(RVCTLIB)/*/$(L)))) |
|
558 |
located_STATICLIBRARIES:=$(foreach L,$(STATICLIBRARY),$(STATIC_LIBRARY_DIR)/$(L).lib) |
|
559 |
e32abiv2_LIBS:=$(EXPTARGET) $(LINKER_STUB_LIBRARY) $(if $(STATIC_RUNTIME_LIB),$(STATIC_RUNTIME_DIR)/$(STATIC_RUNTIME_LIB),) $(located_STATICLIBRARIES) |
|
560 |
# DLLS and EXEs - These objects are linked by a linker |
|
561 |
ifeq ($(ARMRT),) |
|
562 |
# Some of the runtime libraries do not set ARMRT because of a circular reference |
|
563 |
# problem; we need to stop these from linking to their own dso and not link to |
|
564 |
# the STATIC_LIBS_LIST. |
|
565 |
ifneq ($(findstring $(TARGET).dso,$(RUNTIME_LIBS_LIST)),) |
|
566 |
# (almost) ARM RUNTIME LIBS |
|
567 |
REDUCED_RUNTIME_LIBS_LIST:=$(subst $(TARGET).dso,,$(RUNTIME_LIBS_LIST)) |
|
568 |
||
569 |
ifeq ($(VARIANTTYPE),udeb) |
|
570 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(IMPORTLIBPATH)/,$(LIBRARY_DEBUG)) $(addprefix $(RUNTIME_LIBS_PATH)/,$(REDUCED_RUNTIME_LIBS_LIST)) |
|
571 |
else |
|
572 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(IMPORTLIBPATH)/,$(LIBRARY)) $(addprefix $(RUNTIME_LIBS_PATH)/,$(REDUCED_RUNTIME_LIBS_LIST)) |
|
573 |
endif |
|
574 |
quoted_e32abiv2_LIBS=$(e32abiv2_LIBS) $(quoted_located_ARMLIBS) |
|
575 |
escaped_e32abiv2_LIBS=$(e32abiv2_LIBS) $(escaped_located_ARMLIBS) |
|
576 |
||
577 |
else |
|
578 |
# NORMAL |
|
579 |
# |
|
580 |
ifeq ($(VARIANTTYPE),udeb) |
|
581 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(IMPORTLIBPATH)/,$(LIBRARY_DEBUG)) |
|
582 |
else |
|
583 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(IMPORTLIBPATH)/,$(LIBRARY)) |
|
584 |
endif |
|
585 |
ifeq ($(HAS_DEDICATED_OP_NEWDEL_LIB),1) |
|
586 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(RUNTIME_LIBS_PATH)/,$(NEWLIB)) |
|
587 |
endif |
|
588 |
quoted_e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(RUNTIME_LIBS_PATH)/,$(RUNTIME_LIBS_LIST)) $(call addquotedprefix,$(STATIC_LIBS_PATH)/,$(STATIC_LIBS_LIST)) $(quoted_located_ARMLIBS) |
|
589 |
escaped_e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(RUNTIME_LIBS_PATH)/,$(RUNTIME_LIBS_LIST)) $(addprefix $(call ruleEscape,$(STATIC_LIBS_PATH)/),$(STATIC_LIBS_LIST)) $(escaped_located_ARMLIBS) |
|
590 |
||
591 |
endif |
|
592 |
else |
|
593 |
# ARM RUNTIME LIBS |
|
594 |
ifeq ($(VARIANTTYPE),udeb) |
|
595 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(IMPORTLIBPATH)/,$(LIBRARY_DEBUG)) |
|
596 |
else |
|
597 |
e32abiv2_LIBS:=$(e32abiv2_LIBS) $(addprefix $(IMPORTLIBPATH)/,$(LIBRARY)) |
|
598 |
endif |
|
599 |
quoted_e32abiv2_LIBS=$(e32abiv2_LIBS) $(quoted_located_ARMLIBS) |
|
600 |
escaped_e32abiv2_LIBS=$(e32abiv2_LIBS) $(escaped_located_ARMLIBS) |
|
601 |
endif |
|
602 |
||
603 |
# NOTE: the groupin10 macro must be used before a call to the "startrule" macro |
|
604 |
# because the code between startrule and endrule is packaged up into one |
|
605 |
# commandline which would defeat the purpose of groupin10. |
|
606 |
# This is undesirable because viafile generation commands appear |
|
607 |
# outside the relevant tags but it is also unavoidable. |
|
608 |
define linktarget_func |
|
609 |
## The actual link target, dependencies and build step |
|
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
610 |
$(E32TARGET): $(POSTLINKDEFFILE) $(ELF2E32) $(if $(MULTIFILE_ENABLED),$(MULTIFILEOBJECT) $(CIAFILES_LINKOBJECTS),$(LINKOBJECTS)) $(escaped_e32abiv2_LIBS) $(LINKER_ENTRYPOINT_LIBDEP) $(if $(SUPPORTS_STDCPP_NEWLIB),$(CHECKLIB)) $(if $(LINKERFEEDBACK_STAGE2),$(FEEDBACKFILE),) $(if $(HAVE_ORDERONLY),|,) $(EPOCROOT)/epoc32/build/TEM_LIB |
3 | 611 |
$(if $(MULTIFILE_ENABLED),,@echo -n "" > $(VIAFILE); |
612 |
$(call groupin10,$(LINKOBJECTS)) ;) |
|
75
000ba5e4ba7d
Application of review comments.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
74
diff
changeset
|
613 |
$(call startrule,linkandpostlink) \ |
3 | 614 |
$(if $(PERTURBSTARTTIME),$(RANSLEEP) $(PERTURBMSECS) ;,) \ |
615 |
$(if $(SUPPORTS_STDCPP_NEWLIB),$(if $(located_STATICLIBRARIES),$(CHECKLIB) $(CHECKLIB_TYPE) --elf $(call dblquote,$(located_STATICLIBRARIES)) &&,),) \ |
|
616 |
$(LD) $(LINKER_MISC_FLAGS) $(LINKER_DEFAULT_LIB_PATHS) $(SYMBIAN_LINK_FLAGS) $(if $(DEBUG_INFO),$(LINKER_DEBUG_OPTION),$(LINKER_NODEBUG_OPTION)) \ |
|
617 |
$(if $(ARMLIBS),$(LD_WARNINGS_SUPPRESSION_ARMLIBS),) \ |
|
618 |
$(SHARED_OBJECT_OPTION) $(SPLIT_OPTION) \ |
|
22 | 619 |
$(RW_BASE) \ |
3 | 620 |
$(LINKER_ARCH_OPTION) \ |
22 | 621 |
$(SYMVER_OPTION) $(SO_NAME_OPTION)=$(call dblquote,$(LINKASVERSIONED)) \ |
3 | 622 |
$(LINKER_ENTRYPOINT_SETTING) \ |
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
623 |
-o $$(call dblquote,$(LINK_TARGET)) \ |
3 | 624 |
$(if $(LTCG),$(LTCG_OPTION),) \ |
22 | 625 |
$(LINKER_SYMBOLS_OPTION) $(LINKER_SYMBOLS_FILE_OPTION)=$(call dblquote,$(MAPFILE)) \ |
3 | 626 |
$(LINKEROPTION) \ |
627 |
$(if $(MULTIFILE_ENABLED),$(call dblquote,$(MULTIFILEOBJECT) $(CIAFILES_LINKOBJECTS)),$(COMMANDFILE_OPTION)$(call dblquote,$(VIAFILE))) \ |
|
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
628 |
$(if $(GENERATELINKERFEEDBACK),$(FEEDBACK_OPTION)$(call dblquote,$(FEEDBACKFILE))) \ |
3 | 629 |
$(if $(LINKER_ADD_STATIC_RUNTIME),$(if $(STATIC_RUNTIME_LIB),$(LINKER_GROUP_START_OPTION) $(STATIC_RUNTIME_DIR)/$(STATIC_RUNTIME_LIB) $(LINKER_GROUP_END_OPTION),)) \ |
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
630 |
$(quoted_e32abiv2_LIBS) $(LINKER_DEFAULT_LIBS) && \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
631 |
$(ELF2E32) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
632 |
--sid=0x$(if $(SID),$(SID),$(if $(UID3),$(UID3),0)) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
633 |
--version=$(VERSION) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
634 |
--capability=$(FINAL_CAPABILITIES) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
635 |
--linkas=$(call dblquote,$(LINKASVERSIONED)) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
636 |
--fpu=$(if $(ARMFPU),$(ARMFPU),$(POSTLINKER_FPU_DEFAULT)) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
637 |
--targettype=$(POSTLINKTARGETTYPE) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
638 |
--output=$$(call dblquote,$$@) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
639 |
--elfinput=$(call dblquote,$(LINK_TARGET)) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
640 |
$(if $(UID1),--uid1=0x$(UID1),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
641 |
$(if $(UID2),--uid2=0x$(UID2),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
642 |
$(if $(UID3),--uid3=0x$(UID3),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
643 |
$(if $(VENDORID),--vid=0x$(VENDORID),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
644 |
$(if $(EXPTARGET),--customdlltarget,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
645 |
$(if $(ARMLIBS),--excludeunwantedexports,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
646 |
$(if $(EPOCALLOWDLLDATA),--dlldata,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
647 |
$(if $(EPOCPROCESSPRIORITY),--priority=$(EPOCPROCESSPRIORITY),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
648 |
$(if $(EPOCSTACKSIZE),--stack=0x$(EPOCSTACKSIZE),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
649 |
$(if $(EPOCHEAPSIZEMIN),--heap=0x$(EPOCHEAPSIZEMIN)$(CHAR_COMMA)0x$(EPOCHEAPSIZEMAX),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
650 |
$(if $(EPOCFIXEDPROCESS),--fixedaddress,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
651 |
$(if $(EPOCDATALINKADDRESS),--datalinkaddress=$(EPOCDATALINKADDRESS),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
652 |
$(if $(NAMEDSYMLKUP),--namedlookup,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
653 |
$(if $(SMPSAFE),--smpsafe,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
654 |
$(if $(POSTLINKDEFFILE),--definput=$(POSTLINKDEFFILE),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
655 |
$(if $(EXPORTUNFROZEN),--unfrozen,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
656 |
$(if $(AUTOEXPORTS),--sysdef=$(call dblquote,$(AUTOEXPORTS)),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
657 |
$(if $(CANIGNORENONCALLABLE), \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
658 |
$(if $(IMPORTLIBRARYREQUIRED),,--ignorenoncallable),) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
659 |
$(if $(CANHAVEEXPORTS), --defoutput=$(call dblquote,$(GENERATED_DEFFILE)) --dso=$(GENERATED_DSO)) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
660 |
$(if $(filter $(VARIANTTYPE),$(DEBUGGABLE)),--debuggable,) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
661 |
$(if $(POSTLINKER_SUPPORTS_WDP), \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
662 |
--codepaging=$(PAGEDCODE_OPTION) --datapaging=$(PAGEDDATA_OPTION), \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
663 |
$(POSTLINKER_PAGEDOPTION)) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
664 |
$(if $(NOCOMPRESSTARGET),--uncompressed, \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
665 |
$(if $(INFLATECOMPRESSTARGET),--compressionmethod=inflate, \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
666 |
$(if $(BYTEPAIRCOMPRESSTARGET),--compressionmethod=bytepair, \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
667 |
--compressionmethod=$(POSTLINKER_COMPRESSION_DEFAULT)))) \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
668 |
--libpath="$(call concat,$(PATHSEP)$(CHAR_SEMIC),$(strip $(RUNTIME_LIBS_PATH) $(STATIC_LIBS_PATH)))" \ |
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
669 |
$(if $(SAVESPACE),$(if $(EXPORTUNFROZEN),,&& { $(GNURM) -rf $(INTERMEDIATEPATH); true; })) \ |
75
000ba5e4ba7d
Application of review comments.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
74
diff
changeset
|
670 |
$(call endrule,linkandpostlink) |
3 | 671 |
|
71
ba3ff6a1ecab
Experimental combined linknpostlink.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
27
diff
changeset
|
672 |
$(MAPFILE): $(E32TARGET) |
74
2f301831ccbb
Add dependency for .sym files.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
72
diff
changeset
|
673 |
$(LINK_TARGET): $(E32TARGET) |
3 | 674 |
endef |
75
000ba5e4ba7d
Application of review comments.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
74
diff
changeset
|
675 |
ifneq ($(DOPOSTLINK),) |
3 | 676 |
$(eval $(linktarget_func)) |
75
000ba5e4ba7d
Application of review comments.
Daniel Jacobs <daniel.jacobs@nokia.com>
parents:
74
diff
changeset
|
677 |
endif # ifneq ($(DOPOSTLINK),) |
3 | 678 |
|
5 | 679 |
CLEANTARGETS:=$(CLEANTARGETS) $(VIAFILE) $(if $(GENERATELINKERFEEDBACK),$(FEEDBACKFILE)) $(if $(MULTIFILE_ENABLED),$(MULTIFILEOBJECT)) |
3 | 680 |
WHATRELEASE:=$(WHATRELEASE) $(MAPFILE) |
681 |
||
682 |
endif # if TARGETTYPE lib |
|
683 |
||
684 |
||
685 |
## Run trace compiler ############################################## |
|
686 |
ifeq ($(UID3),) |
|
687 |
ifeq ($(UID2),) |
|
688 |
USE_TRACE_COMPILER:= |
|
689 |
else |
|
690 |
UID_TC:=$(UID2) |
|
691 |
endif |
|
692 |
else |
|
693 |
UID_TC:=$(UID3) |
|
694 |
endif |
|
695 |
||
696 |
# USE_TRACE_COMPILER defaults to blank in Raptor config. |
|
697 |
# Users can turn TC on by setting it to 1 in user config. |
|
698 |
ifneq ($(USE_TRACE_COMPILER),) |
|
699 |
include $(FLMHOME)/tracecompiler.mk |
|
700 |
endif |
|
701 |
||
702 |
CC_CPPONLY_ARGS:=$(SYMBIAN_CCFLAGS) $(if $(DEBUG_INFO),-g) $(DEBUG_FORMAT) \ |
|
703 |
$(RUNTIME_SYMBOL_VISIBILITY_OPTION) $(EXCEPTIONS) \ |
|
704 |
$(CC_WARNINGS_CONTROL_OPTION) $(CC_ERRORS_CONTROL_OPTION) \ |
|
705 |
$(TARGET_ARCH_OPTION) $(ENUM_OPTION) $(OWN_LIBRARY_OPTION) $(FPMODE_OPTION) \ |
|
706 |
$(EXPORT_VTBL_OPTION) $(NO_UNALIGNED_ACCESS) $(VFE_OPTION) $(AAPCS_OPTION) \ |
|
707 |
$(CPPONLYOPTION) $(INSTRUCTION_SET) \ |
|
708 |
$(if $(ALWAYS_BUILD_AS_ARM),$(ARM_INSTRUCTION_SET),$(THUMB_INSTRUCTION_SET) $(call makemacrodef,-D,$(COMPILER_THUMB_DEFINES))) \ |
|
9 | 709 |
$(COMPILER_FPU_OPTION)$(if $(ARMFPU),$(ARMFPU),$(COMPILER_FPU_DEFAULT)) |
3 | 710 |
|
711 |
## COMPILE CPP Files ################################################################# |
|
712 |
||
713 |
# For ARMCC we can compile all sourcefiles with one invocation |
|
714 |
# The pathprep macro is used to make sure that forward slashes in options |
|
715 |
# are not interpreted as being paths by CYGWIN on Windows. On windows |
|
716 |
# pathprep makes a forward slash into two. |
|
717 |
||
718 |
# The majority of ARMCC arguments are common across all compiler invocations |
|
719 |
# Order is significant here in that OPTION_REPLACE here and in ABLD should |
|
720 |
# have the same impact |
|
721 |
CC_CORE_ARGS:=$(SYMBIAN_CCFLAGS) $(if $(DEBUG_INFO),-g) $(DEBUG_FORMAT) \ |
|
722 |
$(RUNTIME_SYMBOL_VISIBILITY_OPTION) $(EXCEPTIONS) \ |
|
723 |
$(CC_WARNINGS_CONTROL_OPTION) $(CC_ERRORS_CONTROL_OPTION) \ |
|
724 |
$(TARGET_ARCH_OPTION) $(ENUM_OPTION) $(OWN_LIBRARY_OPTION) $(FPMODE_OPTION) \ |
|
725 |
$(EXPORT_VTBL_OPTION) $(NO_UNALIGNED_ACCESS) $(VFE_OPTION) $(AAPCS_OPTION) \ |
|
726 |
$(COMPILE_ONLY_OPTION) $(INSTRUCTION_SET) \ |
|
727 |
$(if $(ALWAYS_BUILD_AS_ARM),$(ARM_INSTRUCTION_SET),$(THUMB_INSTRUCTION_SET) $(call makemacrodef,-D,$(COMPILER_THUMB_DEFINES))) \ |
|
9 | 728 |
$(COMPILER_FPU_OPTION)$(if $(ARMFPU),$(ARMFPU),$(COMPILER_FPU_DEFAULT)) |
3 | 729 |
|
730 |
ifeq ($(STDCPP),1) |
|
731 |
SYSTEMINCLUDE:=$(SYSTEMINCLUDE) $(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(STDCPP_INCLUDE))) |
|
732 |
endif |
|
733 |
||
734 |
define option_replace |
|
735 |
# Process a single, combined, item of the form 'search<->replace' in order to modify the command line tool call |
|
736 |
# We split this into its component arguments for use in substitutions |
|
737 |
# Spaces will have been escaped elsewhere to maintain distinct words, so we resurrect these |
|
738 |
# after the split. |
|
739 |
SEARCH:=$(subst %20,$(CHAR_SPACE),$(word 1,$(subst <->,$(CHAR_SPACE),$(1)))) |
|
740 |
REPLACE:=$(subst %20,$(CHAR_SPACE),$(word 2,$(subst <->,$(CHAR_SPACE),$(1)))) |
|
741 |
||
742 |
# Depending on whether there's a wildcard in the search, we may require either a normal $(subst) or a $(patsubst) |
|
743 |
PATSUBST:=$$(if $$(findstring %,$$(SEARCH)),1,) |
|
744 |
||
745 |
ifeq ($$(PATSUBST),1) |
|
746 |
CC_CORE_ARGS:=$$(patsubst $$(SEARCH),$$(REPLACE),$$(CC_CORE_ARGS)) |
|
747 |
else |
|
748 |
CC_CORE_ARGS:=$$(subst $$(SEARCH),$$(REPLACE),$$(CC_CORE_ARGS)) |
|
749 |
endif |
|
750 |
endef |
|
751 |
$(foreach ITEM,$(OPTION_REPLACE_COMPILER),$(eval $(call option_replace,$(ITEM)))) |
|
752 |
||
753 |
define e32abiv2_compile |
|
754 |
||
755 |
$(eval DEPENDFILENAME:=$(1).d) |
|
756 |
$(eval DEPENDFILE:=$(wildcard $(DEPENDFILENAME))) |
|
757 |
||
758 |
# $4 is for language specific options (e.g. C++ vs C) |
|
759 |
$(1): $(2) $(PROJECT_META) $(if $(MULTIFILE_ENABLED),,$(if $(DEPENDFILE),,RESOURCE BITMAP EXPORT)) $(if $(USE_TRACE_COMPILER),$(TRACE_MARKER),) $(if $(LINKERFEEDBACK_STAGE2),$(FEEDBACKFILE),) |
|
760 |
$(call startrule,compile,,$(2)) \ |
|
761 |
$(if $(PERTURBSTARTTIME), $(RANSLEEP) $(PERTURBMSECS) ;,) \ |
|
762 |
$(if $(MULTIFILE_ENABLED), echo $(2) $(3) > $(MULTIFILE_VIAFILE) ;,) \ |
|
763 |
$(CC) $(LICENSERETRY_OPTION) \ |
|
764 |
$(CC_CORE_ARGS) \ |
|
765 |
$(OPTION_COMPILER) $(if $(MULTIFILE_ENABLED),$(4),$(3)) \ |
|
766 |
$(if $(LTCG),$(LTCG_OPTION),) \ |
|
767 |
$(if $(USE_PROFILER_FEEDBACK),--profile=$(call dblquote,$(ARM_PROFILER_FILE)),) \ |
|
768 |
$(call makemacrodef,-D,$(COMPILER_INTERWORK_DEFINES) $(CDEFS)) \ |
|
769 |
$(if $(PREINCLUDE),$(PREINCLUDE_OPTION) ,)$(call concat, $(PREINCLUDE_OPTION) ,$(call dblquote,$(PREINCLUDE)))\ |
|
770 |
$(if $(SET_ARMINC),$(if $(RVCTINC),$(COMPILER_SYSTEM_INCLUDE_OPTION)$(call dblquoteitem,$(RVCTINC)),),) \ |
|
771 |
$(COMPILER_SYSTEM_INCLUDE_OPTION)$$(call dblquote,$$(<D)) \ |
|
772 |
$(if $(USERINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(USERINCLUDE))) \ |
|
773 |
$(if $(SYSTEMINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(SYSTEMINCLUDE))) \ |
|
774 |
$(if $(NOHIDEALL),--no_hide_all,) \ |
|
775 |
$(DEPEND_OPTION) $(call dblquote,$(1).d) \ |
|
776 |
$(if $(LINKERFEEDBACK_STAGE2),$(FEEDBACK_OPTION)$(call dblquote,$(FEEDBACKFILE))) \ |
|
777 |
$(if $(MULTIFILE_ENABLED),--multifile $(OUTPUT_OPTION) $(MULTIFILEOBJECT) \ |
|
778 |
--via $$(call dblquote, $(MULTIFILE_VIAFILE)),$(OUTPUT_OPTION) $$@ $$(call dblquote, $$<)) \ |
|
779 |
$(call endrule,compile) |
|
780 |
||
781 |
CLEANTARGETS:=$$(CLEANTARGETS) $(DEPENDFILENAME) |
|
782 |
ifneq "$(DEPENDFILE)" "" |
|
783 |
ifeq ($(NO_DEPEND_INCLUDE),) |
|
784 |
ifeq "$(filter %CLEAN,$(call uppercase,$(MAKECMDGOALS)))" "" |
|
785 |
-include $(DEPENDFILE) |
|
786 |
endif |
|
787 |
endif |
|
788 |
endif |
|
789 |
||
790 |
# individual source file compilation |
|
791 |
SOURCETARGET_$(call sanitise,$(2)): $(1) |
|
792 |
||
793 |
endef |
|
794 |
||
795 |
# Evaluate .cpp and .c files in one go for multifile, cannot do in separate steps since we have the same target. |
|
796 |
# This implementation means the .c files will always get put at the end of the .via file. Maybe there is a better way to do this? |
|
797 |
$(if $(MULTIFILE_ENABLED),$(eval $(call e32abiv2_compile,$(MULTIFILEOBJECT),$(CPPFILES),$(CFILES),$(CPP_LANG_OPTION))),$(foreach F,$(CPPFILES),$(eval $(call e32abiv2_compile,$(call mapcpp2object,$(F)),$(F),$(CPP_LANG_OPTION))))) |
|
798 |
$(if $(MULTIFILE_ENABLED),,$(foreach F,$(CFILES),$(eval $(call e32abiv2_compile,$(call mapc2object,$(F)),$(F),$(C_LANG_OPTION))))) |
|
799 |
ifneq ($(TRANSFORM_CIA),1) |
|
800 |
$(if $(MULTIFILE_ENABLED),,$(foreach F,$(CIAFILES),$(eval $(call e32abiv2_compile,$(call mapcia2object,$(F)),$(F),$(CPP_LANG_OPTION) $(COMPILER_CIA_FLAGS))))) |
|
801 |
endif |
|
802 |
||
803 |
CLEANTARGETS:=$(CLEANTARGETS) $(if $(MULTIFILE_ENABLED),$(MULTIFILE_VIAFILE) $(MULTIFILEOBJECT),$(CPPFILES_LINKOBJECTS) $(CFILES_LINKOBJECTS) $(CIAFILES_LINKOBJECTS)) $(if $(GENERATELINKERFEEDBACK),$(FEEDBACKFILE)) |
|
804 |
||
805 |
## Listing target ################################################### |
|
806 |
# Very similar to compile, apart from the extra flags passed to the |
|
807 |
# compile and different output options |
|
808 |
||
809 |
define map2listfile |
|
810 |
$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(CPPFILEEXTENSIONS) $(CFILEEXTENSIONS),.lis,$1)) |
|
811 |
endef |
|
812 |
||
813 |
||
814 |
define e32abiv2_cpponly |
|
815 |
# $1 is the sourcefile |
|
816 |
||
817 |
$(eval CPPONLYTARGET:=$(strip $(call extractandmap,$(CPPFILEEXTENSIONS) $(CFILEEXTENSIONS),.$(subst _,.,$(call sanitise,$(FULLVARIANTPATH))).pre,$1))) |
|
818 |
||
819 |
CPPONLY:: $(CPPONLYTARGET) |
|
820 |
||
821 |
$(CPPONLYTARGET): $(1) $(PROJECT_META) $(if $(DEPENDFILE),,RESOURCE BITMAP EXPORT) |
|
822 |
$(call startrule,e32cpponly,,$(1)) \ |
|
823 |
$(if $(PERTURBSTARTTIME), $(RANSLEEP) $(PERTURBMSECS) ;,) \ |
|
824 |
$(CC) $(LICENSERETRY_OPTION) $(SYMBIAN_CCFLAGS) \ |
|
825 |
$(CC_CPPONLY_ARGS) \ |
|
826 |
$(OPTION_COMPILER) \ |
|
827 |
$(call makemacrodef,-D,$(COMPILER_INTERWORK_DEFINES) $(CDEFS)) \ |
|
828 |
$(if $(PREINCLUDE),$(PREINCLUDE_OPTION) ,)$(call concat, $(PREINCLUDE_OPTION) ,$(call dblquote,$(PREINCLUDE)))\ |
|
829 |
$(if $(SET_ARMINC),$(if $(RVCTINC),$(COMPILER_SYSTEM_INCLUDE_OPTION)$(call dblquote,$(RVCTINC)),),) \ |
|
830 |
$(COMPILER_SYSTEM_INCLUDE_OPTION)$$(call dblquote,$$(<D)) \ |
|
831 |
$(if $(USERINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(USERINCLUDE))) \ |
|
832 |
$(if $(SYSTEMINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(SYSTEMINCLUDE))) \ |
|
833 |
$(if $(NOHIDEALL),--no_hide_all,) \ |
|
834 |
$$(call dblquote, $$<) $(OUTPUT_OPTION) $$(@) \ |
|
835 |
$(call endrule,e32cpponly) |
|
836 |
||
837 |
CLEANTARGETS:=$$(CLEANTARGETS) $(CPPONLYTARGET) |
|
838 |
endef |
|
839 |
||
840 |
ifneq ($(filter CPPONLY,$(call uppercase,$(MAKECMDGOALS))),) |
|
841 |
$(foreach F,$(CPPFILES) $(CFILES),$(eval $(call e32abiv2_cpponly,$(F)))) |
|
842 |
endif |
|
843 |
||
844 |
define e32abiv2_listing |
|
845 |
# $1 is the sourcefile |
|
846 |
||
847 |
$(eval LISTINGTARGET:=$(strip $(call extractandmap,$(CPPFILEEXTENSIONS) $(CFILEEXTENSIONS),.$(subst _,.,$(call sanitise,$(FULLVARIANTPATH))).$(TARGET).$(if $(REQUESTEDTARGETEXT),$(REQUESTEDTARGETEXT),$(POSTLINKFILETYPE)).lst,$1))) |
|
848 |
$(eval DEPENDFILENAME:=$(call map2listfile,$1).d) |
|
849 |
$(eval DEPENDFILE:=$(wildcard $(DEPENDFILENAME))) |
|
850 |
||
851 |
||
852 |
LISTING:: $(LISTINGTARGET) |
|
853 |
||
854 |
$(LISTINGTARGET): $(1) $(PROJECT_META) $(if $(DEPENDFILE),,RESOURCE BITMAP EXPORT) |
|
855 |
$(call startrule,e32listing,,$(1)) \ |
|
856 |
$(if $(PERTURBSTARTTIME), $(RANSLEEP) $(PERTURBMSECS) ;,) \ |
|
857 |
$(CC) $(LICENSERETRY_OPTION) $(SYMBIAN_CCFLAGS) \ |
|
858 |
$(CC_CORE_ARGS) \ |
|
859 |
$(LISTING_OPTION) \ |
|
860 |
$(OPTION_COMPILER) \ |
|
861 |
$(call makemacrodef,-D,$(COMPILER_INTERWORK_DEFINES) $(CDEFS)) \ |
|
862 |
$(if $(PREINCLUDE),$(PREINCLUDE_OPTION) ,)$(call concat, $(PREINCLUDE_OPTION) ,$(call dblquote,$(PREINCLUDE)))\ |
|
863 |
$(if $(SET_ARMINC),$(if $(RVCTINC),$(COMPILER_SYSTEM_INCLUDE_OPTION)$(call dblquoteitem,$(RVCTINC)),),) \ |
|
864 |
$(COMPILER_SYSTEM_INCLUDE_OPTION)$$(call dblquote,$$(<D)) \ |
|
865 |
$(if $(USERINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(USERINCLUDE))) \ |
|
866 |
$(if $(SYSTEMINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$(call dblquote,$(SYSTEMINCLUDE))) \ |
|
867 |
$(if $(NOHIDEALL),--no_hide_all,) \ |
|
868 |
$(DEPEND_OPTION) $(call dblquote,$(DEPENDFILENAME)) \ |
|
869 |
$$(call dblquote, $$<) $(OUTPUT_OPTION) $$(@) \ |
|
870 |
$(call endrule,e32listing) |
|
871 |
||
872 |
CLEANTARGETS:=$$(CLEANTARGETS) $(LISTINGTARGET) |
|
873 |
||
874 |
CLEANTARGETS:=$$(CLEANTARGETS) $(DEPENDFILENAME) |
|
875 |
ifneq "$(DEPENDFILE)" "" |
|
876 |
ifeq ($(NO_DEPEND_INCLUDE),) |
|
877 |
ifeq "$(filter %CLEAN,$(call uppercase,$(MAKECMDGOALS)))" "" |
|
878 |
-include $(DEPENDFILE) |
|
879 |
endif |
|
880 |
endif |
|
881 |
endif |
|
882 |
||
883 |
endef |
|
884 |
||
885 |
# No point at all in generating listing targetsif we aren't going to make them |
|
886 |
ifneq ($(filter LISTING,$(call uppercase,$(MAKECMDGOALS))),) |
|
887 |
$(foreach F,$(CPPFILES) $(CFILES),$(eval $(call e32abiv2_listing,$(F)))) |
|
888 |
endif |
|
889 |
||
890 |
||
891 |
||
892 |
# Function to execute FREEZE ########################################### |
|
893 |
ifneq ($(SUPPORT_FREEZE),) |
|
894 |
||
895 |
# Fivespaces variable created to ensure a suitable gap of space characters |
|
896 |
# Is placed between the separate arguments. This fixes a problem in Cygwin, where |
|
897 |
# separate arguments are interpreted as a single argument when passed to bash |
|
898 |
FIVESPACES=$(BLANK) $(BLANK) |
|
899 |
||
900 |
FREEZEGUARD:=TARGET_$(TARGET)_$(if $(REQUESTEDTARGETEXT),$(REQUESTEDTARGETEXT),$(POSTLINKFILETYPE))_$(IMPORTLIBPATH)_EFREEZE |
|
901 |
||
902 |
define e32freeze |
|
903 |
||
904 |
FREEZE:: $(1) |
|
905 |
$(call startrule,freeze,,$(RESOLVED_DEFFILE)) \ |
|
906 |
$(EFREEZE) $(EFREEZE_REMOVE_OPTION) "$(RESOLVED_DEFFILE)" $(FIVESPACES) $(call dblquote,$(GENERATED_DEFFILE)) \ |
|
907 |
$(call endrule,freeze) |
|
908 |
endef |
|
909 |
||
910 |
# Only freeze once - udeb and urel cannot differ |
|
911 |
ifeq ($($(FREEZEGUARD)),) |
|
912 |
# For most freezing activity we need the temporary .def file generated in the final post-link |
|
913 |
# that lists the current exports - FREEZE can therefore be dependent on the final post-linked binary, |
|
914 |
# with the side-effect that a build is triggered if someone tries to freeze without having built. |
|
915 |
# |
|
916 |
# However, there's one case where we don't want to be dependent on the post-linked binary in this way, |
|
917 |
# and that's when (a) there are missing exports, (b) the user's aware of them and (c) they're deliberately freezing to |
|
918 |
# remove them using EFREEZE's remove option. Being dependent on the post-linked binary in this case, where ELF2E32 |
|
919 |
# actually fails to generate a final binary, would mean that the freeze would never happen and post-linking would |
|
920 |
# just be continually re-attempted (to fail each time). |
|
921 |
# |
|
922 |
# So, as a special case, if the user is explicitly attempting to freeze and perform removals, we make FREEZE dependent |
|
923 |
# on the temporary .def file instead. This has no rule to actually make it, but gives a hint as to what is wrong if |
|
924 |
# the users performs a freeze with remove without having explicitly built previously. |
|
925 |
# |
|
926 |
ifneq ($(EFREEZE_REMOVE_OPTION),) |
|
927 |
$(eval $(call e32freeze,$(GENERATED_DEFFILE))) |
|
928 |
else |
|
929 |
$(eval $(call e32freeze,$(E32TARGET))) |
|
930 |
endif |
|
931 |
$(FREEZEGUARD):=1 |
|
932 |
endif |
|
933 |
||
934 |
endif |
|
935 |
||
936 |
CLEANTARGETS:=$(CLEANTARGETS) $(if $(MULTIFILE_ENABLED),$(MULTIFILEOBJECT),$(CPPFILES_LINKOBJECTS) $(CFILES_LINKOBJECTS)) |
|
937 |
||
938 |
## ASSEMBLER FILES ################################################################### |
|
939 |
# CIA VERSION ############################################ |
|
940 |
define mapcia2xxx |
|
941 |
$(call relocatefiles,$(INTERMEDIATEPATH),$(call extractandmap,$(CIAFILEEXTENSIONS),$2,$1)) |
|
942 |
endef |
|
943 |
||
944 |
define e32abiv2_CIA2CPP |
|
945 |
||
946 |
$(eval e32abiv2_OFILE:=$(call mapcia2xxx,$(1),_.o)) |
|
947 |
$(eval e32abiv2_PREFILE:=$(call mapcia2xxx,$(1),_.pre)) |
|
948 |
$(eval e32abiv2_CPPFILE:=$(call mapcia2xxx,$(1),_.cpp)) |
|
949 |
$(eval CLEANTARGETS:=$(CLEANTARGETS) $(e32abiv2_OFILE) $(e32abiv2_CPPFILE) $(e32abiv2_PREFILE)) |
|
950 |
||
951 |
$(e32abiv2_OFILE): $(e32abiv2_CPPFILE) $(PROJECT_META) |
|
952 |
$(call startrule,cia2cpp2o,,$(e32abiv2_CPPFILE)) \ |
|
953 |
$(if $(PERTURBSTARTTIME),$(RANSLEEP) $(PERTURBMSECS) ;,) \ |
|
954 |
$(CC) $(LICENSERETRY_OPTION) \ |
|
955 |
$(CC_CORE_ARGS) \ |
|
956 |
$(if $(LTCG),$(LTCG_OPTION),) \ |
|
957 |
$(OPTION_COMPILER) \ |
|
958 |
$(call makemacrodef,-D,$(COMPILER_INTERWORK_DEFINES) $(CDEFS) $(CIADEFS)) $(CPP_LANG_OPTION) \ |
|
959 |
$(if $(USERINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$$(call dblquote,$(USERINCLUDE))) \ |
|
960 |
$(if $(SYSTEMINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$$(call dblquote,$(SYSTEMINCLUDE))) \ |
|
961 |
$$(call dblquote, $$<) $(OUTPUT_OPTION) $$@ \ |
|
962 |
$(call endrule,cia2cpp2o) |
|
963 |
||
964 |
||
965 |
# preprocessed CIA file to a CPP file |
|
966 |
$(e32abiv2_CPPFILE): $(e32abiv2_PREFILE) |
|
967 |
$(call startrule,tranasm) \ |
|
968 |
$(if $(CPPFILT),CPPFILT="$(CPPFILT)",) \ |
|
969 |
$(TRANASM) --suppress-check --output="$$@" $$^ \ |
|
970 |
$(call endrule,tranasm) |
|
971 |
||
972 |
$(eval DEPENDFILENAME:=$(e32abiv2_PREFILE).d) |
|
973 |
$(eval DEPENDFILE:=$(wildcard $(DEPENDFILENAME))) |
|
974 |
||
975 |
# preprocess the cia file |
|
976 |
$(eval e32abiv2_PREFILE_OPTIONS:= $(LICENSERETRY_OPTION) $(PREPROCESSOR_OPTION) $(CPP_OPTION) \ |
|
977 |
$(SYMBIAN_CCFLAGS) $(call makemacrodef,-D,$(COMPILER_INTERWORK_DEFINES) $(CDEFS) $(CIADEFS)) $(CPP_LANG_OPTION) \ |
|
978 |
$(if $(PREINCLUDE),$(PREINCLUDE_OPTION) ,)$$(call concat, $(PREINCLUDE_OPTION) ,$$(call dblquote,$(PREINCLUDE))) \ |
|
979 |
$(if $(USERINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$$(call dblquote,$(USERINCLUDE))) \ |
|
980 |
$(if $(SYSTEMINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$$(call dblquote,$(SYSTEMINCLUDE))) \ |
|
981 |
$(if $(ARMINC),$(if $(RVCTINC), $(COMPILER_SYSTEM_INCLUDE_OPTION)$$(call dblquoteitem,$(RVCTINC)),),) ) |
|
982 |
||
983 |
||
984 |
$(e32abiv2_PREFILE): $1 $(PROJECT_META) $(if $(DEPENDFILE),,RESOURCE BITMAP EXPORT) |
|
985 |
$(call startrule,cia2cpp,,$1) \ |
|
986 |
$(if $(PERTURBSTARTTIME),$(RANSLEEP) $(PERTURBMSECS) ;,) \ |
|
987 |
$(CC) $(e32abiv2_PREFILE_OPTIONS) $(OUTPUT_OPTION) $$@ $$(call dblquote,$1) && \ |
|
988 |
$(CC) -M $(e32abiv2_PREFILE_OPTIONS) --depend_format=unix \ |
|
989 |
$(OUTPUT_OPTION) $$@ $$(call dblquote,$1) > $(call dblquote,$(e32abiv2_PREFILE).d) \ |
|
990 |
$(call endrule,cia2cpp) |
|
991 |
||
992 |
CLEANTARGETS:=$$(CLEANTARGETS) $(DEPENDFILENAME) |
|
993 |
ifneq "$(DEPENDFILE)" "" |
|
994 |
ifeq ($(NO_DEPEND_INCLUDE),) |
|
995 |
ifeq "$(filter %CLEAN,$(call uppercase,$(MAKECMDGOALS)))" "" |
|
996 |
-include $(DEPENDFILE) |
|
997 |
endif |
|
998 |
endif |
|
999 |
endif |
|
1000 |
||
1001 |
endef |
|
1002 |
||
1003 |
# Create a rule for each cia file |
|
1004 |
ifeq ($(TRANSFORM_CIA),1) |
|
1005 |
$(eval $(foreach e32abiv2_RULE,$(CIAFILES),$(call e32abiv2_CIA2CPP,$(e32abiv2_RULE)))) |
|
1006 |
endif |
|
1007 |
||
1008 |
# Pure assembler (.s files) ################################ |
|
1009 |
||
1010 |
e32abiv2_asm_OPTIONS:=$(LICENSERETRY_OPTION) \ |
|
1011 |
$(CC_CORE_ARGS) \ |
|
1012 |
$(OPTION_COMPILER) \ |
|
1013 |
$(call makemacrodef,-D,$(COMPILER_INTERWORK_DEFINES) $(CDEFS)) \ |
|
1014 |
$(if $(USERINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$$(call dblquote,$(USERINCLUDE))) \ |
|
1015 |
$(if $(SYSTEMINCLUDE),$(COMPILER_SYSTEM_INCLUDE_OPTION),)$$(call concat, $(COMPILER_SYSTEM_INCLUDE_OPTION),$$(call dblquote,$(SYSTEMINCLUDE))) |
|
1016 |
||
1017 |
# note that the --no_rtti option cannot be passed with the -M option |
|
1018 |
# so forcibly remove it when generating ASM dependencies. |
|
1019 |
# |
|
1020 |
define e32abiv2_asm |
|
1021 |
||
1022 |
$(eval DEPENDFILENAME:=$(1).d) |
|
1023 |
$(eval DEPENDFILE:=$(wildcard $(DEPENDFILENAME))) |
|
1024 |
||
1025 |
$(1): $(2) $(PROJECT_META) $(if $(DEPENDFILE),,RESOURCE BITMAP EXPORT) |
|
1026 |
$(call startrule,asmcompile,,$(2)) \ |
|
1027 |
$(if $(PERTURBSTARTTIME),$(RANSLEEP) $(PERTURBMSECS) ;,) \ |
|
1028 |
$(CC) $(e32abiv2_asm_OPTIONS) \ |
|
1029 |
$(DEPEND_OPTION) $(call dblquote,$(DEPENDFILENAME)) \ |
|
1030 |
$$(call dblquote, $$<) $(OUTPUT_OPTION) $$@ \ |
|
1031 |
$(call endrule,asmcompile) |
|
1032 |
$(call startrule,asmdependencies) \ |
|
1033 |
$(CC) -M $(subst --no_rtti,,$(e32abiv2_asm_OPTIONS)) --depend_format=unix \ |
|
1034 |
$(OUTPUT_OPTION) $$@ $$(call dblquote,$2) > $(call dblquote,$(DEPENDFILENAME)) \ |
|
1035 |
$(call endrule,asmdependencies) |
|
1036 |
||
1037 |
CLEANTARGETS:=$$(CLEANTARGETS) $(DEPENDFILENAME) |
|
1038 |
ifneq "$(DEPENDFILE)" "" |
|
1039 |
ifeq ($(NO_DEPEND_INCLUDE),) |
|
1040 |
ifeq "$(filter %CLEAN,$(call uppercase,$(MAKECMDGOALS)))" "" |
|
1041 |
-include $(DEPENDFILE) |
|
1042 |
endif |
|
1043 |
endif |
|
1044 |
endif |
|
1045 |
||
1046 |
CREATABLEPATHS:=$$(CREATABLEPATHS) $(INTERMEDIATEPATH) |
|
1047 |
||
1048 |
endef |
|
1049 |
||
1050 |
$(eval $(foreach F,$(ASMFILES), $(call e32abiv2_asm,$(call mapasm2object,$(F)),$(F)))) |
|
1051 |
CLEANTARGETS:=$(CLEANTARGETS) $(ASMFILES_LINKOBJECTS) |
|
1052 |
||
1053 |
endif # ifneq ($(TARGETTYPE),implib) |
|
1054 |
||
1055 |
||
1056 |
########################## Build ROMFILE target ############################ |
|
1057 |
EPOC_ROOT:=$(patsubst %/,%,$(EPOCROOT)) |
|
1058 |
TOBLDINF:=$(dir $(subst :,,$(subst $(EPOC_ROOT)/,,$(COMPONENT_META)))) |
|
1059 |
||
1060 |
# Only build ROMFILE if asked |
|
1061 |
ifneq ($(filter ROMFILE,$(call uppercase,$(MAKECMDGOALS))),) |
|
1062 |
ifeq ($(ROMFILE_$(call sanitise,$(TARGET).$(REQUESTEDTARGETEXT))),) |
|
1063 |
ROMFILE_$(call sanitise,$(TARGET).$(REQUESTEDTARGETEXT)):=1 |
|
1064 |
ROMDIR:=$(EPOC_ROOT)/epoc32/rom/$(TOBLDINF) |
|
1065 |
||
1066 |
# Default values |
|
1067 |
ROMFILETYPE:=file |
|
1068 |
ROMFILE:=$(TARGET).$(REQUESTEDTARGETEXT) |
|
1069 |
ROMPATH:=sys/bin/ |
|
1070 |
ROMDECORATIONS:= |
|
1071 |
ROMFILETYPE_RAM:=data |
|
1072 |
ROMFILE_RAM:=$(TARGET).$(REQUESTEDTARGETEXT) |
|
1073 |
ROMPATH_RAM:=sys/bin/ |
|
1074 |
BUILDROMTARGET:=1 |
|
1075 |
ABIDIR:=MAIN |
|
1076 |
||
1077 |
$(eval $(call DoRomSet)) |
|
1078 |
||
1079 |
ifneq ($(EPOCFIXEDPROCESS),) |
|
1080 |
ROMDECORATIONS:=$(ROMDECORATIONS) fixed |
|
1081 |
endif |
|
1082 |
ifeq ($(PAGED),1) |
|
1083 |
ROMDECORATIONS:=$(ROMDECORATIONS) paged |
|
1084 |
endif |
|
1085 |
ifeq ($(PAGED),0) |
|
1086 |
ROMDECORATIONS:=$(ROMDECORATIONS) unpaged |
|
1087 |
endif |
|
1088 |
||
1089 |
||
1090 |
ifeq ($(TESTCODE),TRUE) |
|
1091 |
# Add 'TEST' to the .iby filename |
|
1092 |
ROMTEST:=test |
|
1093 |
ifeq ($(TEST_OPTION),BOTH) |
|
1094 |
DATATEXT:="data=/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).auto.bat test/$(MODULE).auto.bat"\n"data=/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).manual.bat test/$(MODULE).manual.bat" |
|
1095 |
else |
|
1096 |
ifneq ($(TEST_OPTION),NONE) |
|
1097 |
DATATEXT:="data=/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).$(TEST_OPTION).bat test/$(MODULE).$(TEST_OPTION).bat" |
|
1098 |
endif |
|
1099 |
endif |
|
1100 |
else |
|
1101 |
DATATEXT:= |
|
1102 |
endif |
|
1103 |
||
1104 |
# ROMTARGET |
|
1105 |
ifneq ($(ROMTARGET),) |
|
1106 |
ifneq ($(words $(ROMTARGET)),1) |
|
1107 |
ROMTARGETALL:=$(ROMTARGET) |
|
1108 |
ROMTARGET:=$(word 1,$(ROMTARGET)) |
|
1109 |
endif |
|
1110 |
||
1111 |
ifeq ($(ROMTARGET),<none>) |
|
1112 |
BUILDROMTARGET:= |
|
1113 |
else |
|
1114 |
ifneq ($(ROMTARGET),+) |
|
1115 |
ifneq ($(notdir $(ROMTARGET)),) |
|
1116 |
ROMFILE:=$(notdir $(ROMTARGET)) |
|
1117 |
endif |
|
1118 |
ifneq ($(dir $(ROMTARGET)),./) |
|
1119 |
ROMPATH:=$(dir $(ROMTARGET)) |
|
1120 |
endif |
|
1121 |
endif |
|
1122 |
endif |
|
1123 |
endif |
|
1124 |
endif |
|
1125 |
||
1126 |
ROMFILENAME:=$(ROMDIR)$(PLATFORM)$(ROMTEST).iby |
|
1127 |
||
1128 |
# RAMTARGET |
|
1129 |
ifneq ($(RAMTARGET),) |
|
1130 |
ROMDECORATIONS_RAM:=" attrib=r" |
|
1131 |
ifneq ($(RAMTARGET),+) |
|
1132 |
ifneq ($(notdir $(RAMTARGET)),) |
|
1133 |
ROMFILE_RAM:=$(notdir $(RAMTARGET)) |
|
1134 |
endif |
|
1135 |
ifneq ($(dir $(RAMTARGET)),./) |
|
1136 |
ROMPATH_RAM:=$(dir $(RAMTARGET)) |
|
1137 |
endif |
|
1138 |
endif |
|
1139 |
endif |
|
1140 |
||
1141 |
define BuildRomfileTarget |
|
1142 |
$(ALLTARGET)::ROMFILE |
|
1143 |
ROMFILE:: |
|
1144 |
$(call startrule,rombuild) \ |
|
1145 |
$(GNUMKDIR) -p $(ROMDIR) \ |
|
1146 |
$(if $(ROMFILE_CREATED_$(TOBLDINF)),,&& echo -e "// $(subst $(EPOC_ROOT)/,,$(ROMFILENAME))\n//\n$(DATATEXT)" > $(ROMFILENAME)) \ |
|
1147 |
$(if $(BUILDROMTARGET),&& echo "$(ROMFILETYPE)=/epoc32/release/##$(ABIDIR)##/##BUILD##/$(TARGET).$(REQUESTEDTARGETEXT) $(1)$(ROMDECORATIONS)" >> $(ROMFILENAME)) \ |
|
1148 |
$(if $(RAMTARGET),&& echo "$(ROMFILETYPE_RAM)=/epoc32/release/##$(ABIDIR)##/##BUILD##/$(TARGET).$(REQUESTEDTARGETEXT) $(ROMPATH_RAM)$(ROMFILE_RAM)$(ROMDECORATIONS_RAM)" >> $(ROMFILENAME)) \ |
|
1149 |
$(call endrule,buildromfiletarget) |
|
1150 |
endef |
|
1151 |
||
1152 |
# When VARIANTTYPE changes, romfile is finished, |
|
1153 |
# apart from if this is a new component...... |
|
1154 |
ifneq ($(PREVIOUSVARIANTTYPE),) |
|
1155 |
ifneq ($(VARIANTTYPE),$(PREVIOUSVARIANTTYPE)) |
|
1156 |
ifneq ($(ROMFILE_CREATED_$(TOBLDINF)),) |
|
1157 |
ROMFILEFINISHED:=1 |
|
1158 |
else |
|
1159 |
ROMFILEFINISHED:= |
|
1160 |
endif |
|
1161 |
endif |
|
1162 |
endif |
|
1163 |
||
1164 |
# When romfile is finished, don't continue to add to it |
|
1165 |
ifeq ($(ROMFILEFINISHED),) |
|
1166 |
$(eval $(call BuildRomfileTarget,$(ROMPATH)$(ROMFILE))) |
|
1167 |
endif |
|
1168 |
||
1169 |
# Don't allow romfile to be recreated for every MMP |
|
1170 |
ifeq ($(ROMFILE_CREATED_$(TOBLDINF)),) |
|
1171 |
ROMFILE_CREATED_$(TOBLDINF):=1 |
|
1172 |
endif |
|
1173 |
||
1174 |
# Build other ROMTARGETs if there is more than one |
|
1175 |
ifneq ($(ROMTARGETALL),) |
|
1176 |
RAMTARGET:= |
|
1177 |
$(foreach ROMTARGET,$(wordlist 2,$(words $(ROMTARGETALL)),$(ROMTARGETALL)),$(eval $(call BuildRomfileTarget,$(ROMTARGET)))) |
|
1178 |
ROMTARGETALL:= |
|
1179 |
endif |
|
1180 |
||
1181 |
# Keep track of variant type while romfile is being created |
|
1182 |
PREVIOUSVARIANTTYPE:=$(VARIANTTYPE) |
|
1183 |
||
1184 |
WHATRELEASE:=$(WHATRELEASE) $(ROMFILENAME) |
|
1185 |
endif |
|
1186 |
||
1187 |
# Deal with test code batch files generation. |
|
1188 |
ifneq ($(TESTPATH),) |
|
1189 |
||
1190 |
CREATABLEPATHS:=$(CREATABLEPATHS) $(EPOCROOT)/epoc32/data/z/test/ |
|
1191 |
$(eval $(call MakeTestBatchFiles,$(TARGET),$(EPOCROOT)/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).$(TESTPATH))) |
|
1192 |
BATCHFILE_CREATED_$(EPOCROOT)/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).$(TESTPATH):=1 |
|
1193 |
TARGET_CREATED_$(EPOCROOT)/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).$(TESTPATH)_$(TARGET):=1 |
|
1194 |
WHATRELEASE:=$(WHATRELEASE) $(EPOCROOT)/epoc32/data/z/test/$(MODULE)/$(VARIANTPLATFORM).$(TESTPATH) |
|
1195 |
endif |
|
1196 |
||
1197 |
###################### End of Build ROMFILE target ###################### |
|
1198 |
||
1199 |
# Feature Variation requires a .vmap file to be created for each binary |
|
1200 |
# |
|
1201 |
ifneq ($(FEATUREVARIANTNAME),) |
|
1202 |
ifneq ($(E32TARGET),) |
|
1203 |
||
1204 |
OUTPUTVMAP:=$(E32TARGET).vmap |
|
1205 |
WHATRELEASE:=$(WHATRELEASE) $(OUPUTVMAP) |
|
1206 |
||
1207 |
TARGET:: $(OUTPUTVMAP) |
|
1208 |
VMAPNEEDS:=$(E32TARGET) $(SOURCE) $(PROJECT_META) |
|
1209 |
||
1210 |
BV_SOURCELIST:=$(addprefix -s ,$(SOURCE) $(PROJECT_META)) |
|
1211 |
BV_FEATURELIST:=$(addprefix -f ,$(FEATURELISTFILES)) |
|
1212 |
BV_USER_INCLUDES:=$(addprefix -u ,$(USERINCLUDE)) |
|
1213 |
BV_SYSTEM_INCLUDES:=$(addprefix -x ,$(SYSTEMINCLUDE)) |
|
1214 |
||
1215 |
# translate double quoted macros because $(shell) messes them up in some make engines |
|
1216 |
BV_MACROLIST:=$(COMPILER_INTERWORK_DEFINES) $(CDEFS) $(if $(ALWAYS_BUILD_AS_ARM),,$(COMPILER_THUMB_DEFINES)) |
|
1217 |
BV_DEFINES:=$(call makemacrodef,-D,$(subst ",__SBS__QUOTE__,$(BV_MACROLIST))) |
|
1218 |
||
1219 |
# the script to generate our .vmap file and hash value |
|
1220 |
VMAPCOMMAND:=$(CREATEVMAP) -o $(OUTPUTVMAP) $(BV_FEATURELIST) $(BV_DEFINES) -p $(PREINCLUDE) $(BV_SOURCELIST) $(BV_USER_INCLUDES) $(BV_SYSTEM_INCLUDES) -c $(CREATEVMAPCPP) |
|
1221 |
||
1222 |
# a recipe to create the .vmap from the "sources" with the createvmap script |
|
1223 |
$(call raptor_recipe,createvmap,$(OUTPUTVMAP),$(VMAPNEEDS),$(VMAPCOMMAND)) |
|
1224 |
||
1225 |
endif # E32TARGET != "" |
|
1226 |
endif # FEATUREVARIANTNAME != "" |
|
1227 |
||
1228 |
########################### CONCLUSION ################################### |
|
1229 |
||
1230 |
# make the output directories while reading makefile - some build engines prefer this |
|
1231 |
$(call makepath,$(CREATABLEPATHS)) |
|
1232 |
||
1233 |
## Clean up |
|
5 | 1234 |
$(call raptor_clean,$(CLEANTARGETS)) |
3 | 1235 |
|
5 | 1236 |
# For the --what option and the log file |
1237 |
$(call raptor_release,$(filter-out %.sym,$(WHATRELEASE))) |
|
3 | 1238 |
|
1239 |
endif # FEATUREVARIANTNAME=="" or FEATUREVARIANT==1 |
|
1240 |
||
1241 |
## The End |
|
1242 |