1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/stdcpp/include/config/stl_icc.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,49 @@
1.4 + /* stl_icc.h
1.5 + * *
1.6 + * * A list of Intel compiler for Linux portion of STLport settings.
1.7 + * * This file is being included by stlcomp.h
1.8 + * */
1.9 +# ifndef _STLP_ICC_H
1.10 +# define _STLP_ICC_H
1.11 +
1.12 +# define _STLP_UINT32_T unsigned long
1.13 +# define _STLP_LONG_LONG long long
1.14 +# define _STLP_TYPENAME_ON_RETURN_TYPE typename
1.15 +
1.16 +// Edit relative path below (or put full path) to get native
1.17 +// compiler headers included. Default is "../include".
1.18 +// C headers may reside in different directory, so separate macro is provided.
1.19 +# if (__INTEL_COMPILER < 800)
1.20 +# define _STLP_NATIVE_INCLUDE_PATH ../include
1.21 +# else
1.22 +// The header of files have moved to a new location on Linux Intel C++ compiler
1.23 +// starting with version 8, which has GCC 3.2 compatability.
1.24 +# define _STLP_NATIVE_INCLUDE_PATH ../include/c++
1.25 +# define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH/backward
1.26 +# ifndef __GNUC__
1.27 +// If GCC compatability is diabled (-no-gcc is specified) STD needs to be redefined.
1.28 +# define _STLP_REDEFINE_STD 1
1.29 +# endif
1.30 +# endif
1.31 +# define _STLP_NATIVE_C_INCLUDE_PATH ../include
1.32 +# define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include
1.33 +
1.34 +// This macro constructs header path from directory and name.
1.35 +# define _STLP_MAKE_HEADER(path, header) <path/header>
1.36 +// This macro constructs native include header path from include path and name.
1.37 +# define _STLP_NATIVE_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header)
1.38 +
1.39 +# define _STLP_NATIVE_CPP_C_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header)
1.40 +
1.41 +// Same for C headers
1.42 +# define _STLP_NATIVE_C_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_C_INCLUDE_PATH,header)
1.43 +
1.44 +# undef _STLP_WINCE
1.45 +
1.46 +# ifndef __GNUC__
1.47 +# define __GNUC__ 1
1.48 +# endif
1.49 +
1.50 +# define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1
1.51 +# endif
1.52 +