Warning, file /education/labplot/compile-intel 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-intel 0004 0005 if [ ! -d $BUILDDIR ]; then 0006 mkdir -p $BUILDDIR 0007 fi 0008 0009 cd $BUILDDIR 0010 0011 export CC=icc 0012 export CXX=icpc 0013 0014 cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr && make -j 4