使用 --launcher.ini 选项独立运行 Equinox

发布于 2024-11-14 20:21:27 字数 767 浏览 3 评论 0原文

我正在尝试使用自定义 eclipse.ini 文件在“无头”模式下运行 Equinox 和 antRunner。 “--launcher.ini”选项应按照以下方式工作: http://wiki.eclipse.org/Equinox_Launcher

但是,当我运行以下命令行时:

java.exe 
  -cp "C:\Program Files\eclipse\plugins\org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar" \
  org.eclipse.core.launcher.Main \
  --launcher.ini "C:\ini\my_eclipse.ini" \
  -application org.eclipse.ant.core.antRunner \
  -console \
  -data "c:\my_workspace" \
  -file "c:\my_buildfiles\build.xml" \

我收到以下错误消息:

osgi> Unknown argument: --launcher.ini 
Unknown target: C:\ini\my_eclipse.ini
Buildfile: .\build.xml

如何在从命令行启动 Eclipse 时加载自定义 eclipse.ini?

I'm trying to run Equinox and antRunner in "headless" mode with a custom eclipse.ini file. The "--launcher.ini" option should work according to:
http://wiki.eclipse.org/Equinox_Launcher .

However, when I run the following command line:

java.exe 
  -cp "C:\Program Files\eclipse\plugins\org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar" \
  org.eclipse.core.launcher.Main \
  --launcher.ini "C:\ini\my_eclipse.ini" \
  -application org.eclipse.ant.core.antRunner \
  -console \
  -data "c:\my_workspace" \
  -file "c:\my_buildfiles\build.xml" \

I get the following error message:

osgi> Unknown argument: --launcher.ini 
Unknown target: C:\ini\my_eclipse.ini
Buildfile: .\build.xml

How can I load a custom eclipse.ini when starting Eclipse with Equinox from the command line?

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

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

发布评论

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

评论(1

多情出卖 2024-11-21 20:21:27

问题是您尝试仅使用启动器的 Java 部分来启动,而 wiki 页面描述了启动器本机部分的参数(eclipse.exe 或您想要的任何名称)。

launcher.ini 描述了如何设置 Java 进程(内存大小、vm 位置、vm 参数等)。因此,将 launcher.ini 的引用传递给本机启动器是有意义的。

The problem is that you are trying to launch using only the Java part of the launcher, while the wiki page describes the arguments for the native part of the launcher (eclipse.exe or any name you want).

The launcher.ini describes how to setup the Java process (memory size, vm location, arguments to vm, etc.). So, it makes sense that you pass refernece to the launcher.ini to the native launcher.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文