author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Wed, 31 Mar 2010 23:38:45 +0300 | |
branch | RCL_3 |
changeset 22 | 2f92ad2dc5db |
parent 19 | 4a8fed1c0ef6 |
child 29 | 743008598095 |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 2005-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 "ARM EABI LICENCE.txt" |
|
5 |
// which accompanies this distribution, and is available |
|
6 |
// in kernel/eka/compsupp. |
|
7 |
// |
|
8 |
// Initial Contributors: |
|
9 |
// Nokia Corporation - initial contribution. |
|
10 |
// |
|
11 |
// Contributors: |
|
12 |
// |
|
13 |
// Description: |
|
14 |
// Compiler runtime support. |
|
15 |
// |
|
16 |
// |
|
17 |
||
18 |
PRJ_PLATFORMS |
|
19 |
||
20 |
ARMV4 ARMV5 ARMV5SMP ARMV7 |
|
21 |
||
22 |
||
23 |
PRJ_EXPORTS |
|
24 |
||
2
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
25 |
rvct.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(rvct/) |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
26 |
gcce/gcce.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(gcce/) |
0 | 27 |
|
2
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
28 |
symcpp/symcpp.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(symcpp.h) |
0 | 29 |
|
30 |
compsupp.iby /epoc32/rom/include/ |
|
31 |
||
32 |
||
33 |
PRJ_MMPFILES |
|
34 |
||
6
0173bcd7697c
Revision: 201001
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
2
diff
changeset
|
35 |
#if !defined GCCXML && !defined GCCE |
0 | 36 |
|
37 |
symcpp/scppnwdl.mmp |
|
38 |
rvct/dfprvct-thunk.mmp |
|
39 |
rvct/usrt.mmp |
|
40 |
rvct/ksrt.mmp |
|
41 |
||
42 |
#ifndef SMP // Only static libraries build for SMP. |
|
43 |
||
44 |
rvct/drtaeabi.mmp |
|
45 |
||
46 |
rvct/dfpaeabi.mmp |
|
47 |
rvct/dfpaeabi_vfpv2.mmp |
|
48 |
||
49 |
#if defined(ARMCC_2_2) || defined(ARMCC_3_1) |
|
50 |
||
51 |
rvct/drtrvct.mmp |
|
52 |
rvct/drtrvct_vfpv2.mmp |
|
53 |
||
54 |
rvct/dfprvct.mmp |
|
55 |
rvct/dfprvct_vfpv2.mmp |
|
56 |
#endif |
|
57 |
||
58 |
#endif |
|
59 |
||
19
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
60 |
PRJ_EXTENSIONS |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
61 |
|
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
62 |
// Unzip RVCT3.1 runtime if being built with RVCT2.2 or RVCT4.0 |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
63 |
|
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
64 |
start extension tools/compsupp |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
65 |
|
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
66 |
#if defined(ARMCC_2_2) || defined(ARMCC_4_0) |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
67 |
option FILE $(EXTENSION_ROOT)/rt_3_1.zip |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
68 |
#elif defined(ARMCC_3_1) |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
69 |
option FILE $(EXTENSION_ROOT)/rt_2_2.zip |
0 | 70 |
#endif |
71 |
||
19
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
72 |
option TODIR $(EPOCROOT)epoc32/release |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
73 |
|
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
74 |
end |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
75 |
|
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
76 |
#endif // #if !defined GCCXML && !defined GCCE |
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
77 |
|
4a8fed1c0ef6
Revision: 201007
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
6
diff
changeset
|
78 |