Use Intel C++ Compiler in Eclipse (CDT) under Win32

王朝c/c++·作者佚名  2006-01-31
窄屏简体版  字體: |||超大  

Introduction

Eclipse provides a very good C++ IDE, called CDT. Under Windows(2K,xp), if you want to compiler C++ programs using CDT, some configurations must be done unless you installed Cygwin or MingGW.

Here are some tips to use Intel C++ compiler in Eclipse (CDT).

What you need?

Intel C++ Compiler (I use version 8.1)

Microsoft Visual Studio or Visual Studio .Net (I use .Net 2003)

Follow these steps:

1. Install Intel C++ Compiler.

2. Modify User Environment Variable INLCUDE as, depending on your specific path

INCLUDE = C:\Program Files\Intel\CPP\Compiler80\Ia32\Include;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\ATLMFC\INCLUDE;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\INCLUDE;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\include\prerelease;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\include;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include3. Modify User Environment Variable LIB as, depending on your specific path

LIB=C:\Program Files\Intel\CPP\Compiler80\Ia32\Lib;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\ATLMFC\LIB;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\LIB;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib\prerelease;C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\lib;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\lib;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib

4. Open Eclipse(CDT), New->Standard Make C++ Project, name it say "test1".

5. Add a source file into the project, say "test1.cpp".

6. Add a file named "makefile", with content as the following:

all: test1.exe

test1.exe: test1.obj

icl test1.obj

test1.obj: test1.cpp

icl test1.cpp

clean:

del *.obj

del *.exe

7. Open Project -> Properties -> C/C++ make Project -> make Builder

Build Command -> disable "use default"

-> Fill in Build Command: nmake -f makefile CPP=icl.exe LINK32=xilink.exe

8. Now you can build your C++ project using Intel C++ Compiler.

Note:

1. Because I can not set LIB and INCLUDE Environment Variables in the makefile, I did it once in System/User

Environment Variables (My Computer->Properties->Advanced->Environment Variables->User Variables for xxx). You may set those in the makefiles if you can to save space for systems.

2. all and clean targets are needed by Eclipse. Of course you can set these targets to something else in Project->Properties->C/C++ Make Project->Make Builder.

3. Library issue: the Intel C++ Compiler provides libm.lib and libirc.lib. Microsoft provides libc.lib and oldnames.lib. Additional libraries must be provided if your programm needs them. Most of these libs are provided in Visual Studio (.Net),

that's why it needs installed on your computer.

If you want to link your program with alternate or additional libraries, neither Intel C++ Compiler nor Visual Studio (.Net) provides, specify them at the end of the command line. For example, to compile and link hello.c with mylib.lib, use the following command in makefile :

icl /Fehello.exe hello.cpp mylib.lib

4. Why use Eclipse for C++ Programming?

Simply because Eclipse+CDT is better. Of course that's just the personal favor.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航