author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 31 Aug 2010 16:34:26 +0300 | |
branch | RCL_3 |
changeset 43 | c1f20ce4abcf |
parent 0 | a41df078684a |
child 44 | 3e88ff8f41d5 |
permissions | -rw-r--r-- |
0 | 1 |
// Copyright (c) 1997-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 |
// e32/nkernsmp/nkern.mmp |
|
15 |
// |
|
16 |
// |
|
17 |
||
18 |
sourcepath ../nkernsmp |
|
43
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
19 |
source nkern.cpp nkerns.cpp sched.cpp dfcs.cpp nk_timer.cpp nk_irq.cpp nk_bal.cpp |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
20 |
sourcepath ../nkern |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
21 |
source nklib.cpp |
0 | 22 |
|
23 |
#ifdef MARM |
|
24 |
sourcepath ../common/arm |
|
25 |
source atomics.cia |
|
26 |
sourcepath ../nkernsmp/arm |
|
27 |
source vectors.cia ncsched.cpp ncsched.cia nctimer.cia ncutilf.cia ncirq.cpp ncirq.cia ncthrd.cia |
|
28 |
source ncutils.cia ncutils.cpp ncthrd.cpp ncglob.cpp nccpu.cpp nccpu.cia |
|
43
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
29 |
sourcepath ../nkern/arm |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
30 |
source nklib.cia |
0 | 31 |
|
32 |
||
33 |
#elif defined(X86) |
|
34 |
#if defined(GCC32) |
|
35 |
sourcepath ../common/x86 |
|
36 |
source atomics.cia |
|
37 |
#elif defined(VC32) |
|
38 |
sourcepath ../common/win32 |
|
39 |
source atomics.cpp |
|
40 |
#endif |
|
41 |
sourcepath ../nkernsmp/x86 |
|
42 |
source ncsched.cpp ncsched.cia ncthrd.cpp ncthrd.cia vectors.cpp vectors.cia |
|
43 |
source ncutilf.cpp ncutilf.cia ncutils.cpp ncutils.cia nccpu.cpp nccpu.cia |
|
44 |
source ncirq.cpp ncirq.cia ncglob.cpp |
|
45 |
||
46 |
#elif defined(WINS) |
|
47 |
#error No SMP on WINS |
|
48 |
#endif |
|
49 |
||
50 |
START ARMCC |
|
51 |
ARMRT |
|
52 |
#ifdef ARMCC_2 |
|
53 |
ARMLIBS c_a__un.l cpprt_a__u.l |
|
54 |
#ifndef ARMCC_2_1 |
|
55 |
ARMLIBS h_a__un.l |
|
56 |
#endif |
|
57 |
#else |
|
43
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
58 |
#ifdef ARMCC_4 |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
59 |
ARMLIBS c_5.l h_5.l cpprt_5.l |
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
60 |
#else |
0 | 61 |
ARMLIBS c_4.l h_4.l cpprt_4.l |
62 |
#endif |
|
43
c1f20ce4abcf
Revision: 201035
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
63 |
#endif |
0 | 64 |
END |
65 |