sir
i have intel parallel_studio_xe_2018_update1_cluster_edition installed in my laptop having ubuntu 16.04 OS. i need to work with fortran compiler.
I am not sure if i am giving correct path to set up environment. i have given in .bashrc file
PATH="/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/intel64:$PATH"
export PATH
LD_LIBRARY_PATH="/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/compiler/lib/intel64:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH
2 in same .bashrc file if i mention
/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/ifortvars.sh intel64
i get this message if i open a terminal.....
ERROR: architecture is not defined. Accepted values: ia32, intel64
Syntax: ippvars.sh <arch> [-arch <arch>] [-platform <platform>]
<arch> must be one of the following:
ia32 : Set up for IA-32 target.
intel64 : Set up for Intel(R)64 target.
<platform> must be of the following:
linux : Set to Linux target.
mac : Set to Mac target.
android : Set to Android target.
If the arguments to the sourced script are ignored (consult docs
for your shell) the alternative way to specify target is environment
variables COMPILERVARS_ARCHITECTURE to pass <arch> to the script
and COMPILERVARS_PLATFORM to pass <platform>
/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/ifortvars.sh: 42: [: =: unexpected operator
/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/ifortvars.sh: 50: [: =: unexpected operator
/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/ifortvars.sh: 159: [: =: unexpected operator
/opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/ifortvars.sh: 171: [: =: unexpected operator
this message gets removed if i write like this
source /opt/intel/2018/compilers_and_libraries_2018.1.163/linux/bin/ifortvars.sh intel64
3 what is ia32_lin, intel64_lin_gfx and intel64_lin in compilers_and_libraries_2018/linux/lib
4 i have successfully installed ifort and my sample file are running correctly.
the documentation didnt help me. pl clarify issues point by point
ab