os/ossrv/stdcpp/include/config/stl_cray.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdcpp/include/config/stl_cray.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,68 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997
     1.6 + * Moscow Center for SPARC Technology
     1.7 + *
     1.8 + * Copyright (c) 1999 
     1.9 + * Boris Fomitchev
    1.10 + *
    1.11 + * This material is provided "as is", with absolutely no warranty expressed
    1.12 + * or implied. Any use is at your own risk.
    1.13 + *
    1.14 + * Permission to use or copy this software for any purpose is hereby granted 
    1.15 + * without fee, provided the above notices are retained on all copies.
    1.16 + * Permission to modify the code and to distribute modified code is granted,
    1.17 + * provided the above notices are retained, and a notice that the code was
    1.18 + * modified is included with the above copyright notice.
    1.19 + *
    1.20 + */
    1.21 +
    1.22 +// Mostly correct guess, change it for Alpha (and other environments
    1.23 +// that has 64-bit "long")
    1.24 +#  define _STLP_UINT32_T unsigned long
    1.25 +
    1.26 +// Uncomment if long long is available
    1.27 +#  define _STLP_LONG_LONG long long
    1.28 +
    1.29 +// Uncomment this if your compiler can't inline while(), for()
    1.30 +#  define _STLP_LOOP_INLINE_PROBLEMS 1
    1.31 +
    1.32 +// Uncomment if native new-style iostreams are not available
    1.33 +#define    _STLP_HAS_NO_NEW_IOSTREAMS	1
    1.34 +
    1.35 +// Uncomment this if your compiler does not support exceptions
    1.36 +// Cray C++ supports exceptions when '-h exceptions' option is user;
    1.37 +// therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
    1.38 +// is NOT used.
    1.39 +//#  define _STLP_HAS_NO_EXCEPTIONS 1
    1.40 +
    1.41 +// Delete?
    1.42 +// Define this if compiler lacks <exception> header
    1.43 +//#  define _STLP_NO_EXCEPTION_HEADER 1
    1.44 +
    1.45 +// Uncomment this if your C library has lrand48() function
    1.46 +#  define _STLP_RAND48 1
    1.47 +
    1.48 +// Uncomment if native new-style C library headers lile <cstddef>, etc are not available.
    1.49 +#   define _STLP_HAS_NO_NEW_C_HEADERS 1
    1.50 +
    1.51 +// uncomment if new-style headers <new> is available
    1.52 +#   define _STLP_NO_NEW_NEW_HEADER 1
    1.53 +
    1.54 +// uncomment this if <iostream> and other STD headers put their stuff in ::namespace,
    1.55 +// not std::
    1.56 +#  define _STLP_VENDOR_GLOBAL_STD
    1.57 +
    1.58 +// uncomment this if <cstdio> and the like put stuff in ::namespace,
    1.59 +// not std::
    1.60 +#  define _STLP_VENDOR_GLOBAL_CSTD
    1.61 +
    1.62 +# define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
    1.63 +// WARNING: Following is hardcoded to the system default C++ include files
    1.64 +# define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </opt/ctl/CC/CC/include/##__x>
    1.65 +
    1.66 +
    1.67 +# define _STLP_NO_NATIVE_MBSTATE_T
    1.68 +# define _STLP_NO_CSTD_FUNCTION_IMPORTS
    1.69 +//# define _STLP_VENDOR_GLOBAL_EXCEPT_STD
    1.70 +
    1.71 +