From ffd28c4718fe826a7d850b7fed95cf937a44623d Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 10 Nov 2016 23:25:24 -0500 Subject: [PATCH] update make.check scripts --- make.check-mkl | 8 ++++---- make.check-openblas | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/make.check-mkl b/make.check-mkl index 6e0c2be1..4da487fb 100644 --- a/make.check-mkl +++ b/make.check-mkl @@ -1,10 +1,10 @@ # check for MKL directory and give user hint how to set it ifeq ($(MKLROOT),) - vars_sh := $(shell which icc 2>/dev/null | perl -pe 's|/bin.*/icc|/mkl/bin/mklvars.sh|') - vars_csh := $(shell which icc 2>/dev/null | perl -pe 's|/bin.*/icc|/mkl/bin/mklvars.csh|') + vars_sh := $(shell which icc 2>/dev/null | perl -pe 's|/bin.*/icc|/bin/compilervars.sh|') + vars_csh := $(shell which icc 2>/dev/null | perl -pe 's|/bin.*/icc|/bin/compilervars.csh|') ifeq ($(vars_sh),) - vars_sh := /opt/intel/composerxe/mkl/bin/mklvars.sh - vars_csh := /opt/intel/composerxe/mkl/bin/mklvars.csh + vars_sh := /opt/intel/composerxe/bin/compilervars.sh + vars_csh := /opt/intel/composerxe/bin/compilervars.csh endif $(error Set $$MKLROOT, preferably in your environment, e.g., run "source $(vars_sh) intel64" in ~/.bashrc, or "source $(vars_csh) intel64" in ~/.cshrc) endif diff --git a/make.check-openblas b/make.check-openblas index de53adca..beae3710 100644 --- a/make.check-openblas +++ b/make.check-openblas @@ -3,7 +3,7 @@ # this assumes LAPACK is part of OpenBLAS library. ifeq ($(OPENBLASDIR),) -$(error Set $$OPENBLASDIR, preferably in your environment, e.g., run "export OPENBLASDIR=/opt/openblas" in ~/.bashrc, or "setenv OPENBLASDIR /opt/atlas" in ~/.cshrc) +$(error Set $$OPENBLASDIR, preferably in your environment, e.g., run "export OPENBLASDIR=/opt/openblas" in ~/.bashrc, or "setenv OPENBLASDIR /opt/openblas" in ~/.cshrc) endif ifeq ($(wildcard $(OPENBLASDIR)),)