0

我正在我的 Mac 上的 Eclipse 中为 Nordic nrf51422 SoC 设置嵌入式开发系统。Nordic 为这些芯片提供了一个基于 c 的 SDK,以及一个密切相关的部分,即 nrf51822 在单个封装中。我有一个插件,可以从这里为 eclipse 上的 '822 部分配置正确的开发环境。

我想修改此插件以添加 '422; 的项目配置设置;由于实际的 SDK 包含这部分的库,我相信所有必要的只是在插件的 xml 文件中添加一些东西并稍微弄乱链接器脚本。

我相信我需要做的是下载插件目录,然后 File->Import->Plug-ins and Fragments 将下载的目录导入为项目,然后进行更改,重新导出,并放入.jar吐到我的 dropins 文件夹中。

但是,当我尝试执行此操作时,导出器的“可用插件和片段”字段未填充。我是一个完整的 Eclipse 新手,对整个系统的工作原理没有很好的理解,所以任何建议都将不胜感激!我在项目首选项中进行了一些点击,一切似乎都表明这确实是一个插件项目,但我对该工具不够熟悉,无法知道我正在寻找正确的地方......

谢谢!

4

1 回答 1

0

Looking at the source of the Plugin Export wizard page it specifically excludes from the list plugins which were imported as 'Binary projects' and 'Binary projects with linked content'.

I assume this means there is something in this format of import which the export cannot deal with So you probably need the source code of the plugin to be able to proceed.

(Source of export page is org.eclipse.pde.internal.ui.wizards.exports.PluginExportWizardPage)

于 2014-10-08T14:59:39.393 回答