author | Mike Kinghan <mikek@symbian.org> |
Wed, 21 Jul 2010 14:39:33 +0100 | |
branch | GCC_SURGE |
changeset 218 | cf8aa66d1b90 |
parent 109 | b3a1d9898418 |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 2004-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 |
// |
|
15 |
||
16 |
TARGET t_drtaeabi.dll |
|
17 |
||
18 |
TARGETTYPE dll |
|
109
b3a1d9898418
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
19 |
armfpu softvfp |
33
0173bcd7697c
Revision: 201001
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
20 |
SOURCEPATH ../../../kernel/eka/compsupp/rvct |
0173bcd7697c
Revision: 201001
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
21 |
|
0 | 22 |
SOURCE aeabidiv0.cpp |
23 |
SOURCE drtaeabi.cpp |
|
218
cf8aa66d1b90
Fix for bug 3354 - [GCCE] <typeinfo> not found in e32test build
Mike Kinghan <mikek@symbian.org>
parents:
109
diff
changeset
|
24 |
OS_LAYER_LIBC_SYSTEMINCLUDE |
cf8aa66d1b90
Fix for bug 3354 - [GCCE] <typeinfo> not found in e32test build
Mike Kinghan <mikek@symbian.org>
parents:
109
diff
changeset
|
25 |
OS_LAYER_STDCPP_SYSTEMINCLUDE |
0 | 26 |
SOURCE type_info.cpp |
27 |
||
28 |
USERINCLUDE ../../../kernel/eka/include |
|
29 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN |
|
30 |
||
31 |
SOURCEPATH ../../../kernel/eka/compsupp/symaehabi |
|
32 |
SOURCE symbian_support.cpp |
|
33 |
SOURCE symbian_rtti.cpp |
|
34 |
SOURCE unwinder.c |
|
35 |
SOURCE unwind_pr.c |
|
36 |
SOURCE cppsemantics.cpp |
|
37 |
||
38 |
SOURCEPATH ../cppexceptions |
|
39 |
SOURCE export_internals.cpp |
|
40 |
||
41 |
// we're building a runtime support lib so we have to add the libraries we want by hand |
|
42 |
||
43 |
#if defined ARMCC_2_1 |
|
44 |
LIBRARY euser.lib dfpaeabi.lib dfprvct2_1.lib drtrvct2_1.lib |
|
45 |
#elif defined ARMCC_2_2 |
|
46 |
LIBRARY euser.lib dfpaeabi.lib dfprvct2_2.lib drtrvct2_2.lib |
|
47 |
#elif defined ARMCC_3_1 |
|
48 |
LIBRARY euser.lib dfpaeabi.lib dfprvct3_1.lib drtrvct3_1.lib scppnwdl.lib |
|
109
b3a1d9898418
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
49 |
#elif defined ARMCC_4_0 |
b3a1d9898418
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
50 |
LIBRARY euser.lib dfpaeabi.lib scppnwdl.lib |
0 | 51 |
#endif |
52 |
||
53 |
START ARMCC |
|
54 |
ARMRT // we're building a runtime support lib so suppress all the default libraries |
|
55 |
ARMINC |
|
56 |
// we want the 'pure' versions to go with softvfp |
|
109
b3a1d9898418
Revision: 201019
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
33
diff
changeset
|
57 |
#if defined ARMCC_3_1 || defined ARMCC_4_0 |
0 | 58 |
#ifdef MARM_ARMV5 |
59 |
ARMLIBS c_5.l h_5.l cpprt_5.l |
|
60 |
#else |
|
61 |
ARMLIBS c_4.l h_4.l cpprt_4.l |
|
62 |
#endif |
|
63 |
#else |
|
64 |
#ifdef MARM_ARMV5 |
|
65 |
ARMLIBS c_t__un.l cpprt_t__u.l |
|
66 |
#else |
|
67 |
ARMLIBS c_a__un.l cpprt_a__u.l |
|
68 |
#endif |
|
69 |
#endif |
|
70 |
END |
|
71 |
||
72 |
capability all |
|
73 |
vendorid 0x70000001 |
|
74 |
||
75 |
||
76 |
SMPSAFE |