从源代码构建 Eclipse

发布于 2024-07-09 03:18:58 字数 214 浏览 7 评论 0原文

我一直在尝试构建从 CVS 获取的 eclipse,但找不到从哪里开始?

通常它很简单,制作 X,构建 X,但我发现这并不那么容易。 有数百个插件,我似乎无法找到在哪里构建它们并拥有 eclipse IDE。

有任何教程可以引导我完成整个过程吗? 我似乎找不到一个。

此外,任何将其自动化并使其编程化的方法也将是巨大的,但我现在会满足于任何事情。

I have been trying to build eclipse fetched from CVS, but cannot find where to begin?

Usually it has been simple, make X, build X, but I am not finding it that easy with this. There are hundreds of plugins, and I cannot seem to find where to build them all and have the eclipse IDE.

Is there any tutorial that will step me through the process? I cannot seem to find one.

Also, any way to automate this and make it programmatic would be huge as well, but I would settle for anything right now.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风挽心 2024-07-16 03:18:58

我相信主要文档将是 Building (来自 wiki eclipse 网站) ,协助一些 PDE-build 指令。

Eclipse 本身是使用随插件开发环境附带的 PDE 构建基础架构构建的。 Ant 用于运行构建,并具有足够的插件点,您可以在其中执行自定义任务,例如代码检测。

现在,关于 Eclipse 本身,releng 项目 是负责实际构建的人:该链接为您提供了一些有关如何继续的进一步指示,从安装 releng 插件开始。

这不是一个真正的精确配方,而是一个很好的起点。

您对该博客进行了进一步讨论,包括使用ant4eclipse
Pluginbuilder 也可以被称为一种工具,可用于促进某些 Eclipse 插件的构建。


12 年后,即 2020 年 8 月,özkan pakdil 提出:

"如何在本地构建 Eclipse在 Windows 10 中"

基于:

git clone -b master --recursive git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git e
export MAVEN_OPTS="-Xmx2048m -Declipse.p2.mirrors=false"
cd e
mvn verify -DskipTests

I believe the main document would be Building (from the wiki eclipse website), assisted with some PDE-build directives.

Eclipse itself is built using the PDE build infrastructure that it ships with the Plug-in Development Environment. Ant is used to run the build, with adequate plug-points where in you can perform custom tasks such as instrumentation of code.

Now, regarding eclipse itself, the releng project is the one in charge of the actual building: that link gives you some further indications on how to proceed, beginning with the installation of the releng plugin.

It is not an actual precise recipe, but a good starting point.

You have further discussions on that blog, including the use of ant4eclipse.
Pluginbuilder can also be mentioned as a tool which may be used to facilitate the build of some Eclipse plugins.


12 years later, Aug. 2020, özkan pakdil proposes:

"How to build eclipse on locally in windows 10"

Based on:

git clone -b master --recursive git://git.eclipse.org/gitroot/platform/eclipse.platform.releng.aggregator.git e
export MAVEN_OPTS="-Xmx2048m -Declipse.p2.mirrors=false"
cd e
mvn verify -DskipTests
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文