You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
401B

  1. #!/bin/bash
  2. # THIS SCRIPT RUNS THE SPARSELIZARD EXECUTABLE
  3. if [ "$(uname)" == "Linux" ]; then
  4. LD_LIBRARY_PATH="$HOME/SLlibs/petsc/arch-linux2-c-opt/lib":$LD_LIBRARY_PATH
  5. export LD_LIBRARY_PATH=$LD_LIBRARY_PATH
  6. elif [ "$(uname)" == "Darwin" ]; then
  7. DYLD_LIBRARY_PATH="$HOME/SLlibs/petsc/arch-darwin-c-opt/lib":$DYLD_LIBRARY_PATH
  8. export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH
  9. fi
  10. ./sparselizard;