Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Use C++ other than GNU compiler


Thanks, Tanya-Marise.
Tanya W.


This doc will be available on October 14 at http://dev.eclipse.org/viewcvs/index.cgi/~checkout~/cdt-home/user/Reference%20Documents/build%20extensibility%20reference.html?cvsroot=Tools_Project

There is a link in the CDT User guide in Concepts > Build.

Hope this answers your question. If not, please don't hesitate to let me know if you need more information.

Tanya-Marise de Sousa          
Information Development
Rational Software
IBM Software Group
613.591.7931




"RERA" <rajaram@xxxxxxxxx>

10/01/2003 10:18 AM

       
        To:        <cdt-dev@xxxxxxxxxxx>
        cc:        Tanya Wolff/Ottawa/IBM@IBMCA, <subhro_c@xxxxxxxxxxxxxx>
        Subject:        Re: [cdt-dev] Use C++ other than GNU compiler



Hi
 
Is there any Design doc or User manual for this kind of issues ? If s pls povide us
 
RERA
 
----- Original Message -----
From: Tanya Wolff
To: cdt-dev@xxxxxxxxxxx
Sent: Wednesday, October 01, 2003 7:06 PM
Subject: Re: [cdt-dev] Use C++ other than GNU compiler


For a standard make project, you can specify anything you want in your makefile directly. If you're using cdt 1.2 you can use the managed make feature's plugin.xml to modify the build commands. It's in plugins/org.eclipse.cdt.managedbuilder.ui/plugin.xml. Look for your platform's <target name="Cygwin | Solaris | Linux" and you'll see the tools for that target. Note that you can only have one compiler per subset of sources (eg tool1 for sources = c, tool2 for source = cpp, cc) so that sources don't overlap different tools. The tool "command" attribute is where you specify your compiler/linker. One more thing: the target tool command=g++ is specified as the compiler tool in the parent platform target (isAbstract=true), and also as the linker tool for the type of output (library/executable) in the child target (isAbstract=false) inheriting the parent's tools.


Hope that helps,

Tanya



"Subhrojyoti" <subhro_c@xxxxxxxxxxxxxx>
Sent by: cdt-dev-admin@xxxxxxxxxxx

10/01/2003 07:57 AM
Please respond to cdt-dev

       
       To:        <cdt-dev@xxxxxxxxxxx>

       cc:        

       Subject:        [cdt-dev] Use C++ other than GNU compiler




Hi, can I use any other C++ compiler other than GNU C++ compiler to run my
C++ program thru Eclipse. Pls. tell me how to configure, so that I can see
the results in the build console of eclipse

-Subhro



_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/cdt-dev





Back to the top