- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When the installation of Intel MKL for Mac OS* X is complete, set the INCLUDE, MKLROOT, DYLD_LIBRARY_PATH, MANPATH, LIBRARY_PATH, CPATH, and FPATH environment variables in the command shell using one of the script files in the tools/environment directory. Choose the script corresponding to your system architecture and command shell as explained in Table 2-1:
export MKLROOT="/opt/intel/Compiler/11.1/089/Frameworks/mkl"
if [ -z "${INCLUDE}" ]
then
export INCLUDE="${MKLROOT}/Headers"
else
export INCLUDE="${MKLROOT}/Headers:$INCLUDE"
fi
if [ -z "${DYLD_LIBRARY_PATH}" ]
then
export DYLD_LIBRARY_PATH="${MKLROOT}/lib/em64t"
else
export DYLD_LIBRARY_PATH="${MKLROOT}/lib/em64t:$DYLD_LIBRARY_PATH"
fi
if [ -z "${MANPATH}" ]
then
export MANPATH="${MKLROOT}/man/en_US:$(manpath)"
else
export MANPATH="${MKLROOT}/man/en_US:$MANPATH"
fi
if [ -z "${LIBRARY_PATH}" ]
then
export LIBRARY_PATH="${MKLROOT}/lib/em64t"
else
export LIBRARY_PATH="${MKLROOT}/lib/em64t:$LIBRARY_PATH"
fi
if [ -z "${CPATH}" ]
then
export CPATH="${MKLROOT}/include"
else
export CPATH="${MKLROOT}/include:$CPATH"
fi
if [ -z "${FPATH}" ]
then
export FPATH="${MKLROOT}/include"
else
export FPATH="${MKLROOT}/include:$FPATH"
fi
if [ -z "${NLSPATH}" ]
then
export NLSPATH="${MKLROOT}/lib/em64t/locale/%l_%t/%N"
else
export NLSPATH="${MKLROOT}/lib/em64t/locale/%l_%t/%N:$NLSPATH"
fi
Have a 64-bit processor and running Snow Leo, ver. 10.6.4).
Thanks!
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You need just select needed for you script in order to sourceit in the command shell.
All MKL-related env-variables will be set.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page