https://github.com/epiqc/ScaffCC
Revision 79ea05f1d6f9d3f526ab2c196437c7134c1c9702 authored by Andrew Litteken on 27 June 2019, 18:48:34 UTC, committed by Andrew Litteken on 27 June 2019, 18:48:34 UTC
1 parent 90c8914
Raw File
Tip revision: 79ea05f1d6f9d3f526ab2c196437c7134c1c9702 authored by Andrew Litteken on 27 June 2019, 18:48:34 UTC
fixes: remove segfaults from Resource counting, fixing llvm build on macos, lowercase z for gates in test cases
Tip revision: 79ea05f
source_me
/bin/bash rkqc > /dev/null 2> /dev/null

if [ "$?" == "0" ]
then
  echo
  echo "It looks like \"rkqc\" is already in your \$PATH (possibly from a previous installation)."
  echo "Remove the old \"rkqc\" executable from your \$PATH, then source \"source_me\" one more time."
  echo
  echo
else
  export RKQC_PATH=$(pwd)/rkqc
  export PATH=$PATH:$RKQC_PATH
fi

back to top