- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Our company has a product that integrates with Visual Studio 2005 and 2008. One thing we do when we are installed is to make a copy of the original cl.exe and replace it with our own compiler front end. Our software preprocesses the source, then passes it along to the real Microsoft compiler.
A couple of our customers are using version 10 of the Intel compiler. They have complained that after our tools are installed the Intel compiler doesn't work any more, not even from the command line. They both see this warning:
icl: warning #10114: Microsoft Visual C++ not found in path
and the compile continues but fails, reporting syntax errors.
I have gotten Parallel Studio 2011 and installed it. I can almost reproduce the problems our customers see, but I get a hard error:
icl: error #10114: Microsoft Visual C++ not found in path
and the compile stops.
We are a small company and we are not in the partner program, but I'm hoping that someone can tell us how we can coexist with your compiler. We have tried using the proper /Qvc switch, but that makes no difference.
Thanks,
Rush
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I will move this thread to the Intel C++ Compiler Forum. One of our support engineers there will be able to give you more detailed information about what the compiler needs to function.
Best regards,
==
Aubrey W.
Intel Software Network Support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have you tryedleaving the original cl.exe unchanged and inserting into the folder where cl.exe lives a cl.bat or cl.com that runs your program when command line
cl a b c d...
issued?
Or plan B, add to PATH (in front of MS's path to VS) a path to your folder containing your cl.exe?
(your cl.exe does its preprocessing, then uses fully qualified path to the real CL.EXE)
Jim Dempsey
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Intel compiler changes only project files and expect Microsot development environment without changes. Itel compiler drivers replaceMicrosoft compiler as and when required.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can you tell me what it is looking for about cl.exe? Or can you point me to something that will tell me how we can implement a compiler front end for Visual Studio that won't cause your compiler to fail? That would really help.
- Rush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Clever ideas, but neither of them work. When I put the original Cl.exe back in place it gets used by Visual Studio, even if I have put the path to our version first in the path, or if I put a cl.bat in as a sibling of the real cl.exe.
- Rush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
have a look there:http://software.intel.com/en-us/forums/showthread.php?t=71016&o=d&s=lr
It is not necessary to use VM's.
Hoping this can help you.
heinz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The Intel compiler driver uses cl in two ways. One is just to query the version number information and the other is to satisfy Microsoft functionality thatwe cannot support in our compiler.
If the cl that is being called does not return expected version information, the error message in question will be output. I would assume that the wrapper you areusing does not return the version information that is expected. If you could build your wrapper so it returns the version information about the cl you are calling, that would be ideal. We use the standard Windows API GetFileVersionInfo to grab that information from cl.
--mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I doubt that the wrapper woud work. This is because Microsoft compiler is used to satisfy Microsoft functionality that we cannot support inIntel compiler.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
--mark

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page