亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? c++config.h

?? openRisc2000編譯鏈接器等,用于i386 cygwin
?? H
?? 第 1 頁 / 共 3 頁
字號:
// Predefined symbols and macros -*- C++ -*-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004// Free Software Foundation, Inc.//// This file is part of the GNU ISO C++ Library.  This library is free// software; you can redistribute it and/or modify it under the// terms of the GNU General Public License as published by the// Free Software Foundation; either version 2, or (at your option)// any later version.// This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details.// You should have received a copy of the GNU General Public License along// with this library; see the file COPYING.  If not, write to the Free// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,// USA.// As a special exception, you may use this file as part of a free software// library without restriction.  Specifically, if other files instantiate// templates or use macros or inline functions from this file, or you compile// this file and link it with other files to produce an executable, this// file does not by itself cause the resulting executable to be covered by// the GNU General Public License.  This exception does not however// invalidate any other reasons why the executable file might be covered by// the GNU General Public License.#ifndef _CXXCONFIG#define _CXXCONFIG 1// Pick up any OS-specific definitions.#include <bits/os_defines.h>// The current version of the C++ library in compressed ISO date format.#define __GLIBCXX__ 20050519// Allow use of "export template." This is currently not a feature// that g++ supports.// #define _GLIBCXX_EXPORT_TEMPLATE 1// Allow use of the GNU syntax extension, "extern template." This// extension is fully documented in the g++ manual, but in a nutshell,// it inhibits all implicit instantiations and is used throughout the// library to avoid multiple weak definitions for required types that// are already explicitly instantiated in the library binary. This// substantially reduces the binary size of resulting executables.#ifndef _GLIBCXX_EXTERN_TEMPLATE# define _GLIBCXX_EXTERN_TEMPLATE 1#endif// Debug mode support. Debug mode basic_string is not allowed to be// associated with std, because of locale and exception link// dependence.namespace __gnu_debug_def { }namespace __gnu_debug {   using namespace __gnu_debug_def;}#ifdef _GLIBCXX_DEBUG# define _GLIBCXX_STD __gnu_normnamespace __gnu_norm {   using namespace std; }namespace std{  using namespace __gnu_debug_def __attribute__ ((strong));}#else# define _GLIBCXX_STD std#endif// The remainder of the prewritten config is automatic; all the// user hooks are listed above.// Create a boolean flag to be used to determine if --fast-math is set.#ifdef __FAST_MATH__# define _GLIBCXX_FAST_MATH 1#else# define _GLIBCXX_FAST_MATH 0#endif// This marks string literals in header files to be extracted for eventual// translation.  It is primarily used for messages in thrown exceptions; see// src/functexcept.cc.  We use __N because the more traditional _N is used// for something else under certain OSes (see BADNAMES).#define __N(msgid)     (msgid)// End of prewritten config; the discovered settings follow./* config.h.  Generated by configure.  *//* config.h.in.  Generated from configure.ac by autoheader.  */// acconfig.h symbols and macros for libstdc++ v3 -*- C++ -*-// Defines libstdc++ version./* #undef _GLIBCXX_PACKAGE *//* #undef _GLIBCXX_VERSION */// Needed for gettext./* #undef ENABLE_NLS *//* #undef _GLIBCXX_HAVE_CATGETS *//* #undef _GLIBCXX_HAVE_GETTEXT *//* #undef _GLIBCXX_HAVE_STPCPY */// Include I/O support for 'long long' and 'unsigned long long'.#define _GLIBCXX_USE_LONG_LONG 1// Include support for 'long double'./* #undef _GLIBCXX_USE_LONG_DOUBLE */// Define if C99 math functions (like fpclassify) should be exposed.#define _GLIBCXX_USE_C99_MATH 1// Define if C99 features such as lldiv_t, llabs, lldiv should be exposed./* #undef _GLIBCXX_USE_C99 */// Define if code specialized for wchar_t should be used./* #undef _GLIBCXX_USE_WCHAR_T */// Define if using setrlimit to set resource limits during 'make check'./* #undef _GLIBCXX_RES_LIMITS */// Define to use concept checking code from the boost libraries./* #undef _GLIBCXX_CONCEPT_CHECKS */// Define to use symbol versioning in the shared library./* #undef _GLIBCXX_SYMVER */// Define symbol versioning in assember directives. If symbol// versioning is beigng used, and the assembler supports this kind of// thing, then use it.// NB: _GLIBCXX_AT_AT is a hack to work around quoting issues in m4.#if _GLIBCXX_SYMVER  #define _GLIBCXX_ASM_SYMVER(cur, old, version) \   asm (".symver " #cur "," #old _GLIBCXX_AT_AT #version);#else  #define _GLIBCXX_ASM_SYMVER(cur, old, version)#endif// Define if LFS support is available./* #undef _GLIBCXX_USE_LFS */// Define if a fully dynamic basic_string is wanted./* #undef _GLIBCXX_FULLY_DYNAMIC_STRING */// Define if NLS translations are to be used./* #undef _GLIBCXX_USE_NLS */// Define if gthr-default.h exists (meaning that threading support is enabled)./* #undef _GLIBCXX_HAVE_GTHR_DEFAULT */// Define if the atan2f function exists.#define _GLIBCXX_HAVE_ATAN2F 1// Define if the atan2l function exists./* #undef _GLIBCXX_HAVE_ATAN2L */// Define if the tanl function exists./* #undef _GLIBCXX_HAVE_TANL */// Define if the copysignf function exists.#define _GLIBCXX_HAVE_COPYSIGNF 1// Define if getpagesize exists./* #undef _GLIBCXX_HAVE_GETPAGESIZE */// Define if setenv exists./* #undef _GLIBCXX_HAVE_SETENV */// Define if sigsetjmp exists./* #undef _GLIBCXX_HAVE_SIGSETJMP */// Define if mbstate_t exists in wchar.h./* #undef _GLIBCXX_HAVE_MBSTATE_T */// Define if you have the modff function.#define _GLIBCXX_HAVE_MODFF 1// Define if you have the modfl function./* #undef _GLIBCXX_HAVE_MODFL */// Define if you have the expf function.#define _GLIBCXX_HAVE_EXPF 1// Define if you have the expl function./* #undef _GLIBCXX_HAVE_EXPL */// Define if you have the hypot function.#define _GLIBCXX_HAVE_HYPOT 1// Define if you have the hypotf function./* #undef _GLIBCXX_HAVE_HYPOTF */// Define if you have the hypotl function./* #undef _GLIBCXX_HAVE_HYPOTL */// Define if the compiler/host combination has __builtin_abs/* #undef _GLIBCXX_HAVE___BUILTIN_ABS */// Define if the compiler/host combination has __builtin_labs/* #undef _GLIBCXX_HAVE___BUILTIN_LABS */// Define if the compiler/host combination has __builtin_cos/* #undef _GLIBCXX_HAVE___BUILTIN_COS */// Define if the compiler/host combination has __builtin_cosf/* #undef _GLIBCXX_HAVE___BUILTIN_COSF */// Define if the compiler/host combination has __builtin_cosl/* #undef _GLIBCXX_HAVE___BUILTIN_COSL */// Define if the compiler/host combination has __builtin_fabs/* #undef _GLIBCXX_HAVE___BUILTIN_FABS */// Define if the compiler/host combination has __builtin_fabsf/* #undef _GLIBCXX_HAVE___BUILTIN_FABSF */// Define if the compiler/host combination has __builtin_fabsl/* #undef _GLIBCXX_HAVE___BUILTIN_FABSL */// Define if the compiler/host combination has __builtin_sin/* #undef _GLIBCXX_HAVE___BUILTIN_SIN */// Define if the compiler/host combination has __builtin_sinf/* #undef _GLIBCXX_HAVE___BUILTIN_SINF */// Define if the compiler/host combination has __builtin_sinl/* #undef _GLIBCXX_HAVE___BUILTIN_SINL */// Define if the compiler/host combination has __builtin_sqrt/* #undef _GLIBCXX_HAVE___BUILTIN_SQRT */// Define if the compiler/host combination has __builtin_sqrtf/* #undef _GLIBCXX_HAVE___BUILTIN_SQRTF */// Define if the compiler/host combination has __builtin_sqrtl/* #undef _GLIBCXX_HAVE___BUILTIN_SQRTL */// Define if poll is available in <poll.h>./* #undef _GLIBCXX_HAVE_POLL */// Define if S_ISREG (Posix) is available in <sys/stat.h>.#define _GLIBCXX_HAVE_S_ISREG 1// Define if S_IFREG is available in <sys/stat.h>.#define _GLIBCXX_HAVE_S_IFREG 1// Define if writev is available in <sys/uio.h>./* #undef _GLIBCXX_HAVE_WRITEV */// Define if int64_t is available in <stdint.h>./* #undef _GLIBCXX_HAVE_INT64_T */// Define if LC_MESSAGES is available in <locale.h>./* #undef _GLIBCXX_HAVE_LC_MESSAGES */// Define if <float.h> exists./* #undef _GLIBCXX_HAVE_FLOAT_H */// Define if modf is present in <math.h>/* #undef _GLIBCXX_HAVE_MODF *//* Define to 1 if you have the `acosf' function. */#define _GLIBCXX_HAVE_ACOSF 1/* Define to 1 if you have the `acosl' function. *//* #undef _GLIBCXX_HAVE_ACOSL *//* Define to 1 if you have the `asinf' function. */#define _GLIBCXX_HAVE_ASINF 1/* Define to 1 if you have the `asinl' function. *//* #undef _GLIBCXX_HAVE_ASINL *//* Define to 1 if you have the `atan2f' function. */#define _GLIBCXX_HAVE_ATAN2F 1/* Define to 1 if you have the `atan2l' function. *//* #undef _GLIBCXX_HAVE_ATAN2L *//* Define to 1 if you have the `atanf' function. */#define _GLIBCXX_HAVE_ATANF 1/* Define to 1 if you have the `atanl' function. *//* #undef _GLIBCXX_HAVE_ATANL *//* Define to 1 if you have the `btowc' function. *//* #undef _GLIBCXX_HAVE_BTOWC *//* Define to 1 if you have the `ceilf' function. */#define _GLIBCXX_HAVE_CEILF 1/* Define to 1 if you have the `ceill' function. *//* #undef _GLIBCXX_HAVE_CEILL *//* Define to 1 if you have the `copysign' function. */#define _GLIBCXX_HAVE_COPYSIGN 1/* Define to 1 if you have the `copysignf' function. */#define _GLIBCXX_HAVE_COPYSIGNF 1/* Define to 1 if you have the `copysignl' function. *//* #undef _GLIBCXX_HAVE_COPYSIGNL *//* Define to 1 if you have the `cosf' function. */#define _GLIBCXX_HAVE_COSF 1/* Define to 1 if you have the `coshf' function. */#define _GLIBCXX_HAVE_COSHF 1/* Define to 1 if you have the `coshl' function. *//* #undef _GLIBCXX_HAVE_COSHL *//* Define to 1 if you have the `cosl' function. *//* #undef _GLIBCXX_HAVE_COSL *//* Define to 1 if you have the <endian.h> header file. *//* #undef _GLIBCXX_HAVE_ENDIAN_H *//* Define to 1 if you have the `expf' function. */#define _GLIBCXX_HAVE_EXPF 1/* Define to 1 if you have the `expl' function. *//* #undef _GLIBCXX_HAVE_EXPL *//* Define to 1 if you have the `fabsf' function. */#define _GLIBCXX_HAVE_FABSF 1/* Define to 1 if you have the `fabsl' function. *//* #undef _GLIBCXX_HAVE_FABSL *//* Define to 1 if you have the `fgetwc' function. *//* #undef _GLIBCXX_HAVE_FGETWC *//* Define to 1 if you have the `fgetws' function. *//* #undef _GLIBCXX_HAVE_FGETWS *//* Define to 1 if you have the `finite' function. *//* #undef _GLIBCXX_HAVE_FINITE *//* Define to 1 if you have the `finitef' function. *//* #undef _GLIBCXX_HAVE_FINITEF *//* Define to 1 if you have the `finitel' function. *//* #undef _GLIBCXX_HAVE_FINITEL *//* Define to 1 if you have the <float.h> header file. *//* #undef _GLIBCXX_HAVE_FLOAT_H *//* Define to 1 if you have the `floorf' function. */#define _GLIBCXX_HAVE_FLOORF 1/* Define to 1 if you have the `floorl' function. *//* #undef _GLIBCXX_HAVE_FLOORL *//* Define to 1 if you have the `fmodf' function. */#define _GLIBCXX_HAVE_FMODF 1/* Define to 1 if you have the `fmodl' function. *//* #undef _GLIBCXX_HAVE_FMODL *//* Define to 1 if you have the `fpclass' function. *//* #undef _GLIBCXX_HAVE_FPCLASS *//* Define to 1 if you have the `fputwc' function. *//* #undef _GLIBCXX_HAVE_FPUTWC *//* Define to 1 if you have the `fputws' function. *//* #undef _GLIBCXX_HAVE_FPUTWS *//* Define to 1 if you have the <fp.h> header file. *//* #undef _GLIBCXX_HAVE_FP_H *//* Define to 1 if you have the `frexpf' function. */#define _GLIBCXX_HAVE_FREXPF 1/* Define to 1 if you have the `frexpl' function. *//* #undef _GLIBCXX_HAVE_FREXPL *//* Define to 1 if you have the `fwide' function. *//* #undef _GLIBCXX_HAVE_FWIDE *//* Define to 1 if you have the `fwprintf' function. *//* #undef _GLIBCXX_HAVE_FWPRINTF *//* Define to 1 if you have the `fwscanf' function. *//* #undef _GLIBCXX_HAVE_FWSCANF *//* Define to 1 if you have the <gconv.h> header file. *//* #undef _GLIBCXX_HAVE_GCONV_H *//* Define to 1 if you have the `getpagesize' function. *//* #undef _GLIBCXX_HAVE_GETPAGESIZE *//* Define to 1 if you have the `getwc' function. *//* #undef _GLIBCXX_HAVE_GETWC *//* Define to 1 if you have the `getwchar' function. *//* #undef _GLIBCXX_HAVE_GETWCHAR *//* Define to 1 if you have the `hypot' function. */#define _GLIBCXX_HAVE_HYPOT 1/* Define to 1 if you have the `hypotf' function. *//* #undef _GLIBCXX_HAVE_HYPOTF *//* Define to 1 if you have the `hypotl' function. *//* #undef _GLIBCXX_HAVE_HYPOTL *//* Define to 1 if you have the `iconv' function. *//* #undef _GLIBCXX_HAVE_ICONV *//* Define to 1 if you have the `iconv_close' function. *//* #undef _GLIBCXX_HAVE_ICONV_CLOSE *//* Define to 1 if you have the `iconv_open' function. *//* #undef _GLIBCXX_HAVE_ICONV_OPEN *//* Define to 1 if you have the <ieeefp.h> header file. *//* #undef _GLIBCXX_HAVE_IEEEFP_H *//* Define to 1 if you have the <inttypes.h> header file. *//* #undef _GLIBCXX_HAVE_INTTYPES_H *//* Define to 1 if you have the `isinf' function. *//* #undef _GLIBCXX_HAVE_ISINF */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久网这里都是精品| 久久先锋影音av鲁色资源| 欧美一区二区精品久久911| 久久免费午夜影院| 午夜激情综合网| 国产99一区视频免费| 欧美日韩一二三区| 欧美国产精品久久| 美女在线视频一区| 色就色 综合激情| 国产精品女主播av| 精品中文字幕一区二区小辣椒| 99国产精品久| 国产午夜亚洲精品羞羞网站| 五月天久久比比资源色| 99精品欧美一区二区三区小说| 欧美大白屁股肥臀xxxxxx| 夜夜精品浪潮av一区二区三区| 国产成人综合网站| 欧美sm极限捆绑bd| 蜜臀精品久久久久久蜜臀 | 激情综合色综合久久| 色婷婷综合久久久中文一区二区 | 亚洲天堂成人在线观看| 国产成人精品亚洲777人妖 | 欧美日韩在线播| 亚洲精品免费电影| aaa欧美日韩| 国产精品国产三级国产| 国产91精品一区二区麻豆亚洲| 久久综合色8888| 韩国av一区二区| 久久日韩精品一区二区五区| 麻豆视频观看网址久久| 日韩欧美一级二级三级久久久 | 日本一二三四高清不卡| 国产精品18久久久久久久久 | 国产又黄又大久久| 久久久欧美精品sm网站| 国产精品99久久久久| 中文成人av在线| 91小视频免费看| 一区二区三区中文免费| 欧美中文字幕一二三区视频| 亚洲资源在线观看| 欧美优质美女网站| 亚洲综合视频在线观看| 欧美在线观看视频一区二区| 亚洲精品菠萝久久久久久久| 欧美午夜精品久久久久久孕妇| 亚洲欧美日韩小说| 欧美日韩在线综合| 三级亚洲高清视频| 久久久久久免费| 国产成a人亚洲| 一区二区三区日韩欧美精品 | 色婷婷综合久久久久中文| 亚洲成a人片综合在线| 欧美午夜精品一区二区三区 | 中文字幕一区二区视频| 99国产精品国产精品久久| 亚洲福利国产精品| 国产性色一区二区| 蜜臀av性久久久久蜜臀aⅴ流畅| 欧美成人一级视频| 粉嫩av一区二区三区在线播放| 欧美国产激情二区三区| 国内精品国产成人国产三级粉色| 久久综合久久久久88| 国产aⅴ精品一区二区三区色成熟| 国产精品久久久久影视| 欧美日韩国产精品成人| 精品一区二区三区影院在线午夜| 国产日韩欧美一区二区三区综合| 成人黄色免费短视频| 日韩二区三区四区| 久久青草欧美一区二区三区| 精品视频免费看| 国产一区不卡视频| 五月天丁香久久| 26uuu亚洲| 色哟哟一区二区在线观看| 日韩激情一二三区| 国产精品成人免费| 日韩一区二区精品| 粉嫩av亚洲一区二区图片| 中文一区一区三区高中清不卡| 在线观看免费视频综合| 国产精品77777| 麻豆精品新av中文字幕| 亚洲男人电影天堂| 久久久久久一级片| 欧美三日本三级三级在线播放| 国产夫妻精品视频| 亚洲一区av在线| √…a在线天堂一区| 日韩一区二区三区在线| 在线亚洲精品福利网址导航| 国产精品中文欧美| 理论电影国产精品| 亚洲精品国产一区二区精华液| 久久精品日韩一区二区三区| 欧美三级三级三级| 色综合久久久网| 国产麻豆午夜三级精品| 国产在线精品一区二区不卡了| 亚洲一区在线观看视频| 亚洲免费av网站| 中文字幕免费不卡| 国产情人综合久久777777| 日韩亚洲欧美中文三级| 欧美日韩精品一区视频| 成人国产精品免费观看视频| 精品影视av免费| 日韩av一二三| 一区二区三区在线免费| 亚洲天堂网中文字| 国产精品成人一区二区艾草 | 亚洲一区二区美女| 亚洲高清免费视频| 一区二区在线观看免费| 一区二区三区四区激情| 中文字幕视频一区| 亚洲黄色免费电影| 亚洲欧洲成人av每日更新| ㊣最新国产の精品bt伙计久久| 久久久91精品国产一区二区精品| 国产亚洲自拍一区| 久久精品一二三| 国产精品剧情在线亚洲| 国产精品视频你懂的| 亚洲人成电影网站色mp4| 国产精品乱码一区二区三区软件| 亚洲欧洲av一区二区三区久久| 国产日韩欧美a| 亚洲精品一二三四区| 一区二区三区在线免费视频| 日韩av电影免费观看高清完整版 | 一区二区三区.www| 亚洲福利视频一区| 水野朝阳av一区二区三区| 亚洲3atv精品一区二区三区| 午夜亚洲福利老司机| 另类的小说在线视频另类成人小视频在线 | 精品乱码亚洲一区二区不卡| 欧美一级片免费看| 日本一区二区三区免费乱视频| 国产情人综合久久777777| 亚洲综合无码一区二区| 香港成人在线视频| 国产成人综合在线| 91麻豆精品秘密| 欧美一区二区三区小说| 久久精品人人做| 亚洲va国产天堂va久久en| 美女一区二区三区在线观看| 成人午夜免费视频| 在线视频一区二区三区| 亚洲精品一区二区三区精华液| 制服丝袜亚洲色图| 欧美国产日韩亚洲一区| 精品国产91亚洲一区二区三区婷婷 | 亚洲自拍欧美精品| 国产精品996| 色av成人天堂桃色av| 久久影院视频免费| 自拍av一区二区三区| 麻豆成人91精品二区三区| 成人av影视在线观看| 精品久久一区二区| ...xxx性欧美| 成人免费看视频| 成人午夜av影视| 久久综合久久综合久久综合| 亚洲r级在线视频| 成人黄色软件下载| 欧美国产欧美亚州国产日韩mv天天看完整 | 亚洲女子a中天字幕| 高清beeg欧美| 91精品国产综合久久久久久久久久| 久久久精品国产免大香伊| 一卡二卡三卡日韩欧美| 国产麻豆日韩欧美久久| 972aa.com艺术欧美| 日韩欧美亚洲国产另类| 亚洲成av人影院在线观看网| 北条麻妃一区二区三区| 日韩欧美色综合| 石原莉奈一区二区三区在线观看| 高清不卡一二三区| 国产色产综合色产在线视频| 午夜久久福利影院| 欧美日韩亚洲丝袜制服| 国产精品麻豆欧美日韩ww| 成人一道本在线| 精品国产乱码久久久久久久| 久久精品99国产精品日本| 99久久99久久精品免费看蜜桃 | 麻豆中文一区二区| 日韩欧美123|