Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.
2466 Discussions

tbb20_014oss build examples crash MSVC 8.0 compiler

lto
Beginner
448 Views

Hello,

I downloaded thetbb20_014oss source. Using Visual studio 2005 professional commandwindowand gnu Make from Cygwin distribution, the library and dll seem to build ok; However, the following examples crashed the ms c compiler during the release and debug build processes:

Count_strings.exe, Primes.exe, Parallel_PreOrder.exe, Text_filter.exe, Tree_sum.exe, and Fibonacci.exe.

Long

0 Kudos
3 Replies
Anton_M_Intel
Employee
448 Views
I wonder ifCygwin's "make" can compile any of examples. This "make" is not fully supported by TBB makefiles. There are many issues with paths and especially with the PATH environment variable. Cygwin looks mostly like separate platform than just a toolset for Windows. It rather requires implementation ofbuild/cygwin.inc and build/cygwin.cl.inc files because settings of build/windows.inc don't fit into Cygwin's rules.
0 Kudos
Anton_M_Intel
Employee
448 Views
You could alsoworkaround this by loading environment settingsfrom tbbvars.* scripts and using of makefile foreachexample directly.
0 Kudos
lto
Beginner
448 Views

Thanks. I downloaded the gnu-make for win32 mentioned in the other thread of this forum, and it works great.

Regards,

Long

0 Kudos
Reply