os/kernelhwsrv/kernel/eka/nkernsmp/nkern.mmp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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
    19 source					nkern.cpp nkerns.cpp sched.cpp dfcs.cpp nk_timer.cpp nk_irq.cpp
    20 
    21 #ifdef MARM
    22 sourcepath				../common/arm
    23 source					atomics.cia
    24 sourcepath				../nkernsmp/arm
    25 source					vectors.cia ncsched.cpp ncsched.cia nctimer.cia ncutilf.cia ncirq.cpp ncirq.cia ncthrd.cia
    26 source					ncutils.cia ncutils.cpp ncthrd.cpp ncglob.cpp nccpu.cpp nccpu.cia
    27 
    28 
    29 #elif defined(X86)
    30 #if defined(GCC32)
    31 sourcepath				../common/x86
    32 source					atomics.cia
    33 #elif defined(VC32)
    34 sourcepath				../common/win32
    35 source					atomics.cpp
    36 #endif
    37 sourcepath				../nkernsmp/x86
    38 source					ncsched.cpp ncsched.cia ncthrd.cpp ncthrd.cia vectors.cpp vectors.cia
    39 source					ncutilf.cpp ncutilf.cia ncutils.cpp ncutils.cia nccpu.cpp nccpu.cia
    40 source					ncirq.cpp ncirq.cia ncglob.cpp
    41 
    42 #elif defined(WINS)
    43 #error	No SMP on WINS
    44 #endif
    45 
    46 START ARMCC
    47 ARMRT
    48 #ifdef ARMCC_2
    49 ARMLIBS					c_a__un.l cpprt_a__u.l
    50 #ifndef ARMCC_2_1
    51 ARMLIBS					h_a__un.l 
    52 #endif
    53 #else
    54 ARMLIBS					c_4.l     h_4.l     cpprt_4.l
    55 #endif
    56 END
    57