mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-31 13:58:32 +00:00
19 lines
336 B
Text
Executable file
19 lines
336 B
Text
Executable file
# are we linux?
|
|
case `uname -s` in
|
|
Linux)
|
|
local iccvars_path=/opt/intel/Compiler/11.0/074/bin/iccvars.sh
|
|
if [[ -x $iccvars_path ]] ; then
|
|
case `uname -m` in
|
|
x86_64)
|
|
source $iccvars_path intel64
|
|
;;
|
|
i*86)
|
|
source $iccvars_path ia32
|
|
;;
|
|
ia64)
|
|
source $iccvars_path ia64
|
|
;;
|
|
esac
|
|
fi
|
|
;;
|
|
esac
|