Hey Maintainers,
Just noticed in the darshanruntime.txt file theres a small typo could you modify the ./prepare line to be ./prepare.sh. I took a peek at the util and it refers to ./prepare.sh instead.
Before:
=== Compilation
.Configure and build example (with MPI support)
tar -xvzf darshan-.tar.gz
cd darshan-/
./prepare
cd darshan-runtime/
./configure --with-log-path=/darshan-logs --with-jobid-env=PBS_JOBID CC=mpicc
make
make install
.Configure and build example (without MPI support)
tar -xvzf darshan-.tar.gz
cd darshan-/
./prepare
cd darshan-runtime/
./configure --with-log-path=/darshan-logs --with-jobid-env=PBS_JOBID --without-mpi CC=gcc
make
make install
Suggested Change:
=== Compilation
.Configure and build example (with MPI support)
tar -xvzf darshan-.tar.gz
cd darshan-/
./prepare.sh
cd darshan-runtime/
./configure --with-log-path=/darshan-logs --with-jobid-env=PBS_JOBID CC=mpicc
make
make install
.Configure and build example (without MPI support)
tar -xvzf darshan-.tar.gz
cd darshan-/
./prepare.sh
cd darshan-runtime/
./configure --with-log-path=/darshan-logs --with-jobid-env=PBS_JOBID --without-mpi CC=gcc
make
make install
Thanks,
Hungryskeleton