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

Intel C++ Prof. Compiler & Threading Building Blocks

E6600
Beginner
313 Views
Is there native support of TBB in ICC 10.1 Prof. Edition?
i use
icl /MD test.cpp tbb.lib command but always get catastrofic errors.
0 Kudos
3 Replies
JenniferJ
Moderator
313 Views

could be the env not seting up right. Because I tried the icl 10.1.020 and TBB 2.0.017, it works fine for me with VS2005.

Here is what you should do:

. open abuild env from Intel C++ Compiler menu : start -> all programs -> Intel software tools->Intel C++ Compiler->Build env for IA32.....

. from the cmd window, call "C:Program FilesIntelTBB2.0ia32vc8in bbvars.bat"

. compile your test again.

0 Kudos
E6600
Beginner
313 Views
madjljiang:

could be the env not seting up right. Because I tried the icl 10.1.020 and TBB 2.0.017, it works fine for me with VS2005.

Here is what you should do:

. open abuild env from Intel C++ Compiler menu : start -> all programs -> Intel software tools->Intel C++ Compiler->Build env for IA32.....

. from the cmd window, call "C:Program FilesIntelTBB2.0ia32vc8in bbvars.bat"

. compile your test again.

did what you mentioned but now i get an error: "MSVCP80.dll" is missing...
0 Kudos
JenniferJ
Moderator
313 Views

Add "C:Program FilesMicrosoft Visual Studio 8VC edistx86Microsoft.VC80.CRT" to your path like:

>> set path=C:Program FilesMicrosoft Visual Studio 8VC edistx86Microsoft.VC80.CRT;%path%

Then run the program again.

0 Kudos
Reply