os/kernelhwsrv/kernel/eka/compsupp/compsupp.iby
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "ARM EABI LICENCE.txt"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// in kernel/eka/compsupp.
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This file contains the compiler's run-time support libraries.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// Make the file acceptable to "e32/rombuild/rom.bat."
sl@0
    19
#if defined(COMPSUPP_DIR) && defined(BUILD)
sl@0
    20
#   define ABI_DIR      \Epoc32\Release\##COMPSUPP_DIR
sl@0
    21
#   define DEBUG_DIR    BUILD
sl@0
    22
#endif
sl@0
    23
sl@0
    24
#if defined(RVCT2_1)
sl@0
    25
#   error "RVCT 2.1 is not supported."
sl@0
    26
#endif
sl@0
    27
sl@0
    28
// Set a default run-time version. In the future, 3.1 or 4.X should be the default.
sl@0
    29
#if !( defined(RVCT2_2) || defined(RVCT3_1) || defined(RVCT4_0) )
sl@0
    30
#   define RVCT2_2
sl@0
    31
#endif
sl@0
    32
sl@0
    33
#if defined(VFPHELPERS) && !defined(NOVFPHELPERS)
sl@0
    34
#   define FP_EXT _vfpv2.dll
sl@0
    35
#else
sl@0
    36
#   define FP_EXT .dll
sl@0
    37
#endif
sl@0
    38
sl@0
    39
file=ABI_DIR\##DEBUG_DIR\scppnwdl.dll               \sys\bin\scppnwdl.dll
sl@0
    40
sl@0
    41
file=ABI_DIR\##DEBUG_DIR\drtaeabi.dll               \sys\bin\drtaeabi.dll
sl@0
    42
file=ABI_DIR\##DEBUG_DIR\dfpaeabi##FP_EXT           \sys\bin\dfpaeabi.dll
sl@0
    43
sl@0
    44
// Support for old binaries.
sl@0
    45
file=ABI_DIR\##DEBUG_DIR\dfprvct-thunk.dll			\sys\bin\dfprvct-thunk.dll
sl@0
    46
alias \sys\bin\dfprvct-thunk.dll					\sys\bin\dfprvct2_2-thunk.dll
sl@0
    47
alias \sys\bin\dfprvct-thunk.dll					\sys\bin\dfprvct2_1-thunk.dll
sl@0
    48
sl@0
    49
#if defined(RVCT2_2)
sl@0
    50
    file=ABI_DIR\##DEBUG_DIR\drtrvct2_2##FP_EXT     \sys\bin\drtrvct2_2.dll
sl@0
    51
    file=ABI_DIR\##DEBUG_DIR\dfprvct2_2##FP_EXT     \sys\bin\dfprvct2_2.dll
sl@0
    52
    
sl@0
    53
    // Support for old binaries.
sl@0
    54
    alias \sys\bin\drtrvct2_2.dll                   \sys\bin\drtrvct2_1.dll
sl@0
    55
    alias \sys\bin\dfprvct2_2.dll                   \sys\bin\dfprvct2_1.dll
sl@0
    56
#elif defined(RVCT3_1) || defined(RVCT4_0)
sl@0
    57
    file=ABI_DIR\##DEBUG_DIR\drtrvct3_1##FP_EXT     \sys\bin\drtrvct3_1.dll
sl@0
    58
    file=ABI_DIR\##DEBUG_DIR\dfprvct3_1##FP_EXT     \sys\bin\dfprvct3_1.dll
sl@0
    59
    
sl@0
    60
    // Support for old binaries.
sl@0
    61
    alias \sys\bin\drtrvct3_1.dll                   \sys\bin\drtrvct2_2.dll
sl@0
    62
    alias \sys\bin\dfprvct3_1.dll                   \sys\bin\dfprvct2_2.dll
sl@0
    63
    alias \sys\bin\drtrvct3_1.dll                   \sys\bin\drtrvct2_1.dll
sl@0
    64
    alias \sys\bin\dfprvct3_1.dll                   \sys\bin\dfprvct2_1.dll
sl@0
    65
#endif
sl@0
    66