author | your_name <your_email_address> |
Wed, 17 Feb 2010 12:58:38 +0000 | |
branch | fix |
changeset 230 | 3d05ccc51d1a |
parent 34 | caba71c57a0f |
child 367 | 28419e56ee8a |
permissions | -rw-r--r-- |
230
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
1 |
# Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies). |
3 | 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 |
# e32abiv2textnotifier.flm |
|
15 |
# ARMv5 EXE/DLL ABIv2 Function Like Makefile (FLM) |
|
16 |
# Build an e32 textnotifier DLL |
|
17 |
# |
|
18 |
# |
|
19 |
||
20 |
ifeq ($(TARGETTYPE),textnotifier2) |
|
21 |
include $(FLMHOME)/e32abiv2defaults.mk |
|
22 |
||
23 |
# What we need to build a DLL |
|
24 |
CANHAVEEXPORTS:=1 |
|
25 |
POSTLINKTARGETTYPE:=TEXTNOTIFIER2 |
|
26 |
POSTLINKFILETYPE:=dll |
|
27 |
DOPOSTLINK:=1 |
|
28 |
AUTOEXPORTS:=_Z13NotifierArrayv,1; |
|
29 |
# Determine what kind of entrypoint option to set |
|
30 |
LINKER_ENTRYPOINT_LIBDEP:=$(STATIC_RUNTIME_DIR)/edll.lib |
|
34
caba71c57a0f
Remove spurious bracket that's causing failures in TEXTNOTIFIER2 ARM links.
jchatten
parents:
22
diff
changeset
|
31 |
LINKER_ENTRYPOINT_SETTING:=$(LINKER_ENTRY_OPTION)=_E32Dll $(LINKER_ENTRYPOINT_DECORATION)$(LINKER_SEPARATOR)$(call dblquote,$(STATIC_RUNTIME_DIR)/edll.lib$(LINKER_ENTRYPOINT_ADORNMENT)) |
3 | 32 |
|
33 |
ifeq ("$(NEED_ENTRYPOINT_LIBRARY)","True") |
|
34 |
LINKER_ENTRYPOINT_SETTING:=$(LINKER_ENTRYPOINT_SETTING) $(LINKER_ENTRYPOINT_LIBDEP) |
|
35 |
endif |
|
36 |
||
37 |
LINKER_STUB_LIBRARY:=$(STATIC_RUNTIME_DIR)/edllstub.lib |
|
38 |
STATIC_RUNTIME_LIB:=$(USER_STATIC_RUNTIME_LIB) |
|
39 |
CANIGNORENONCALLABLE:=1 |
|
40 |
||
230
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
41 |
# Fixed export TARGETTYPEs should only reference a .def file if an explicit DEFFILE statement is present in the .mmp file |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
42 |
ifneq ($(DEFFILEKEYWORD),) |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
43 |
POSTLINKDEFFILE:=$(DEFFILE) |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
44 |
SUPPORT_FREEZE:=1 |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
45 |
ifeq ($(NOEXPORTLIBRARY),) |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
46 |
IMPORTLIBRARYREQUIRED:=1 |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
47 |
endif |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
48 |
endif |
3d05ccc51d1a
fix: SF Bug 1511-[Raptor] ARM LDD builds can wrongly make use of implicit .def files
your_name <your_email_address>
parents:
34
diff
changeset
|
49 |
|
3 | 50 |
RESOURCEPATH:=System/Notifiers |
51 |
UID2:=101fe38b |
|
52 |
POSTLINKDEFFILE:=$(DEFFILE) |
|
53 |
SUPPORT_FREEZE:=1 |
|
54 |
||
55 |
# We are appending to CDEFS but we don't want this to affect |
|
56 |
# other invocations so we are going to save it on a stack |
|
57 |
# and restore it afterwards |
|
58 |
$(call vsave,CDEFS) |
|
59 |
CDEFS:=$(CDEFS) __DLL__ |
|
60 |
include $(FLMHOME)/e32abiv2.flm |
|
61 |
$(call vrestore) |
|
62 |
||
63 |
else |
|
64 |
$(error $e32abiv2textnotifier.flm called with wrong TARGETTYPE (should be 'textnotifier2' but is '$(TARGETTYPE)')) |
|
65 |
endif |
|
66 |