Warning, file /education/labplot/compile-pgi was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #!/bin/bash 0002 0003 BUILDDIR=build-pgi 0004 0005 if [ ! -d $BUILDDIR ]; then 0006 mkdir -p $BUILDDIR 0007 fi 0008 0009 cd $BUILDDIR 0010 0011 export CC=pgcc 0012 export CXX=pgc++ 0013 0014 # Debug 0015 cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr && make -k -j 4