How to install a simple Intel C / C ++ compiler on a 64-bit Ubuntu system?

I need to compile c / C ++ code by running build.sh file. The program manual (which I want to run) says that it needs to be compiled by the Intel compiler. After searching the net, I came across information on what to do. Some people said that we must first install the 32-bit libraries: https://help.ubuntu.com/community/InstallingCompilers

Others said that we must, firstly, of any installation change some things: http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-with-ubuntu

On the other hand, the Intel page displays many suites: http://software.intel.com/en-us/c-compilers

while the only thing I want is just an Intel C / C ++ compiler.

Can anyone be so gentle as to give me instructions on how to install the Intel compiler on a 64-bit Ubuntu system?

Thanks in advance.

+6
source share
3 answers

for non-commercial use you can download it from Intel

EDIT:

Intel® System Studio 2016 contains the C ++ compiler.

+2
source

I tried a 32 bit version that is irrelevant. I don’t think it is different from the 32-bit installation-related base materials. Open this one and go to the compilers and libraries section and you will see the C / C ++ compiler. After downloading, read the files in the doc folder; it includes how to set / use / get the key for the compiler, etc.

0
source

You need to install the gcc compiler through apt-get install gcc Example here: Install GCC

-17
source

Source: https://habr.com/ru/post/957049/


All Articles