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

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

?? configure.in

?? fortran并行計算包
?? IN
字號:
AC_PREREQ(2.59)AC_INIT(configure.in)dnldnl Set the directory that contains support scripts such as install-sh anddnl config.guessdnlAC_CONFIG_AUX_DIR(../../../confdb)dnl The MPICH2 top-level configure adds a bunch of flags to thednl user-defined CFLAGS by processing different configure command-linednl arguments (--enable-g, --enable-default-optimization). These updateddnl flags are passed down as a separate flag. Here, we don't care aboutdnl the user-defined flags, but rather this updated flags, so we justdnl overwrite CFLAGS with them.PAC_SUBCONFIG_INIT()dnldnl Definitions will be placed in this file rather than in the DEFS variablednlAC_CONFIG_HEADER(include/mpidi_ch3_conf.h)AH_TOP([/* -*- Mode: C; c-basic-offset:4 ; -*- *//*   *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#ifndef MPIDI_CH3_CONF_H_INCLUDED#define MPIDI_CH3_CONF_H_INCLUDED])AH_BOTTOM([#endif])AC_DEFINE(HAVE_MPIDI_CH3_CONF,1,[Define so that we can test whether the mpidi_ch3_conf.h file has been included])echo "RUNNING CONFIGURE FOR CH3 DEVICE"# First check that we have a clean build if we are doing a VPATH buildPAC_VPATH_CHECK()# -----------------------------------------------------------------------------# experiment with creating a cache file.  Load if it exists#if test -n "$CONF_BASE_CACHEFILE" -a -s "$CONF_BASE_CACHEFILE" ; then#    echo "Loading base cachefile $CONF_BASE_CACHEFILE"#    . $CONF_BASE_CACHEFILE#    export CONF_BASE_CACHEFILE#fiPAC_LOAD_BASE_CACHE# -----------------------------------------------------------------------------# Extract the device and channel namefile=${master_top_srcdir}/src/mpid/${device_name}/setup_device.argsif test -f ${file} ; then     . ${file}else    echo "ERROR: ${file} not found"    exit 1fiexport channel_nameexport channel_argsAC_SUBST(device_name)AC_SUBST(channel_name)if test ! -d $srcdir/channels/${channel_name} ; then    AC_MSG_ERROR([Channel ${channel_name} is unknown])elif test ! -x $srcdir/channels/${channel_name}/configure ; then    AC_MSG_ERROR([Channel ${channel_name} has no configure])fiPAC_PROG_MAKE# Some channels will make use of common utility routines (in ch3/src/util)# For modularity, the channel can specify these here# FIXME: Some utility routines are specified at the top level (devsubsystem)# even though their scope is really ch3 in practice.  We haven't resolved# the best way to handle these systems# Note that the "setup_<channelname>" script must also set #   needs_sock=yes# if util/sock is used, and#   needs_shm=yes# if util/shm is used.if test -s $srcdir/channels/$channel_name/setup_$channel_name ; then    # Typically, this will set ch3subsystems.  For now,    # we use this configure to create the configuration file    # for those subsystems.  Eventually, they may have their	    # own configure    . $srcdir/channels/$channel_name/setup_$channel_name    if test "$needs_sock" = yes ; then        AC_DEFINE(HAVE_UTIL_SOCK,1,[Define if the channel needs util/sock])	CPPFLAGS="${CPPFLAGS} -I${master_top_srcdir}/src/mpid/ch3/util/sock"        AC_CONFIG_SUBDIRS(util/sock)    fi				   	    if test "$needs_shm" = yes ; then        AC_DEFINE(HAVE_UTIL_SHM,1,[Define if the channel needs util/shm])	#CPPFLAGS="${CPPFLAGS} -I${master_top_srcdir}/src/mpid/ch3/util/shm"    fi				   	fiAC_SUBST(ch3subsystems)AC_CHECK_HEADERS(assert.h limits.h string.h sys/types.h sys/uio.h uuid/uuid.h \    time.h ctype.h unistd.h arpa/inet.h sys/socket.h net/if.h)# Check for special typesAC_TYPE_PID_T# Check for functionsAC_CHECK_FUNCS(inet_pton)AC_CHECK_FUNCS(gethostname)if test "$ac_cv_func_gethostname" = "yes" ; then    # Do we need to declare gethostname?    PAC_FUNC_NEEDS_DECL([#include <unistd.h>],gethostname)fiAC_CHECK_FUNCS(CFUUIDCreate uuid_generate time)AC_SEARCH_LIBS(uuid_generate, uuid)AC_CACHE_CHECK([whether CPP accepts variable length argument lists],pac_cv_have_cpp_varargs,[AC_TRY_COMPILE([#include <stdio.h>#define MY_PRINTF(rank, fmt, args...)  printf("%d: " fmt, rank, ## args)],[MY_PRINTF(0, "hello");MY_PRINTF(1, "world %d", 3);], pac_cv_have_cpp_varargs=yes, pac_cv_have_cpp_varargs=no)])if test $pac_cv_have_cpp_varargs = "yes" ; then    AC_DEFINE(HAVE_CPP_VARARGS,,[Define if CPP supports macros with a variable number arguments])fiAC_C_BIGENDIAN# If we need the socket code, see if we can use struct ifconf# sys/socket.h is needed on SolarisAC_CACHE_CHECK([whether we can use struct ifconf],pac_cv_have_struct_ifconf,[AC_TRY_COMPILE([#include <sys/types.h>#ifdef HAVE_SYS_SOCKET_H#include <sys/socket.h>#endif#include <net/if.h>],[struct ifconf conftest;],pac_cv_have_struct_ifconf=yes,pac_cv_have_struct_ifconf=no)])if test "$pac_cv_have_struct_ifconf" = "no" ; then    # Try again with _SVID_SOURCE    AC_CACHE_CHECK([whether we can use struct ifconf with _SVID_SOURCE],pac_cv_have_struct_ifconf_with_svid,[AC_TRY_COMPILE([#define _SVID_SOURCE#include <sys/types.h>#ifdef HAVE_SYS_SOCKET_H#include <sys/socket.h>#endif#include <net/if.h>],[struct ifconf conftest;],pac_cv_have_struct_ifconf_with_svid=yes,pac_cv_have_struct_ifconf_with_svid=no)])    if test "$pac_cv_have_struct_ifconf_with_svid" = yes ; then        AC_DEFINE(USE_SVIDSOURCE_FOR_IFCONF,1,[Define if _SVID_SOURCE needs to be defined for struct ifconf])    fifiif test "$pac_cv_have_struct_ifconf" = "no" -a \        "$pac_cv_have_struct_ifconf_with_svid" = "no" ; then    # Try again with undef _POSIX_C_SOURCE    AC_CACHE_CHECK([whether we can use struct ifconf without _POSIX_C_SOURCE],pac_cv_have_struct_ifconf_without_posix,[AC_TRY_COMPILE([#undef _POSIX_C_SOURCE#include <sys/types.h>#ifdef HAVE_SYS_SOCKET_H#include <sys/socket.h>#endif#include <net/if.h>],[struct ifconf conftest;],pac_cv_have_struct_ifconf_without_posix=yes,pac_cv_have_struct_ifconf_without_posix=no)])    if test "$pac_cv_have_struct_ifconf_without_posix" = yes ; then        AC_DEFINE(USE_NOPOSIX_FOR_IFCONF,1,[Define if _POSIX_C_SOURCE needs to be undefined for struct ifconf])    fifiif test "$pac_cv_have_struct_ifconf" = "yes" -o \        "$pac_cv_have_struct_ifconf_with_svid" = "yes" -o \        "$pac_cv_have_struct_ifconf_without_posix" ; then    AC_DEFINE(HAVE_STRUCT_IFCONF,1,[Define if struct ifconf can be used])fi## We need to know whether to use %d or %ld for writing out MPI_Aint valuesAC_CHECK_SIZEOF(int,$CROSS_SIZEOF_INT)AC_CHECK_SIZEOF(long,$CROSS_SIZEOF_LONG)AC_CHECK_SIZEOF(long long,$CROSS_SIZEOF_LONG)AC_CHECK_SIZEOF(void *,$CROSS_SIZEOF_VOID_P)if test "$ac_cv_sizeof_int" = "$ac_cv_sizeof_void_p" ; then    :elif test "$ac_cv_sizeof_long" = "$ac_cv_sizeof_void_p" ; then    AC_DEFINE(MPI_AINT_IS_LONG_INT,1,[Define if the size of an MPI_Aint is long])elif test "$ac_cv_sizeof_long_long" = "$ac_cv_sizeof_void_p" ; then    AC_DEFINE(MPI_AINT_IS_LONG_LONG_INT,1,[Define if the size of an MPI_Aint is long long])fi## bring in the default implementation of the MPID_Thread package#MPID_THREAD_SRCDIR="../common/thread"builtin(include,../common/thread/mpid_thread.m4)AC_SUBST(AR)AC_SUBST(RANLIB)AC_SUBST(MPILIBNAME)AC_SUBST(CC)AC_SUBST(DEFS)AC_SUBST(CFLAGS)AC_SUBST(CPPFLAGS)PAC_CC_SUBDIR_SHLIBSAC_SUBST(master_top_srcdir)# Master_top_builddir is imported from the top; use it for the "top"AC_SUBST(master_top_builddir)export master_top_builddirdnl Dependency handlingAC_SUBST(MAKE_DEPEND_C)dnl EtagsAC_CHECK_PROGS(ETAGS,etags,true)AC_SUBST(ETAGS)AC_SUBST(ETAGSADD)export ETAGSexport ETAGSADDAC_SUBST(EXTRA_LIBS)PAC_SUBDIR_CACHEPAC_UPDATE_BASE_CACHE# Ensure that all subdir configures get the shared library itemsexport CC_SHLexport C_LINK_SHLexport C_LINKPATH_SHLexport SHLIB_EXTexport ENABLE_SHLIBexport LIBTOOLAC_CONFIG_SUBDIRS(channels/${channel_name})# Add the MPICH2 include flags to CPPFLAGS.  See the discussion above about# which include flags should start in MPICH2_INCLUDE_FLAGS and which in # CPPFLAGSCPPFLAGS="$CPPFLAGS $MPICH2_INCLUDE_FLAGS"dnl Place holder macro for finalizationPAC_SUBCONFIG_FINALIZE()AC_OUTPUT(Makefile src/Makefile util/Makefile util/shm/Makefile util/shmbase/Makefile channels/Makefile localdefs $MPID_THREAD_OUTPUT_FILES)PAC_SUBDIR_CACHE_CLEANUP

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合久久鬼色中文字| 777奇米四色成人影色区| 麻豆一区二区三| 天堂蜜桃91精品| 五月婷婷另类国产| 日韩av网站在线观看| 午夜久久久久久| 欧美96一区二区免费视频| 美女看a上一区| 久久99热狠狠色一区二区| 久久99蜜桃精品| 风间由美一区二区三区在线观看| 国产综合色在线视频区| 国产成人av一区二区三区在线 | 国产精品久久久久7777按摩| 中文字幕乱码亚洲精品一区| 国产精品丝袜在线| 亚洲视频在线一区观看| 亚洲一二三四久久| 麻豆久久久久久| 国产成人综合在线播放| 色美美综合视频| 91精品国产一区二区人妖| 久久久久久电影| 亚洲精品国产精华液| 青青草国产成人av片免费| 福利一区福利二区| 在线免费观看一区| 久久亚洲综合av| 亚洲精品高清在线观看| 激情深爱一区二区| 91香蕉视频mp4| 日韩精品中文字幕一区二区三区| 欧美国产一区视频在线观看| 亚洲高清在线精品| 成人一级片网址| 在线不卡中文字幕播放| 中文字幕乱码亚洲精品一区 | 天天影视涩香欲综合网| 狠狠色综合日日| 欧美主播一区二区三区| 国产日韩欧美精品综合| 婷婷综合久久一区二区三区| 丰满少妇久久久久久久| 91麻豆精品国产自产在线 | 欧美日韩国产在线播放网站| 久久精品亚洲一区二区三区浴池| 亚洲综合丝袜美腿| jlzzjlzz亚洲女人18| 欧美一区二区三区视频| 亚洲激情图片qvod| 国产麻豆精品95视频| 欧美区在线观看| 亚洲丝袜美腿综合| 国产成人精品影院| 日韩女优av电影在线观看| 亚洲一二三区在线观看| av资源网一区| 久久精品一区二区三区不卡 | 精品国产制服丝袜高跟| 亚洲国产中文字幕| 色女孩综合影院| 一区精品在线播放| 国产成人在线视频免费播放| 日韩视频免费观看高清在线视频| 亚洲国产aⅴ成人精品无吗| 色哟哟在线观看一区二区三区| 亚洲国产电影在线观看| 国产乱子伦一区二区三区国色天香| 欧美高清视频不卡网| 亚洲在线中文字幕| 欧美吻胸吃奶大尺度电影| 亚洲视频免费在线| 色婷婷激情综合| 一区二区三区小说| 91国产精品成人| 亚洲一区在线观看网站| 在线欧美小视频| 午夜私人影院久久久久| 欧美色老头old∨ideo| 亚洲777理论| 91精品国产一区二区人妖| 免费精品99久久国产综合精品| 6080yy午夜一二三区久久| 美女网站视频久久| 日韩女优av电影| 国产精品一二三| 亚洲欧洲国产日韩| 在线观看亚洲精品视频| 日韩影院免费视频| 精品国产一区二区三区不卡| 国产一区二区三区免费播放| 中文字幕 久热精品 视频在线| 97久久超碰国产精品| 亚洲激情自拍偷拍| 日韩视频免费直播| 丁香婷婷综合色啪| 一区二区三区四区激情 | 精品一区二区三区在线播放| 国产欧美一区二区精品久导航| 成人av电影在线| 亚洲地区一二三色| 精品欧美一区二区久久| 国产精品乡下勾搭老头1| 国产精品久久777777| 日本高清无吗v一区| 久久精品国产99久久6| 欧美国产精品中文字幕| 欧美视频一区二区在线观看| 久久成人羞羞网站| 亚洲天堂福利av| 精品区一区二区| 一本一本久久a久久精品综合麻豆| 日韩专区在线视频| 中文字幕精品在线不卡| 欧美一区二区视频免费观看| 从欧美一区二区三区| 日本一不卡视频| 一区在线观看免费| 久久综合中文字幕| 欧美图区在线视频| 成人激情小说网站| 蜜桃久久久久久| 一区二区三区91| 欧美激情一区二区三区全黄| 欧美一区二区三区色| 在线一区二区视频| 国产精品911| 青草国产精品久久久久久| 亚洲视频在线一区| 欧美国产一区二区在线观看| 欧美一区二区在线播放| 欧美调教femdomvk| 91在线视频免费观看| 成人午夜激情视频| 国产一区二区91| 免费黄网站欧美| 日韩电影在线观看一区| 一片黄亚洲嫩模| 专区另类欧美日韩| 国产精品久久久久久久久动漫 | 日本成人超碰在线观看| 亚洲综合在线免费观看| 中文字幕亚洲一区二区av在线| 久久人人97超碰com| 精品奇米国产一区二区三区| 欧美一区二区三区不卡| 欧美一区二区高清| 欧美一区二区三区免费在线看| 欧美日韩综合一区| 欧美乱熟臀69xxxxxx| 欧美另类变人与禽xxxxx| 欧美日本一道本| 欧美丰满少妇xxxxx高潮对白| 欧美性猛交xxxx黑人交| 精品视频1区2区3区| 欧美夫妻性生活| 91精品婷婷国产综合久久| 91精品国产美女浴室洗澡无遮挡| 337p亚洲精品色噜噜狠狠| 欧美日韩国产大片| 日韩亚洲电影在线| 国产日产亚洲精品系列| 国产精品久久久久永久免费观看| 亚洲国产高清在线| 亚洲欧美激情视频在线观看一区二区三区| 欧美高清在线视频| 亚洲精品欧美激情| 午夜久久久久久| 免费成人美女在线观看| 国产在线精品免费av| 丁香六月综合激情| 欧美中文字幕不卡| 欧美电影免费观看高清完整版在线观看| 日韩视频一区在线观看| 久久九九影视网| 一区二区高清在线| 日本欧洲一区二区| 国产aⅴ综合色| 日本乱码高清不卡字幕| 日韩一级大片在线观看| 国产丝袜在线精品| 夜夜夜精品看看| 久久99国产精品免费| 99re在线视频这里只有精品| 欧美日韩在线播放一区| 26uuu色噜噜精品一区二区| 国产精品欧美久久久久无广告| 亚洲自拍偷拍麻豆| 国精产品一区一区三区mba视频| 91蝌蚪porny成人天涯| 欧美一区永久视频免费观看| 中文字幕在线不卡国产视频| 免费人成在线不卡| av午夜精品一区二区三区| 91麻豆精品91久久久久久清纯 | 在线免费观看成人短视频| 日韩一区二区三区电影| ●精品国产综合乱码久久久久| 日本不卡在线视频|