setup_channel

来自「fortran并行计算包」· 代码 · 共 49 行

TXT
49
字号
echo "RUNNING SETUP_CHANNEL FOR THE SCTP CHANNEL"## NOTE: This file is sourced from the setup_device with the current working# directory set to the top-level build directory.### Variables of interest...## $with_device - device name and arguments# $device_name - name of the device# $device_args - contains name of channel select plus an channel args# $channel_name - name of the channel# $master_top_srcdir - top-level source directory# $master_top_builddir - top-level build directory# $ac_configure_args - all arguments passed to configure#pathlist=""pathlist="$pathlist src/mpid/${device_name}/channels/${channel_name}/include"for path in $pathlist ; do    MPICH2_INCLUDE_FLAGS="$MPICH2_INCLUDE_FLAGS -I${master_top_builddir}/${path} -I${master_top_srcdir}/${path}"donefile=${master_top_srcdir}/src/mpid/${device_name}/channels/sctp/setup_channel.argsif test -f ${file} ; then    . ${file}else    echo "Error: ${file} not found"    exit 1fi# include sctpif test -n "$sctp_dir" ; then  CPPFLAGS="$CPPFLAGS -I${sctp_dir}/include"  LDFLAGS="$LDFLAGS -L${sctp_dir}/lib"fiif test -n "$sctp_include_dir" ; then  CPPFLAGS="$CPPFLAGS -I${sctp_include_dir}"fiif test -n "$sctp_lib_dir" ; then  LDFLAGS="$LDFLAGS -L${sctp_lib_dir}"fiLIBS="$LIBS -lsctp"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?