mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-04-13 09:30:06 +00:00
add icc, vimrc changes
This commit is contained in:
parent
4c7d42336b
commit
0bb5fbbfc3
1 changed files with 19 additions and 0 deletions
19
zsh/icc
Executable file
19
zsh/icc
Executable file
|
@ -0,0 +1,19 @@
|
|||
# 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
|
Loading…
Add table
Reference in a new issue