os/ossrv/stdcpp/include/config/stl_icc.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
 /* stl_icc.h
sl@0
     2
  * *
sl@0
     3
  * * A list of Intel compiler for Linux portion of STLport settings.
sl@0
     4
  * * This file is being included by stlcomp.h
sl@0
     5
  * */
sl@0
     6
# ifndef _STLP_ICC_H
sl@0
     7
# define _STLP_ICC_H
sl@0
     8
sl@0
     9
# define _STLP_UINT32_T unsigned long
sl@0
    10
# define _STLP_LONG_LONG long long
sl@0
    11
# define _STLP_TYPENAME_ON_RETURN_TYPE typename
sl@0
    12
sl@0
    13
// Edit relative path below (or put full path) to get native
sl@0
    14
// compiler headers included. Default is "../include".
sl@0
    15
// C headers may reside in different directory, so separate macro is provided.
sl@0
    16
# if (__INTEL_COMPILER < 800)
sl@0
    17
# define _STLP_NATIVE_INCLUDE_PATH ../include
sl@0
    18
# else
sl@0
    19
// The header of files have moved to a new location on Linux Intel C++ compiler 
sl@0
    20
// starting with version 8, which has GCC 3.2 compatability.
sl@0
    21
# define _STLP_NATIVE_INCLUDE_PATH ../include/c++
sl@0
    22
# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH/backward
sl@0
    23
#   ifndef __GNUC__ 
sl@0
    24
//  If GCC compatability is diabled (-no-gcc is specified) STD needs to be redefined.
sl@0
    25
#   define _STLP_REDEFINE_STD 1
sl@0
    26
#   endif
sl@0
    27
# endif
sl@0
    28
# define _STLP_NATIVE_C_INCLUDE_PATH ../include
sl@0
    29
# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
sl@0
    30
sl@0
    31
// This macro constructs header path from directory and name.
sl@0
    32
# define _STLP_MAKE_HEADER(path, header) <path/header>
sl@0
    33
// This macro constructs native include header path from include path and name.
sl@0
    34
# define _STLP_NATIVE_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header)
sl@0
    35
sl@0
    36
# define _STLP_NATIVE_CPP_C_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header)
sl@0
    37
sl@0
    38
// Same for C headers
sl@0
    39
# define _STLP_NATIVE_C_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_C_INCLUDE_PATH,header)
sl@0
    40
sl@0
    41
# undef _STLP_WINCE
sl@0
    42
sl@0
    43
# ifndef __GNUC__ 
sl@0
    44
# define __GNUC__ 1
sl@0
    45
# endif
sl@0
    46
sl@0
    47
# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
sl@0
    48
# endif
sl@0
    49