equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * Compiler runtime support. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 PRJ_PLATFORMS |
|
21 |
|
22 ARMV4 ARMV5 ARMV5SMP ARMV7 |
|
23 |
|
24 |
|
25 PRJ_EXPORTS |
|
26 |
|
27 rvct.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(rvct/) |
|
28 gcce/gcce.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(gcce/) |
|
29 |
|
30 symcpp/symcpp.h SYMBIAN_OS_LAYER_PUBLIC_EXPORT_PATH(symcpp.h) |
|
31 |
|
32 compsupp.iby /epoc32/rom/include/ |
|
33 |
|
34 |
|
35 PRJ_MMPFILES |
|
36 |
|
37 #ifndef GCCXML |
|
38 |
|
39 symcpp/scppnwdl.mmp |
|
40 rvct/dfprvct-thunk.mmp |
|
41 rvct/usrt.mmp |
|
42 rvct/ksrt.mmp |
|
43 |
|
44 #ifndef SMP // Only static libraries build for SMP. |
|
45 |
|
46 rvct/drtaeabi.mmp |
|
47 |
|
48 rvct/dfpaeabi.mmp |
|
49 rvct/dfpaeabi_vfpv2.mmp |
|
50 |
|
51 #if defined(ARMCC_2_2) || defined(ARMCC_3_1) |
|
52 |
|
53 rvct/drtrvct.mmp |
|
54 rvct/drtrvct_vfpv2.mmp |
|
55 |
|
56 rvct/dfprvct.mmp |
|
57 rvct/dfprvct_vfpv2.mmp |
|
58 #endif |
|
59 |
|
60 #endif |
|
61 |
|
62 PRJ_EXTENSIONS |
|
63 |
|
64 #ifndef GCCXML |
|
65 |
|
66 // Unzip RVCT3.1 runtime if being built with RVCT2.2 or RVCT4.0 |
|
67 |
|
68 start extension tools/compsupp |
|
69 |
|
70 #if defined(ARMCC_2_2) || defined(ARMCC_4_0) |
|
71 option FILE $(EXTENSION_ROOT)/rt_3_1.zip |
|
72 #elif defined(ARMCC_3_1) |
|
73 option FILE $(EXTENSION_ROOT)/rt_2_2.zip |
|
74 #endif |
|
75 |
|
76 option TODIR $(EPOCROOT)epoc32/release |
|
77 |
|
78 end |
|
79 #endif |
|
80 |
|
81 #endif |
|
82 |