Intel C++
zh-CN:Intel C++ Template:Article summary start Template:Article summary text Template:Article summary heading Template:Article summary wiki Template:Article summary wiki Template:Article summary wiki Template:Article summary end
Contents
Before You Begin
Setup and Installation
intel-parallel-studio-xeAUR are available in the AUR. To build the package, one needs a license file which is free for personal and for non-commercial use. The requisite license file is emailed to users upon [registration] and should be copied into the $startdir prior to running makepkg. The current PKGBUILD assembles 7 or 8 packages:
- intel-compiler-base - Intel C/C++ compiler and base libs
- intel-fortran-compiler - Intel fortran compiler and base libs (only Parallel Studio XE)
- intel-openmp - Intel OpenMP Library
- intel-idb- Intel C/C++ debugger
- intel-ipp - Intel Integrated Performance Primitives
- intel-mkl - Intel Math Kernel Library (Intel® MKL)
- intel-sourcechecker - Intel Source Checker
- intel-tbb - Intel Threading Building Blocks (TBB)
Using icc with makepkg
There is currently no official guide to using icc with makepkg. This section is meant to capture various methods suggested by users. Please make a new sub-section with your suggested method titled as such.
Method 1
Modify /etc/makepkg.conf
inserting the following code under the existing line defining CXXFLAGS to enable makepkg to use icc. No special switches are needed when calling makepkg to build.
_CC=icc if [ $_CC = "icc" ]; then export CFLAGS="-fast -pipe -gcc" export CXXFLAGS="${CFLAGS}" export CC="icc" export CXX="icpc" export HOSTCC="icc" fi
To test if your package has been really compiled with icc:
- Type the command ldd [your_app] | grep intel If the application is linked to a shared object located in the directory /opt/intel/lib/ it's mind that has been complied with icc.
- Another method is to observe the build output and watch if it's using the icc or icpc command.
- The last method is to watch if the warnings are in icc style or not.
icc CFLAGS
In general, icc supports many of the same CFLAGS gcc supports and is also pretty tolerant to gcc flags it cannot use. In most cases it will happily ignore the flag warning the user and moving on. For an exhaustive list and explanation of available compiler flags, consult the icc manpage or better yet by invoking the compiler with the help flag:
icc --help
-xX
Use to generate specialized code to run exclusively on processors supporting it. If unsure which option to use, simply inspect the flags section of /proc/cpuinfo
. In the example below, SSE4.1 would be the correct selection:
$ cat /proc/cpuinfo | grep -m 1 flags flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good nopl aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 lahf_lm dts tpr_shadow vnmi flexpriority
- -xHost
- -xSSE2
- -xSSE3
- -xSSSE3
- -xSSE4.1
- -xSSE4.2
- -xAVX
- -xCORE-AVX-I
- -xSSSE3_ATOM
-Ox
Same behavior as gcc. x is one of the following options:
- 0 - disables optimizations
- 1 - optimize for maximum speed, but disable some optimizations which increase code size for a small speed benefit
- 2 - optimize for maximum speed (DEFAULT)
- 3 - optimize for maximum speed and enable more aggressive optimizations that may not improve performance on some programs (recommended for math intensive looping programs)
-w
Similar to the gcc:
- -w - disable all warnings (recommended for the package compilation)
- -Wbrief - print brief one-line diagnostics
- -Wall - enable all warnings
- -Werror - force warnings to be reported as errors
Software compiled with Intel C / C++
In the following table we report a list of packages from the officials repository that we have tried to compile with the intel C/C++ compiler. The compilation should be done by using the PKGBUILD from ABS.
Application | Compile | Comments |
---|---|---|
Gimp 2.8 | OK | Works with the Method 1 |
MySql | OK | Works with the Method 1 |
SqlLite | OK | Works with the Method 1 |
xaos | OK | Works with the Method 1 |
VLC | Unsuccessful | There's some problem with the compiler flags |
mplayer | Fails | It don't recognize the Intel compiler |
python-numpy | OK | We must edit the PKGBUILD. python-numpy-mklAUR |
python-scipy | OK | We must edit the PKGBUILD. python-scipy-mklAUR |
Legend:
OK | The compilation with ICC works! |
OK | The compilation works but is needed an editing of the PKGBUILD |
Unsuccessful | The compilation may works, but there are some compilations errors. |
Not recommended | The compilation works, but is not recommended |
Fail | It's impossible to compile the PKG with ICC. |