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

"Intel(R) C++ Compiler 9.0" command line prompt

dj_jacob
Beginner
437 Views

Excuse me for my poor english, because I speak french.

I know that "Intel C++ Compiler 9.0" doesn't integrate to "Microsoft Visual Studio 2005 Beta 2".

But I want to know if it is possible to work in command line prompt?

I say that because Intel compiler compiles successfully my project created with VS2005, but after that when it starts to link, it writes "icl: error: could not find 'Bin'".

Must I modify the file "icl.cfg":

# This Configuration file may be used for additional switches

# Enable Microsoft Visual C++* .NET 8.0 compatibility
-Qvc8

# Path to Microsoft Visual C++* .NET 8.0 linker
-Qlocation,link,"Bin"

# *Other names and brands may be claimed as the property of others

Thanks

0 Kudos
1 Reply
TimP
Honored Contributor III
437 Views
Yes, the -Qlocation line must be filled in with the full path to the folder including the Microsoft LINK program which matches your compiler. For example,
-Qlocation,link,"c:program filesMicrosoft Visual C++ toolkit 2003Bin"
The installation procedure does not accomplish this automatically, in cases of unsupported Microsoft tools versions.
0 Kudos
Reply