os/ossrv/stdcpp/include/config/stl_cray.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
 * Copyright (c) 1997
sl@0
     3
 * Moscow Center for SPARC Technology
sl@0
     4
 *
sl@0
     5
 * Copyright (c) 1999 
sl@0
     6
 * Boris Fomitchev
sl@0
     7
 *
sl@0
     8
 * This material is provided "as is", with absolutely no warranty expressed
sl@0
     9
 * or implied. Any use is at your own risk.
sl@0
    10
 *
sl@0
    11
 * Permission to use or copy this software for any purpose is hereby granted 
sl@0
    12
 * without fee, provided the above notices are retained on all copies.
sl@0
    13
 * Permission to modify the code and to distribute modified code is granted,
sl@0
    14
 * provided the above notices are retained, and a notice that the code was
sl@0
    15
 * modified is included with the above copyright notice.
sl@0
    16
 *
sl@0
    17
 */
sl@0
    18
sl@0
    19
// Mostly correct guess, change it for Alpha (and other environments
sl@0
    20
// that has 64-bit "long")
sl@0
    21
#  define _STLP_UINT32_T unsigned long
sl@0
    22
sl@0
    23
// Uncomment if long long is available
sl@0
    24
#  define _STLP_LONG_LONG long long
sl@0
    25
sl@0
    26
// Uncomment this if your compiler can't inline while(), for()
sl@0
    27
#  define _STLP_LOOP_INLINE_PROBLEMS 1
sl@0
    28
sl@0
    29
// Uncomment if native new-style iostreams are not available
sl@0
    30
#define    _STLP_HAS_NO_NEW_IOSTREAMS	1
sl@0
    31
sl@0
    32
// Uncomment this if your compiler does not support exceptions
sl@0
    33
// Cray C++ supports exceptions when '-h exceptions' option is user;
sl@0
    34
// therefore '-D_STLP_HAS_NO_EXCEPTIONS' must be used when '-h exceptions'
sl@0
    35
// is NOT used.
sl@0
    36
//#  define _STLP_HAS_NO_EXCEPTIONS 1
sl@0
    37
sl@0
    38
// Delete?
sl@0
    39
// Define this if compiler lacks <exception> header
sl@0
    40
//#  define _STLP_NO_EXCEPTION_HEADER 1
sl@0
    41
sl@0
    42
// Uncomment this if your C library has lrand48() function
sl@0
    43
#  define _STLP_RAND48 1
sl@0
    44
sl@0
    45
// Uncomment if native new-style C library headers lile <cstddef>, etc are not available.
sl@0
    46
#   define _STLP_HAS_NO_NEW_C_HEADERS 1
sl@0
    47
sl@0
    48
// uncomment if new-style headers <new> is available
sl@0
    49
#   define _STLP_NO_NEW_NEW_HEADER 1
sl@0
    50
sl@0
    51
// uncomment this if <iostream> and other STD headers put their stuff in ::namespace,
sl@0
    52
// not std::
sl@0
    53
#  define _STLP_VENDOR_GLOBAL_STD
sl@0
    54
sl@0
    55
// uncomment this if <cstdio> and the like put stuff in ::namespace,
sl@0
    56
// not std::
sl@0
    57
#  define _STLP_VENDOR_GLOBAL_CSTD
sl@0
    58
sl@0
    59
# define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
sl@0
    60
// WARNING: Following is hardcoded to the system default C++ include files
sl@0
    61
# define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </opt/ctl/CC/CC/include/##__x>
sl@0
    62
sl@0
    63
sl@0
    64
# define _STLP_NO_NATIVE_MBSTATE_T
sl@0
    65
# define _STLP_NO_CSTD_FUNCTION_IMPORTS
sl@0
    66
//# define _STLP_VENDOR_GLOBAL_EXCEPT_STD
sl@0
    67
sl@0
    68