Changeset 25812
- Timestamp:
- 2012-06-26T10:49:36+12:00 (11 years ago)
- Location:
- gs2-extensions/parallel-building/trunk/src/packages/CASCADE-MAKE
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
gs2-extensions/parallel-building/trunk/src/packages/CASCADE-MAKE/IPCRUN.sh
r24690 r25812 13 13 opt_run_perl_configure $force_config $auto_config $package $version $prefix 14 14 15 opt_run_make $compile $package $version 16 opt_run_make $install $package $version "install" 15 # We only compile if necessary, as compilation is quite slow and we don't 16 # edit these source files 17 if [[ ! -e "$GEXTPARALLELBUILDING_INSTALLED/share/perl/5.12.4/IPC/Run.pm" ]] 18 then 19 opt_run_make $compile $package $version 20 opt_run_make $install $package $version "install" 21 else 22 echo "IPC::Run Perl module already compiled => no need to recompile" 23 fi 24 17 25 opt_run_make $clean $package $version "clean" 18 26 opt_run_make $distclean $package $version "distclean" -
gs2-extensions/parallel-building/trunk/src/packages/CASCADE-MAKE/OPENMPI.sh
r24837 r25812 15 15 # We only compile if necessary, as compilation is quite slow and we don't 16 16 # edit these source files 17 if [[ ! -e "$GEXTPARALLELBUILDING_INSTALLED/lib/libmpi.so .0.0.2" || ! -e "$GEXTPARALLELBUILDING_INSTALLED/bin/opal_wrapper" || ! -e "$GEXTPARALLELBUILDING_INSTALLED/bin/orterun" ]]17 if [[ ! -e "$GEXTPARALLELBUILDING_INSTALLED/lib/libmpi.so" || ! -e "$GEXTPARALLELBUILDING_INSTALLED/bin/mpic++" || ! -e "$GEXTPARALLELBUILDING_INSTALLED/bin/mpirun" ]] 18 18 then 19 19 opt_run_make $compile $package $version 20 opt_run_make $install $package $version "install" 20 21 else 21 22 echo "Open MPI library and binaries already compiled => no need to recompile" 22 23 fi 23 24 24 opt_run_make $install $package $version "install"25 25 opt_run_make $clean $package $version "clean" 26 26 opt_run_make $distclean $package $version "distclean" -
gs2-extensions/parallel-building/trunk/src/packages/CASCADE-MAKE/PROCDAEMON.sh
r24690 r25812 13 13 opt_run_perl_configure $force_config $auto_config $package $version $prefix 14 14 15 opt_run_make $compile $package $version 16 opt_run_make $install $package $version "install" 15 # We only compile if necessary, as compilation is quite slow and we don't 16 # edit these source files 17 if [[ ! -e "$GEXTPARALLELBUILDING_INSTALLED/share/perl/5.12.4/Proc/Daemon.pm" ]] 18 then 19 opt_run_make $compile $package $version 20 opt_run_make $install $package $version "install" 21 else 22 echo "Proc::Daemon Perl module already compiled => no need to recompile" 23 fi 24 17 25 opt_run_make $clean $package $version "clean" 18 26 opt_run_make $distclean $package $version "distclean" -
gs2-extensions/parallel-building/trunk/src/packages/CASCADE-MAKE/TINYXML.sh
r24837 r25812 15 15 # Only compile if necessary - we don't edit these source files. 16 16 if [ ! -e "$GEXTPARALLELBUILDING_INSTALLED/lib/libtinyxml.a" ] 17 then 18 opt_run_make $compile $package $version 19 else 20 echo "TinyXML library already compiled => no need to recompile" 17 then 18 opt_run_make $compile $package $version 19 opt_run_make $install $package $version "install" 20 else 21 echo "TinyXML library already compiled => no need to recompile" 21 22 fi 22 23 23 opt_run_make $install $package $version "install"24 24 opt_run_make $clean $package $version "clean" 25 25 opt_run_make $distclean $package $version "distclean"
Note:
See TracChangeset
for help on using the changeset viewer.