This putback will add Solaris packaging functionality. The packages as they
stand now are built of a static list of files, the prototype for the packages is not being dynamically generated. The goal will be to make changes to have dynamically generated package prototypes. This commit was SVN r11160.
Этот коммит содержится в:
родитель
8fab3d5b82
Коммит
3cfe24f8ce
227
contrib/dist/solaris/bld_solaris_pkgs
поставляемый
Исполняемый файл
227
contrib/dist/solaris/bld_solaris_pkgs
поставляемый
Исполняемый файл
@ -0,0 +1,227 @@
|
||||
#!/bin/ksh
|
||||
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
#
|
||||
# This script takes as input a path to a prototype space of files that are to be
|
||||
# encapsulated in Solaris packages. The installation must include both 32 and
|
||||
# 64 bit libaries and prefixed in the correct manner.
|
||||
#
|
||||
# The steps to build are as follows using vpaths:
|
||||
# % cd ompi-trunk
|
||||
# % ./autogen.sh
|
||||
# % mkdir -p vpath/64 vpath/32/ vpath/proto
|
||||
#
|
||||
# (sparc build)
|
||||
# % cd vpath/64
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="-xarch=v9" CXXFLAGS="-xarch=v9" FFLAGS="-stackvar -mt -dalign \
|
||||
# -fpp -xarch=v9" FCFLAGS="-xarch=v9 -KPIC" --disable-binaries \
|
||||
# --prefix=/opt/SUNWhpc/HPC7.0 --libdir=/opt/SUNWhpc/HPC7.0/lib/sparcv9 \
|
||||
# --includedir=/opt/SUNWhpc/HPC7.0/include/v9
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../32
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="" CXXFLAGS="" FFLAGS="-stackvar -mt -dalign -fpp" \
|
||||
# FCFLAGS="-KPIC" --prefix=/opt/SUNWhpc/HPC7.0 \
|
||||
# --libdir=/opt/SUNWhpc/HPC7.0/lib --includedir=/opt/SUNWhpc/HPC7.0/include
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../../contrib/dist/solaris
|
||||
# % ./bld_solaris_pkgs /path/to/vpath/proto/opt/SUNWhpc/HPC7.0
|
||||
#
|
||||
# (amd/i386 build)
|
||||
# % cd vpath/64
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="" CXXFLAGS="" FFLAGS="-stackvar -mt -dalign \
|
||||
# -fpp" FCFLAGS="-KPIC" \
|
||||
# --prefix=/opt/SUNWhpc/HPC7.0 --libdir=/opt/SUNWhpc/HPC7.0/lib/amd64 \
|
||||
# --includedir=/opt/SUNWhpc/HPC7.0/include/amd64
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../32
|
||||
# % ../../configure --enable-shared --enable-mpi-f90 \
|
||||
# --with-tm=/path/to/OpenPBS --with-threads=solaris --enable-mpi-threads \
|
||||
# CFLAGS="" CXXFLAGS="" FFLAGS="-stackvar -mt -dalign -fpp" \
|
||||
# FCFLAGS="-KPIC" --prefix=/opt/SUNWhpc/HPC7.0 \
|
||||
# --libdir=/opt/SUNWhpc/HPC7.0/lib --includedir=/opt/SUNWhpc/HPC7.0/include
|
||||
# % make DESTDIR=/path/to/ompi-trunk/vpath/proto install
|
||||
# % cd ../../contrib/dist/solaris
|
||||
# % ./bld_solaris_pkgs /path/to/vpath/proto/opt/SUNWhpc/HPC7.0
|
||||
#
|
||||
# This is not the ideal case for long term use. There needs to be changes to
|
||||
# build dynamic packages instead of the static packages we have now.
|
||||
#
|
||||
|
||||
PATH=/usr/bin/usr/sbin:${PATH}
|
||||
|
||||
#
|
||||
# global variables
|
||||
#
|
||||
ARCH=`uname -p`
|
||||
DATE=`date +'%Y.%m.%d'`
|
||||
#PKGNAMES="SUNWompi SUNWompimn SUNWomsc SUNWorte SUNWortemn"
|
||||
PKGNAMES="SUNWompi SUNWorte SUNWortemn"
|
||||
PLATFORM=`uname -s`
|
||||
PROTO=
|
||||
SED_PKGINFO_PROTO=sed_pkginfo_proto
|
||||
SPOOLDEV=`pwd`"/${PLATFORM}/${ARCH}/${DATE}"
|
||||
|
||||
#
|
||||
# build_package: This function takes as input the name of the package to build
|
||||
# and constructs the package into ${SPOOLDEV}/${PLATFORM}/${ARCH}/${DATE}
|
||||
#
|
||||
function build_package
|
||||
{
|
||||
f_pkg_name=$1
|
||||
|
||||
if [ ${BASE} ] ; then
|
||||
SPOOLDEV=${BASE}
|
||||
fi
|
||||
|
||||
if [ ! -d ${SPOOLDEV} ] ; then
|
||||
mkdir -p ${SPOOLDEV}
|
||||
fi
|
||||
pkgmk -b ${PROTO} -d ${SPOOLDEV} -f prototype.${f_pkg_name}
|
||||
}
|
||||
|
||||
#
|
||||
# build_sed_script: This function creates the temporary sed script that is used
|
||||
# to process the pkginfo and prototype template files.
|
||||
#
|
||||
function build_sed_script
|
||||
{
|
||||
if [ ${ARCH} == sparc ] ; then
|
||||
lib_v9="sparcv9"
|
||||
inc_v9="v9"
|
||||
elif [ ${ARCH} == i386 ] ; then
|
||||
lib_v9="amd64"
|
||||
inc_v9="amd64"
|
||||
else
|
||||
lib_v9="64"
|
||||
inc_v9="64"
|
||||
fi
|
||||
|
||||
if [ -f ${SED_PKGINFO_PROTO} ] ; then
|
||||
rm -f ${SED_PKGINFO_PROTO}
|
||||
fi
|
||||
|
||||
cat << _EOF > ${SED_PKGINFO_PROTO}
|
||||
s/\/LIB_ISAV9/\/${lib_v9}/g
|
||||
s/\/INC_ISAV9/\/${inc_v9}/g
|
||||
s/\/LIB_ISA/\/${ARCH}/g
|
||||
s/\/INC_ISA/\/${ARCH}/g
|
||||
s/\/ISA/\/${ARCH}/g
|
||||
_EOF
|
||||
|
||||
}
|
||||
|
||||
#
|
||||
# cleanup_pkginfo: This function takes a single input of a package name and
|
||||
# removes the non-templete version of the pkginfo file after the package
|
||||
# has been created.
|
||||
#
|
||||
function cleanup_pkginfo
|
||||
{
|
||||
f_pkginfo_name=pkginfo.$1
|
||||
|
||||
if [ -f ${f_pkginfo_name} ] ; then
|
||||
rm -f ${f_pkginfo_name}
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# cleanup_prototype: This function takes a single input of a package name and
|
||||
# removes the non-templete version of the prototype file after the package
|
||||
# has been created.
|
||||
#
|
||||
function cleanup_prototype
|
||||
{
|
||||
f_proto_name=prototype.$1
|
||||
|
||||
if [ -f ${f_proto_name} ] ; then
|
||||
rm -f ${f_proto_name}
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# update_pkginfo: This function takes a single input of a package name and
|
||||
# creates the needed pkginfo file from the template and processing it
|
||||
# with the sed_pkginfo_proto script.
|
||||
#
|
||||
function update_pkginfo
|
||||
{
|
||||
f_pkginfo_name=pkginfo.$1
|
||||
|
||||
if [ -f ${f_pkginfo_name} ] ; then
|
||||
rm -f ${f_pkginfo_name}
|
||||
fi
|
||||
|
||||
sed -f ${SED_PKGINFO_PROTO} ${f_pkginfo_name}.tmpl > ${f_pkginfo_name}
|
||||
}
|
||||
|
||||
#
|
||||
# update_prototype: This function takes a single input of a package name and
|
||||
# creates the needed prototype file from the template and processing it
|
||||
# with the sed_pkginfo_proto script.
|
||||
#
|
||||
function update_prototype
|
||||
{
|
||||
f_proto_name=prototype.$1
|
||||
|
||||
if [ -f ${f_proto_name} ] ; then
|
||||
rm -f ${f_proto_name}
|
||||
fi
|
||||
|
||||
sed -f ${SED_PKGINFO_PROTO} ${f_proto_name}.tmpl > ${f_proto_name}
|
||||
}
|
||||
|
||||
#
|
||||
#
|
||||
#
|
||||
function usage
|
||||
{
|
||||
prog=`basename $0`
|
||||
print "Usage: ${prog} [-b build-base] -p proto-dir"
|
||||
print " -b path to place built packages"
|
||||
print " -p path to the prototype space of files to be packaged"
|
||||
}
|
||||
|
||||
#
|
||||
# main
|
||||
#
|
||||
if (( $# < 1 )) ; then
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
while getopts b:p: a
|
||||
do
|
||||
case "$a" in
|
||||
b) BASE=$OPTARG;;
|
||||
p) PROTO=$OPTARG;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ ! -d ${PROTO} ]; then
|
||||
print "Error: the proto space ${PROTO} does not exist."
|
||||
usage
|
||||
exit 1
|
||||
fi
|
||||
|
||||
build_sed_script
|
||||
|
||||
for pkg in ${PKGNAMES}
|
||||
do
|
||||
update_pkginfo ${pkg}
|
||||
update_prototype ${pkg}
|
||||
|
||||
build_package ${pkg}
|
||||
|
||||
cleanup_pkginfo ${pkg}
|
||||
cleanup_prototype ${pkg}
|
||||
done
|
||||
|
||||
rm ${SED_PKGINFO_PROTO}
|
19
contrib/dist/solaris/pkginfo.SUNWompi.tmpl
поставляемый
Обычный файл
19
contrib/dist/solaris/pkginfo.SUNWompi.tmpl
поставляемый
Обычный файл
@ -0,0 +1,19 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
PKG="SUNWompi"
|
||||
NAME="Open MPI Message Passing Interface"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="HPC7.0"
|
||||
SUNW_PRODNAME="Sun HPC ClusterTools 7"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Message Passing Interface"
|
||||
VENDOR="Sun Microsystems, Inc."
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
||||
SUNW_PKG_THISZONE="true"
|
19
contrib/dist/solaris/pkginfo.SUNWompimn.tmpl
поставляемый
Обычный файл
19
contrib/dist/solaris/pkginfo.SUNWompimn.tmpl
поставляемый
Обычный файл
@ -0,0 +1,19 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
PKG="SUNWompimn"
|
||||
NAME="Open MPI Message Passing Interface Man Page"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="HPC7.0"
|
||||
SUNW_PRODNAME="Sun HPC ClusterTools 7"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Message Passing Interface Man Page"
|
||||
VENDOR="Sun Microsystems, Inc."
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
||||
SUNW_PKG_THISZONE="true"
|
19
contrib/dist/solaris/pkginfo.SUNWomsc.tmpl
поставляемый
Обычный файл
19
contrib/dist/solaris/pkginfo.SUNWomsc.tmpl
поставляемый
Обычный файл
@ -0,0 +1,19 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
PKG="SUNWomsc"
|
||||
NAME="Open MPI Miscellaneous Files"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="HPC7.0"
|
||||
SUNW_PRODNAME="Sun HPC ClusterTools 7"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Miscellaneous Files"
|
||||
VENDOR="Sun Microsystems, Inc."
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
||||
SUNW_PKG_THISZONE="true"
|
19
contrib/dist/solaris/pkginfo.SUNWorte.tmpl
поставляемый
Обычный файл
19
contrib/dist/solaris/pkginfo.SUNWorte.tmpl
поставляемый
Обычный файл
@ -0,0 +1,19 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
PKG="SUNWorte"
|
||||
NAME="Open MPI Runtime Environment"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="HPC7.0"
|
||||
SUNW_PRODNAME="Sun HPC ClusterTools 7"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Runtime Environment"
|
||||
VENDOR="Sun Microsystems, Inc."
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
||||
SUNW_PKG_THISZONE="true"
|
19
contrib/dist/solaris/pkginfo.SUNWortemn.tmpl
поставляемый
Обычный файл
19
contrib/dist/solaris/pkginfo.SUNWortemn.tmpl
поставляемый
Обычный файл
@ -0,0 +1,19 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
PKG="SUNWortemn"
|
||||
NAME="Open MPI Runtime Environment Man Pages"
|
||||
VERSION="1.0"
|
||||
BASEDIR="/opt"
|
||||
ARCH="ISA"
|
||||
SUNW_PRODVERS="HPC7.0"
|
||||
SUNW_PRODNAME="Sun HPC ClusterTools 7"
|
||||
SUNW_PKGVERS="1.0"
|
||||
DESC="Open MPI Runtime Environment Man Pages"
|
||||
VENDOR="Sun Microsystems, Inc."
|
||||
CATEGORY="system"
|
||||
CLASSES="none"
|
||||
MAXINST="1000"
|
||||
HOTLINE="Please contact your local service provider."
|
||||
EMAIL=""
|
||||
SUNW_PKG_THISZONE="true"
|
168
contrib/dist/solaris/prototype.SUNWompi.tmpl
поставляемый
Обычный файл
168
contrib/dist/solaris/prototype.SUNWompi.tmpl
поставляемый
Обычный файл
@ -0,0 +1,168 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
#
|
||||
# MPI Package
|
||||
#
|
||||
i pkginfo=pkginfo.SUNWompi
|
||||
i copyright
|
||||
#
|
||||
# bin
|
||||
#
|
||||
d none SUNWhpc 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/bin 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/ompi_info=bin/ompi_info 0755 root bin
|
||||
#
|
||||
# etc
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/etc 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/etc/openmpi-default-hostfile=etc/openmpi-default-hostfile 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/etc/openmpi-mca-params.conf=etc/openmpi-mca-params.conf 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/etc/openmpi-totalview.tcl=etc/openmpi-totalview.tcl 0444 root bin
|
||||
#
|
||||
# include
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/mpi.h=include/mpi.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/mpif.h=include/mpif.h 0444 root bin
|
||||
#
|
||||
# include/openmpi
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/mpicxx.h=include/openmpi/ompi/mpi/cxx/mpicxx.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/errhandler.h=include/openmpi/ompi/mpi/cxx/errhandler.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/topology.h=include/openmpi/ompi/mpi/cxx/topology.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intercomm.h=include/openmpi/ompi/mpi/cxx/intercomm.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/datatype_inln.h=include/openmpi/ompi/mpi/cxx/datatype_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/file_inln.h=include/openmpi/ompi/mpi/cxx/file_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/functions_inln.h=include/openmpi/ompi/mpi/cxx/functions_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/request_inln.h=include/openmpi/ompi/mpi/cxx/request_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/comm_inln.h=include/openmpi/ompi/mpi/cxx/comm_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intracomm_inln.h=include/openmpi/ompi/mpi/cxx/intracomm_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/info_inln.h=include/openmpi/ompi/mpi/cxx/info_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/win_inln.h=include/openmpi/ompi/mpi/cxx/win_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/topology_inln.h=include/openmpi/ompi/mpi/cxx/topology_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/intercomm_inln.h=include/openmpi/ompi/mpi/cxx/intercomm_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/group_inln.h=include/openmpi/ompi/mpi/cxx/group_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/op_inln.h=include/openmpi/ompi/mpi/cxx/op_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/errhandler_inln.h=include/openmpi/ompi/mpi/cxx/errhandler_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/openmpi/ompi/mpi/cxx/status_inln.h=include/openmpi/ompi/mpi/cxx/status_inln.h 0444 root bin
|
||||
#
|
||||
# include (64 bit), INC_ISAV9 will be changed to v9 or amd64
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/mpi.h=include/INC_ISAV9/mpi.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/mpif.h=include/INC_ISAV9/mpif.h 0444 root bin
|
||||
#
|
||||
# include (64 bit), INC_ISAV9 will be changed to v9 or amd64
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/mpicxx.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/mpicxx.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/datatype_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/datatype_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/file_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/file_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/functions_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/functions_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/request_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/request_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/comm_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/comm_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intracomm_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intracomm_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/info_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/info_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/win_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/win_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/topology_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/intercomm_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/group_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/group_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/op_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/op_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/errhandler_inln.h 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/include/INC_ISAV9/openmpi/ompi/mpi/cxx/status_inln.h=include/INC_ISAV9/openmpi/ompi/mpi/cxx/status_inln.h 0444 root bin
|
||||
#
|
||||
# libs
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/lib 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/libmca_common_sm.so.0.0.0=lib/libmca_common_sm.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmca_common_sm.so=./libmca_common_sm_so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmca_common_sm.so.0=./libmca_common_sm_so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi.so.0.0.0=lib/libmpi.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi.so=./libmpi.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi.so.0=./libmpi.so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_cxx.so.0.0.0=lib/libmpi_cxx.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_cxx.so=./libmpi_cxx.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_cxx.so.0=./libmpi_cxx.so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f90.so.0.0.0=lib/libmpi_f90.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f90.so=./libmpi_f90.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libmpi_f90.so.0=./libmpi_f90.so.0.0.0 0755 root bin
|
||||
#
|
||||
# libs/openmpi
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/lib/openmpi 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_allocator_basic.so=lib/openmpi/mca_allocator_basic.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_allocator_bucket.so=lib/openmpi/mca_allocator_bucket.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_bml_r2.so=lib/openmpi/mca_bml_r2.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_self.so=lib/openmpi/mca_btl_self.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_sm.so=lib/openmpi/mca_btl_sm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_btl_tcp.so=lib/openmpi/mca_btl_tcp.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_basic.so=lib/openmpi/mca_coll_basic.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_hierarch.so=lib/openmpi/mca_coll_hierarch.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_self.so=lib/openmpi/mca_coll_self.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_sm.so=lib/openmpi/mca_coll_sm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_coll_tuned.so=lib/openmpi/mca_coll_tuned.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_io_romio.so=lib/openmpi/mca_io_romio.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_mpool_sm.so=lib/openmpi/mca_mpool_sm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_osc_pt2pt.so=lib/openmpi/mca_osc_pt2pt.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pml_dr.so=lib/openmpi/mca_pml_dr.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pml_ob1.so=lib/openmpi/mca_pml_ob1.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rcache_rb.so=lib/openmpi/mca_rcache_rb.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_topo_unity.so=lib/openmpi/mca_topo_unity.so 0755 root bin
|
||||
#
|
||||
# lib (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmca_common_sm.so.0.0.0=lib/LIB_ISAV9/libmca_common_sm.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmca_common_sm.so=./libmca_common_sm_so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmca_common_sm.so.0=./libmca_common_sm_so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi.so.0.0.0=lib/LIB_ISAV9/libmpi.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi.so=./libmpi.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi.so.0=./libmpi.so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_cxx.so.0.0.0=lib/LIB_ISAV9/libmpi_cxx.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_cxx.so=./libmpi_cxx.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_cxx.so.0=./libmpi_cxx.so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f90.so.0.0.0=lib/LIB_ISAV9/libmpi_f90.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f90.so=./libmpi_f90.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libmpi_f90.so.0=./libmpi_f90.so.0.0.0 0755 root bin
|
||||
#
|
||||
# lib (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_allocator_basic.so=lib/LIB_ISAV9/openmpi/mca_allocator_basic.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_allocator_bucket.so=lib/LIB_ISAV9/openmpi/mca_allocator_bucket.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_bml_r2.so=lib/LIB_ISAV9/openmpi/mca_bml_r2.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_self.so=lib/LIB_ISAV9/openmpi/mca_btl_self.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_sm.so=lib/LIB_ISAV9/openmpi/mca_btl_sm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_btl_tcp.so=lib/LIB_ISAV9/openmpi/mca_btl_tcp.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_basic.so=lib/LIB_ISAV9/openmpi/mca_coll_basic.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_hierarch.so=lib/LIB_ISAV9/openmpi/mca_coll_hierarch.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_self.so=lib/LIB_ISAV9/openmpi/mca_coll_self.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_sm.so=lib/LIB_ISAV9/openmpi/mca_coll_sm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_coll_tuned.so=lib/LIB_ISAV9/openmpi/mca_coll_tuned.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_io_romio.so=lib/LIB_ISAV9/openmpi/mca_io_romio.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_mpool_sm.so=lib/LIB_ISAV9/openmpi/mca_mpool_sm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_osc_pt2pt.so=lib/LIB_ISAV9/openmpi/mca_osc_pt2pt.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pml_dr.so=lib/LIB_ISAV9/openmpi/mca_pml_dr.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pml_ob1.so=lib/LIB_ISAV9/openmpi/mca_pml_ob1.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rcache_rb.so=lib/LIB_ISAV9/openmpi/mca_rcache_rb.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_topo_unity.so=lib/LIB_ISAV9/openmpi/mca_topo_unity.so 0755 root bin
|
||||
#
|
||||
# share files
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/share 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/share/openmpi 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mpi-btl-base.txt=share/openmpi/help-mpi-btl-base.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mpi-runtime.txt=share/openmpi/help-mpi-runtime.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-ompi_info.txt=share/openmpi/help-ompi_info.txt 0444 root bin
|
15
contrib/dist/solaris/prototype.SUNWompimn.tmpl
поставляемый
Обычный файл
15
contrib/dist/solaris/prototype.SUNWompimn.tmpl
поставляемый
Обычный файл
@ -0,0 +1,15 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
#
|
||||
# MPI Package Man Pages
|
||||
#
|
||||
i pkginfo=pkginfo.SUNWompimn
|
||||
i copyright
|
||||
#
|
||||
# man
|
||||
#
|
||||
d none SUNWhpc 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/man 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/man/mpi.1=man/mpi.1 0444 root bin
|
38
contrib/dist/solaris/prototype.SUNWomsc.tmpl
поставляемый
Обычный файл
38
contrib/dist/solaris/prototype.SUNWomsc.tmpl
поставляемый
Обычный файл
@ -0,0 +1,38 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
#
|
||||
# Misc Package
|
||||
#
|
||||
i pkginfo=pkginfo.SUNWomsc
|
||||
i copyright
|
||||
#
|
||||
# examples
|
||||
#
|
||||
d none SUNWhpc 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/examples 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/examples/mpi 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/README=examples/README 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/Makefile=examples/Makefile 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/Makefile.include=examples/Makefile.include 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_c.c=examples/ring_c.c 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_cxx.cc=examples/ring_cxx.cc 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_c.c=examples/hello_c.c 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_f77.f=examples/ring_f77.f 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_cxx.cc=examples/hello_cxx.cc 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_f77.f=examples/hello_f77.f 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/ring_f90.f90=examples/ring_f90.f90 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/hello_f90.f90=examples/hello_f90.f90 0444 root bin
|
||||
#
|
||||
# dtrace scripts
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/README=examples/dtrace/README 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/Makefile=examples/dtrace/Makefile 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/mpicommleak.c=examples/dtrace/mpicommleak.c 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/mpicommcheck.d=examples/dtrace/mpicommcheck.d 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/mpitrace.d=examples/dtrace/mpitrace.d 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/mpitruss.d=examples/dtrace/mpitruss.d 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/partrace.sh=examples/dtrace/partrace.sh 0555 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/examples/mpi/dtrace/myppriv.sh=examples/dtrace/myppriv.sh 0555 root bin
|
153
contrib/dist/solaris/prototype.SUNWorte.tmpl
поставляемый
Обычный файл
153
contrib/dist/solaris/prototype.SUNWorte.tmpl
поставляемый
Обычный файл
@ -0,0 +1,153 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
#
|
||||
# Runtime Environment Package
|
||||
#
|
||||
i pkginfo=pkginfo.SUNWorte
|
||||
i copyright
|
||||
#
|
||||
# bin
|
||||
#
|
||||
d none SUNWhpc 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/bin 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/opal_wrapper=bin/opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpiCC=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpic++=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpicc=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpicxx=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpif77=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpif90=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/opalCC=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/opalc++=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/opalcc=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/orteCC=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/ortec++=./opal_wrapper 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/ortecc=./opal_wrapper 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/orte-clean=bin/orte-clean 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/orte-ps=bin/orte-ps 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/orteconsole=bin/orteconsole 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/orted=bin/orted 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/orteprobe=bin/orteprobe 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/bin/orterun=bin/orterun 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpiexec=./orterun 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/bin/mpirun=./orterun 0755 root bin
|
||||
#
|
||||
# lib
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/lib 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/libopal.so.0.0.0=lib/libopal.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libopal.so=./libopal.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/libopal.so.0=./libopal.so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/liborte.so.0.0.0=lib/liborte.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/liborte.so=./liborte.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/liborte.so.0=./liborte.so.0.0.0 0755 root bin
|
||||
#
|
||||
# lib/openmpi
|
||||
#
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_gpr_null.so=lib/openmpi/mca_gpr_null.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_gpr_proxy.so=lib/openmpi/mca_gpr_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_gpr_replica.so=lib/openmpi/mca_gpr_replica.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_iof_proxy.so=lib/openmpi/mca_iof_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_iof_svc.so=lib/openmpi/mca_iof_svc.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_maffinity_first_use.so=lib/openmpi/mca_maffinity_first_use.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ns_proxy.so=lib/openmpi/mca_ns_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ns_replica.so=lib/openmpi/mca_ns_replica.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_oob_tcp.so=lib/openmpi/mca_oob_tcp.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_paffinity_solaris.so=lib/openmpi/mca_paffinity_solaris.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_fork.so=lib/openmpi/mca_pls_fork.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_gridengine.so=lib/openmpi/mca_pls_gridengine.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_rsh.so=lib/openmpi/mca_pls_rsh.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_pls_tm.so=lib/openmpi/mca_pls_tm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_dash_host.so=lib/openmpi/mca_ras_dash_host.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_gridengine.so=lib/openmpi/mca_ras_gridengine.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_hostfile.so=lib/openmpi/mca_ras_hostfile.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_localhost.so=lib/openmpi/mca_ras_localhost.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_ras_tm.so=lib/openmpi/mca_ras_tm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rds_hostfile.so=lib/openmpi/mca_rds_hostfile.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rds_resfile.so=lib/openmpi/mca_rds_resfile.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmaps_round_robin.so=lib/openmpi/mca_rmaps_round_robin.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmgr_proxy.so=lib/openmpi/mca_rmgr_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rml_oob.so=lib/openmpi/mca_rml_oob.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_rmgr_urm.so=lib/openmpi/mca_rmgr_urm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_env.so=lib/openmpi/mca_sds_env.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_pipe.so=lib/openmpi/mca_sds_pipe.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_seed.so=lib/openmpi/mca_sds_seed.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/openmpi/mca_sds_singleton.so=lib/openmpi/mca_sds_singleton.so 0755 root bin
|
||||
#
|
||||
# libs (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libopal.so.0.0.0=lib/LIB_ISAV9/libopal.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libopal.so=./libopal.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/libopal.so.0=./libopal.so.0.0.0 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/liborte.so.0.0.0=lib/LIB_ISAV9/liborte.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/liborte.so=./liborte.so.0.0.0 0755 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/liborte.so.0=./liborte.so.0.0.0 0755 root bin
|
||||
#
|
||||
# libs/openmpi (64 bit), LIB_ISAV9 will be changed to sparcv9 or amd64
|
||||
#
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_gpr_null.so=lib/LIB_ISAV9/openmpi/mca_gpr_null.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_gpr_proxy.so=lib/LIB_ISAV9/openmpi/mca_gpr_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_gpr_replica.so=lib/LIB_ISAV9/openmpi/mca_gpr_replica.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_iof_proxy.so=lib/LIB_ISAV9/openmpi/mca_iof_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_iof_svc.so=lib/LIB_ISAV9/openmpi/mca_iof_svc.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_maffinity_first_use.so=lib/LIB_ISAV9/openmpi/mca_maffinity_first_use.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ns_proxy.so=lib/LIB_ISAV9/openmpi/mca_ns_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ns_replica.so=lib/LIB_ISAV9/openmpi/mca_ns_replica.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_oob_tcp.so=lib/LIB_ISAV9/openmpi/mca_oob_tcp.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_paffinity_solaris.so=lib/LIB_ISAV9/openmpi/mca_paffinity_solaris.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_fork.so=lib/LIB_ISAV9/openmpi/mca_pls_fork.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_gridengine.so=lib/openmpi/mca_pls_gridengine.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_rsh.so=lib/LIB_ISAV9/openmpi/mca_pls_rsh.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_pls_tm.so=lib/LIB_ISAV9/openmpi/mca_pls_tm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_dash_host.so=lib/LIB_ISAV9/openmpi/mca_ras_dash_host.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_gridengine.so=lib/openmpi/mca_ras_gridengine.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_hostfile.so=lib/LIB_ISAV9/openmpi/mca_ras_hostfile.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_localhost.so=lib/LIB_ISAV9/openmpi/mca_ras_localhost.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_ras_tm.so=lib/LIB_ISAV9/openmpi/mca_ras_tm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rds_hostfile.so=lib/LIB_ISAV9/openmpi/mca_rds_hostfile.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rds_resfile.so=lib/LIB_ISAV9/openmpi/mca_rds_resfile.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmaps_round_robin.so=lib/LIB_ISAV9/openmpi/mca_rmaps_round_robin.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmgr_proxy.so=lib/LIB_ISAV9/openmpi/mca_rmgr_proxy.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rmgr_urm.so=lib/LIB_ISAV9/openmpi/mca_rmgr_urm.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_rml_oob.so=lib/LIB_ISAV9/openmpi/mca_rml_oob.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_env.so=lib/LIB_ISAV9/openmpi/mca_sds_env.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_pipe.so=lib/LIB_ISAV9/openmpi/mca_sds_pipe.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_seed.so=lib/LIB_ISAV9/openmpi/mca_sds_seed.so 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/lib/LIB_ISAV9/openmpi/mca_sds_singleton.so=lib/LIB_ISAV9/openmpi/mca_sds_singleton.so 0755 root bin
|
||||
#
|
||||
# share
|
||||
#
|
||||
d none SUNWhpc/$SUNW_PRODVERS/share 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/share/openmpi 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-base.txt=share/openmpi/help-mca-base.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-coll-base.txt=share/openmpi/help-mca-coll-base.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-mca-param.txt=share/openmpi/help-mca-param.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-opal-runtime.txt=share/openmpi/help-opal-runtime.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-opal-wrapper.txt=share/openmpi/help-opal-wrapper.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orte-pls-fork.txt=share/openmpi/help-orte-pls-fork.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orte-rmaps-rr.txt=share/openmpi/help-orte-rmaps-rr.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orte-runtime.txt=share/openmpi/help-orte-runtime.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orteconsole.txt=share/openmpi/help-orteconsole.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orted.txt=share/openmpi/help-orted.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orteprobe.txt=share/openmpi/help-orteprobe.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-orterun.txt=share/openmpi/help-orterun.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-base.txt=share/openmpi/help-pls-base.txt 0444 root bin
|
||||
#f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-gridengine.txt=share/openmpi/help-pls-gridengine.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-rsh.txt=share/openmpi/help-pls-rsh.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-pls-tm.txt=share/openmpi/help-pls-tm.txt 0444 root bin
|
||||
#f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/help-ras-gridengine.txt=share/openmpi/help-ras-gridengine.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpic++-wrapper-data.txt=share/openmpi/mpic++-wrapper-data.txt 0444 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpiCC-wrapper-data.txt=./mpic++-wrapper-data.txt 0444 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpicxx-wrapper-data.txt=./mpic++-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpicc-wrapper-data.txt=share/openmpi/mpicc-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpif77-wrapper-data.txt=share/openmpi/mpif77-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/mpif90-wrapper-data.txt=share/openmpi/mpif90-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/opalc++-wrapper-data.txt=share/openmpi/mpic++-wrapper-data.txt 0444 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/opalCC-wrapper-data.txt=./opalc++-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/opalcc-wrapper-data.txt=share/openmpi/opalcc-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/ortec++-wrapper-data.txt=share/openmpi/ortec++-wrapper-data.txt 0444 root bin
|
||||
s none SUNWhpc/$SUNW_PRODVERS/share/openmpi/orteCC-wrapper-data.txt=./ortec++-wrapper-data.txt 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/share/openmpi/ortecc-wrapper-data.txt=share/openmpi/ortecc-wrapper-data.txt 0444 root bin
|
18
contrib/dist/solaris/prototype.SUNWortemn.tmpl
поставляемый
Обычный файл
18
contrib/dist/solaris/prototype.SUNWortemn.tmpl
поставляемый
Обычный файл
@ -0,0 +1,18 @@
|
||||
# Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
|
||||
#
|
||||
# MPI Package Man Pages
|
||||
#
|
||||
i pkginfo=pkginfo.SUNWortemn
|
||||
i copyright
|
||||
#
|
||||
# man
|
||||
#
|
||||
d none SUNWhpc 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/man 0755 root bin
|
||||
d none SUNWhpc/$SUNW_PRODVERS/man/man1 0755 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/man/man1/mpiexec.1=man/man1/mpiexec.1 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/man/man1/mpirun.1=man/man1/mpirun.1 0444 root bin
|
||||
f none SUNWhpc/$SUNW_PRODVERS/man/man1/orterun.1=man/man1/orterun.1 0444 root bin
|
Загрузка…
x
Ссылка в новой задаче
Block a user