?? setup_device
字號:
echo "RUNNING SETUP_DEVICE FOR THE CH3 DEVICE"## NOTE: This file is sourced from the top-level configure script with the# current working directory set to the top-level build directory.### Variables of interest...## $master_top_srcdir - top-level source directory# $master_top_builddir - top-level build directory# $device_name - better be ch3# $device_args - contains name of channel select plus an channel args# $with_device - device name and arguments# $ac_configure_args - all arguments passed to configure#file=${master_top_srcdir}/src/mpid/${device_name}/setup_device.argsif test -f ${file} ; then . ${file}else echo "ERROR: ${file} not found" exit 1fipathlist=""pathlist="$pathlist src/mpid/${device_name}/include"pathlist="$pathlist src/mpid/common/datatype"for path in $pathlist ; do CPPFLAGS="${CPPFLAGS} -I${master_top_builddir}/${path}" CPPFLAGS="${CPPFLAGS} -I${master_top_srcdir}/${path}"donedir=${master_top_srcdir}/src/mpid/${device_name}/channels/${channel_name}if test ! -d $dir ; then echo "ERROR: ${dir} does not exist" exit 1fifile=${dir}/setup_channelif test -f $file ; then echo sourcing $file . $filefi
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -