Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] Managed Build System Questions

Hi Hugh,

Sorry for the delayed response...

Re #1:
The gnu tool-chain definition uses the CDT scanner discovery profile
mechanism to calculate the gcc built-in includes and pre-processor
definitions.
The scanner discovery profile is an extension point
(id="org.eclipse.cdt.make.core.ScannerConfigurationDiscoveryProfile")
defined in CDT that an ISV can contribute to in order to supply the
mechanism of automatic calculation of the compiler built-ins.

The MBS tool-chain definition can contain the
scannerConfigDiscoveryProfileId attribute that holds the id the
ScannerConfigurationDiscoveryProfile extension that should be used for
that tool-chain.

You could either remove the "scannerConfigDiscoveryProfileId" attribute
for your gnu tool-chain if you do not need this functionality, or
implement the "ScannerConfigurationDiscoveryProfile" extension suitable
for your compiler, and set the "scannerConfigDiscoveryProfileId"
attribute of your tool-chain to the id of that extension.

For more info on how to contribute to the
ScannerConfigurationDiscoveryProfile extension-point, see the
description of that extension-point and its implementation for the Gnu
tool-chain -
"org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile".

Regards,
Mikhail



-----Original Message-----
From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx]
On Behalf Of Hugh O'Keeffe
Sent: Tuesday, October 25, 2005 12:35 PM
To: cdt-dev@xxxxxxxxxxx
Subject: [cdt-dev] Managed Build System Questions

I've read the Extensibility document and am currently working on
developing
my own plugin based on org.eclipse.cdt.managedbuilder.gnu.ui_3.0.0. The
plugin is for GNU tools for an embedded target; it has different
executable
names and option switches to the existing CDT supported GNU tools. Some
questions:

1. The Managed Build System automatically adds header files to a new
"Executable GNU" project when I create it using the "Managed C Project"
Wizard. It seems to automatically detect mingw or cygwin headers on my
machine and include them. If I rename the mingw/cygwin directories they
are
not found and not included. Where does this functionality reside ? (I
want
to turn it off as these headers are not relevant for my GNU toolchain).

2. I want to extend the "Managed C Project" Wizard to add a single file
to
all newly created projects (a GNU linker control file for use with the
"-T"
switch). Any ideas as to how to easily do this ?


Thanks in advance,

Hugh,,


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


Back to the top