Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] How to change scannerInfoProvider#command (Was:problems with ScannerInfoprovider)

Can anybody tell me how I am meant to change the command used in the ScannerInfoProvider? The default command is "gcc" but my toolchains gcc is called (for example) "my-own-gcc".

I have tried the extension point
'org.eclipse.cdt.make.core.ScannerConfigurationDiscoveryProfile'
basically, copying the info from default, but none of classes in that package are accessible to my plugin.

Thanks
--
Derek


Wieant Nielander wrote:
I have double checked, and my plugin *does* have a dependency on org.eclipse.cdt.managedbuilder.core.

Any other ideas?

Yip, the problem might be that the:
org.eclipse.cdt.managedbuilder.internal.scannerconfig package is not exported from the 'org.eclipse.cdt.managedbuilder.core'
plugin. You could check if this is the case by adding this package to
the 'Export-Package' section in the Manifest.mf file of that plugin
(or add it in the Runtime tab of the manifest editor).

Regards,
  Wieant




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



Back to the top