[Darshan-commits] [Git][darshan/darshan][carns/dev-dyn-link-updates] remove old blue gene scripts

Philip Carns xgitlab at cels.anl.gov
Fri Mar 20 15:23:35 CDT 2020



Philip Carns pushed to branch carns/dev-dyn-link-updates at darshan / darshan


Commits:
1ca708f3 by Phil Carns at 2020-03-20T16:23:23-04:00
remove old blue gene scripts

- - - - -


10 changed files:

- − darshan-runtime/maint/generate-bg-compilers.sh
- − darshan-runtime/maint/generate-bgq-compilers.sh
- − darshan-runtime/maint/install-eureka.sh
- − darshan-runtime/maint/install-gadzooks.sh
- − darshan-runtime/maint/install-intrepid.sh
- − darshan-runtime/maint/install-surveyor.sh
- − darshan-runtime/maint/upgrade-eureka.sh
- − darshan-runtime/maint/upgrade-gadzooks.sh
- − darshan-runtime/maint/upgrade-intrepid.sh
- − darshan-runtime/maint/upgrade-surveyor.sh


Changes:

=====================================
darshan-runtime/maint/generate-bg-compilers.sh deleted
=====================================
@@ -1,35 +0,0 @@
-#!/bin/bash
-#
-# Generates compiler scripts for all BG compilers
-#
-
-PREFIX=/soft/apps/darshan-x.x.x
-BGPATH=/bgsys/drivers/ppcfloor/comm/xxx/bin
-
-for compiler_type in default fast xl;
-do
-   compiler_path=${BGPATH/xxx/$compiler_type}
-   compiler_opt=""
-   for compiler in $(ls $compiler_path);
-   do
-       if [ $compiler != "mpich2version" -a \
-            $compiler != "parkill" ]; then
-           mkdir -p $PREFIX/bin/$compiler_type
-           if [ $(expr match $compiler ".*xl.*") -gt 0 -o \
-                $compiler_type = "fast" -o \
-                $compiler_type = "xl" ]; then
-               compiler_opt="--trim --xl";
-           fi
-           if [ $(expr match $compiler ".*cxx") -gt 0 ]; then
-               $PREFIX/bin/darshan-gen-cxx.pl $compiler_opt --output=$PREFIX/bin/$compiler_type/$compiler $compiler_path/$compiler
-           elif [ $(expr match $compiler ".*f77") -gt 0 -o \
-                  $(expr match $compiler ".*f90") -gt 0 -o \
-                  $(expr match $compiler ".*f95") -gt 0 -o \
-                  $(expr match $compiler ".*f2003") -gt 0 ]; then
-               $PREFIX/bin/darshan-gen-fortran.pl $compiler_opt --output=$PREFIX/bin/$compiler_type/$compiler $compiler_path/$compiler
-           else
-               $PREFIX/bin/darshan-gen-cc.pl $compiler_opt --output=$PREFIX/bin/$compiler_type/$compiler $compiler_path/$compiler
-           fi
-       fi
-   done 
-done


=====================================
darshan-runtime/maint/generate-bgq-compilers.sh deleted
=====================================
@@ -1,36 +0,0 @@
-#!/bin/bash
-#
-# Generates compiler scripts for all BG compilers
-#
-
-PREFIX=/soft/perftools/darshan/darshan-x.y.z
-BGPATH=/bgsys/drivers/ppcfloor/comm/xxx/bin
-
-for compiler_type in xl xl.ndebug xl.legacy xl.legacy.ndebug gcc gcc.legacy;
-do
-   compiler_path=${BGPATH/xxx/$compiler_type}
-   compiler_opt="--trim"
-   for compiler in $(ls $compiler_path);
-   do
-       if [ $compiler != "mpich2version" -a \
-            $compiler != "parkill" ]; then
-           mkdir -p $PREFIX/wrappers/$compiler_type
-           if [ $compiler_type = "xl" -o \
-                $compiler_type = "xl.ndebug" -o \
-                $compiler_type = "xl.legacy" -o \
-                $compiler_type = "xl.legacy.ndebug" ]; then
-               compiler_opt="--trim --xl";
-           fi
-           if [ $(expr match $compiler ".*cxx") -gt 0 ]; then
-               $PREFIX/bin/darshan-gen-cxx.pl $compiler_opt --output=$PREFIX/wrappers/$compiler_type/$compiler $compiler_path/$compiler
-           elif [ $(expr match $compiler ".*f77") -gt 0 -o \
-                  $(expr match $compiler ".*f90") -gt 0 -o \
-                  $(expr match $compiler ".*f95") -gt 0 -o \
-                  $(expr match $compiler ".*f2003") -gt 0 ]; then
-               $PREFIX/bin/darshan-gen-fortran.pl $compiler_opt --output=$PREFIX/wrappers/$compiler_type/$compiler $compiler_path/$compiler
-           else
-               $PREFIX/bin/darshan-gen-cc.pl $compiler_opt --output=$PREFIX/wrappers/$compiler_type/$compiler $compiler_path/$compiler
-           fi
-       fi
-   done 
-done


