Hi,
I am new to Visual Studio and Cilk/Parallel Programming. I have a problem with /clr & Intel compiler. Am using "using namespace std; using namespace system;" etc with /clr option which is fine with the Visual Studio C++ compiler but when I try to use the Intel C++ Compiler XE 12.1 there is no option for this setting and I subsequently get an error that I must enable the /clr option.
When I try to use the library with the VS C++ Compiler I get an error that no such file or directory exists. Is there anyway to make them both friendly?
.
I just need to spawn an independent function. Which takes a number of files and does some computation on them one by one. This process is serial and no other function will be using the variables at that time except this very function or it's spawned siblings, if there could be.


