Creating Performance Libraries Using Intel Compiler

I installed Intel Parallel Studio XE 2013 in addition to Visual Studio 2012 on a 32-bit Windows 7 machine. I tried to create Boost 1.53 with the Intel compiler by following the instructions in the link . I have this error:

. \ boost / config / select_stdlib_config.hpp (18): catastrophic error: cannot open source file "cstddef"

Does anyone else have the same problem? I would welcome any advice on linking the standard ICC libraries to speed up the build process. Thanks in advance.

+4
source share
3 answers

, , . , :

  • intel-win.jam [boost-source-directory]\tools\build\v2\tools , .

  • project-config.jam intel-user-config.jam, , :

b2 --user-config = intel-user-config.jam --toolset = intel

, Intel ICC intel-user-config.jam.

+6

"./bootstrap.sh --with-toolset = intel-linux" "b2 install" intel-linux.compile.++ (boost_1_64_0).

+1

, Intel Compiler 17.0 Update 5 Visual Studio 17.

You need to change a couple of lines in the tools / build / src / tools / intel -win.jam

Please note that the build continues with a series of warnings.

0
source

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


All Articles