=====================================
darshan-runtime/maint/install-eureka.sh deleted
=====================================
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/intrepid-fs0/logs/darshan-eureka
-
-# Configure, Make and Install Darshan suite
-cd ../
-./configure --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/soft/apps/mpich2-1.3.1-gnu/bin/mpicc && make && make install
-


=====================================
darshan-runtime/maint/install-gadzooks.sh deleted
=====================================
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/pvfs-surveyor/logs/darshan-gadzooks
-
-# Configure, Make and Install Darshan suite
-./configure --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/soft/apps/mpich2-1.3.1-gnu/bin/mpicc && make && make install
-


=====================================
darshan-runtime/maint/install-intrepid.sh deleted
=====================================
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/intrepid-fs0/logs/darshan/
-
-#darshan 
-cd ../
-./configure --disable-ld-preload --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-zlib=/soft/apps/zlib-1.2.3/ --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/bgsys/drivers/ppcfloor/comm/default/bin/mpicc && make && make install
-
-mkdir -p $LOGDIR
-$PREFIX/bin/darshan-mk-log-dirs.pl


=====================================
darshan-runtime/maint/install-surveyor.sh deleted
=====================================
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/pvfs-surveyor/logs/darshan
-
-#darshan 
-cd ../
-./configure --disable-ld-preload --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-zlib=/soft/apps/zlib-1.2.3/ --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/bgsys/drivers/ppcfloor/comm/default/bin/mpicc && make && make install
-
-mkdir -p $LOGDIR
-$PREFIX/bin/darshan-mk-log-dirs.pl


=====================================
darshan-runtime/maint/upgrade-eureka.sh deleted
=====================================
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/intrepid-fs0/logs/darshan-eureka
-
-# Configure, Make and Install Darshan suite
-cd ../
-./configure --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/soft/apps/mpich2-1.3.1-gnu/bin/mpicc && make && make install


=====================================
darshan-runtime/maint/upgrade-gadzooks.sh deleted
=====================================
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/pvfs-surveyor/logs/darshan-gadzooks
-
-# Configure, Make and Install Darshan suite
-cd ../
-./configure --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/soft/apps/mpich2-1.3.1-gnu/bin/mpicc && make && make install
-


=====================================
darshan-runtime/maint/upgrade-intrepid.sh deleted
=====================================
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/intrepid-fs0/logs/darshan/
-
-#darshan 
-cd ../
-./configure --disable-ld-preload --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-zlib=/soft/apps/zlib-1.2.3/ --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/bgsys/drivers/ppcfloor/comm/default/bin/mpicc && make && make install
-


=====================================
darshan-runtime/maint/upgrade-surveyor.sh deleted
=====================================
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-PREFIX=/soft/apps/darshan-x.y.z
-LOGDIR=/pvfs-surveyor/logs/darshan
-
-#darshan 
-cd ../
-./configure --disable-ld-preload --with-mem-align=16 --with-log-path=$LOGDIR --prefix=$PREFIX --with-zlib=/soft/apps/zlib-1.2.3/ --with-jobid-env=COBALT_JOBID CFLAGS="-O2" CC=/bgsys/drivers/ppcfloor/comm/default/bin/mpicc && make && make install
-



View it on GitLab: https://xgitlab.cels.anl.gov/darshan/darshan/commit/1ca708f3466db39de4bafde090db2667fd0e49ed

-- 
View it on GitLab: https://xgitlab.cels.anl.gov/darshan/darshan/commit/1ca708f3466db39de4bafde090db2667fd0e49ed
You're receiving this email because of your account on xgitlab.cels.anl.gov.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mcs.anl.gov/pipermail/darshan-commits/attachments/20200320/0929067a/attachment-0001.html>


More information about the Darshan-commits mailing list