Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.

problem with c++ instalation

mahdi109
Beginner
395 Views
Dear all,
i have a problem with ifort instalation,
i install BOTH intel fortran and intel c++ compilers.


when i typing "sudo /opt/intel/bin/link_install.sh -s" after installing for cheking,
in my terminal some statements is "not present" What I do? (i use SUSE Linux Enterprise Server 10 SP2 x86_64)

guilan@linux-kair:~> sudo /opt/intel/bin/link_install.sh -s
ICP12_REPORT()
INTEL_BIN_DIR=/opt/intel/bin (exists)
INTEL_COMPOSERXE_2011_DIR=/
opt/intel/composer_xe_2011_sp1 (exists)
INTEL_COMPOSERXE_2011_BIN_DIR=/opt/intel/composer_xe_2011_sp1/bin (exists)
INTEL_COMPOSERXE_DIR=/opt/intel/composerxe (exists)
INTEL_COMPOSERXE_BIN_SC=/opt/intel/composer_xe_2011_sp1/bin/sourcechecker (exists)
INTEL_COMPOSERXE_2011_PKG_BIN_DIR=/opt/intel/composer_xe_2011_sp1/pkg_bin (exists)
INTEL_COMPOSERXE_2011_LIB_DIR=/opt/intel/composer_xe_2011_sp1/lib (exists)
INTEL_COMPOSERXE_2011_INCLUDE_DIR=/opt/intel/composer_xe_2011_sp1/include (exists)
INTEL_COMPOSERXE_2011_MAN_DIR=/opt/intel/composer_xe_2011_sp1/man (exists)
INTEL_COMPOSERXE_2011_TBB_DIR=/opt/intel/composer_xe_2011_sp1/tbb (not present)
INTEL_COMPOSERXE_2011_TBB_DIR=/opt/intel/composer_xe_2011_sp1/arbb (not present)
INTEL_COMPOSERXE_2011_MKL_DIR=/opt/intel/composer_xe_2011_sp1/mkl (exists)
INTEL_COMPOSERXE_2011_IPP_DIR=/opt/intel/composer_xe_2011_sp1/ipp (exists)
INTEL_COMPOSERXE_2011_DEBUGGER_DIR=/opt/intel/composer_xe_2011_sp1/debugger (exists)
INTEL_COMPOSERXE_2011_ECLIPSE_SUPPORT_DIR=/opt/intel/composer_xe_2011_sp1/eclipse_support (exists)
INTEL_COMPOSERXE_2011_DOCUMENTATION_DIR=/opt/intel/composer_xe_2011_sp1/Documentation (exists)
INTEL_COMPOSERXE_2011_SAMPLES_DIR=/opt/intel/composer_xe_2011_sp1/Samples (exists)
INTEL_LIB_DIR=/opt/intel/lib (exists)
INTEL_INCLUDE_DIR=/opt/intel/include (exists)
INTEL_MAN_DIR=/opt/intel/man (exists)
INTEL_IPP_DIR=/opt/intel/ipp (not present)
INTEL_IPP_DIR=/opt/intel/arbb (not present)
INTEL_MKL_DIR=/opt/intel/mkl (exists)
INTEL_TBB_DIR=/opt/intel/tbb (exists)
guilan@linux-kair:~>


thank you,
0 Kudos
4 Replies
Om_S_Intel
Employee
395 Views

By default tbb and ipp are installed when installing Intel C++ Composer XE 2011 sp1. The compiler will work if you use the following command:

$source /opt/intel/bin/compilervars.sh intel64

The Arbb is not yet part of the Intel compiler.

Om
Intel compiler support

0 Kudos
mahdi109
Beginner
395 Views
thank you,
i do that,
but i have that error, now.

also i do this :

$ source /opt/intel/bin/compilervars.csh intel64

it display this error:

bash: /opt/intel/bin/compilervars.csh intel64: line 36: syntax error: unexpected end of file


do you think this error is no mather??? what should i do?

0 Kudos
Om_S_Intel
Employee
395 Views
It looks that the compiler is not installed properly. Could you please uninstall the compiler and reinstall it?
0 Kudos
TimP
Honored Contributor III
395 Views
If you're running bash, you need the bash compatible version of that script (.sh, not .csh).
0 Kudos
Reply