- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
macOS zsh or other zsh users: compilervars.sh currently does not support zsh.
Simplest workaround is:
bash -c 'source /opt/intel/bin/compilervars.sh intel64 ; exec zsh'
Which will end up with a new zsh instance, so if you exit from the new instance you will lose the env vars.
oneAPI: setvars.sh or compiler/latest/vars.sh and other shells:
Same method as above:
# oneAPI setvars.sh use in zsh
bash -c 'source /opt/intel/oneapi/setvars.sh ; exec zsh'
# oneAPI compiler vars.sh use in zsh
bash -c 'source /opt/intel/oneapi/compiler/latest/env/vars.sh ; exec zsh'
# oneAPI setvars.sh use in csh/tcsh
bash -c 'source /opt/intel/oneapi/setvars.sh ; exec csh'
# oneAPI compiler vars.sh use in csh/tcsh
bash -c 'source /opt/intel/oneapi/compiler/latest/env/vars.sh ; exec csh'
Startup scripts
WARNING - do not put these in your shell "rc" dot file, for example, ~/.cshrc. Your shell RC is invoked with each new shell - and notice "exec csh" in this workaround - this will start a subshell, invoke .cshrc, which execs a new shell, the new shell runs .cshrc and you get into an infinite loop.
HOWEVER, Create your Own 'setvars.csh' or zsh or other shell using 'env2'. Here is an example for tcsh:
You can create your own setvars.csh
Read this article and get env2
Then it's simply:
perl ./env2 -from bash -to tcsh /opt/intel/oneapi/setvars.sh >> setvars.csh
I'd edit the output setvars.csh and add line 1 shell
#!/bin/tcsh
Then 'chmod +x setvars.csh' and maybe add to /usr/local/bin, or /opt/intel/oneapi or your own ~/bin and source it from your startup dot file.
One-time invocation at login:
For zsh, you can put the workaround(s) in your ~/.zlogin file which is only executed once per login. See this information on startup scripts for zsh. Note that with this method, to exit your login you will need to enter the 'exit' command TWICE to terminate your login.
Link Copied


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