0

我正在测试不同的 Eclipse 配置,所有这些配置都应该使用相同的 JVM(我有很多)、堆大小等等来执行……将常规设置应用于所有这些 Eclipse 安装的最简单方法是什么?我在eclipse.ini文档中读到:

Eclipse 启动由 $ECLIPSE_HOME/eclipse.ini 中的选项控制。如果未定义 $ECLIPSE_HOME,则使用 E​​clipse 安装目录中的默认 eclipse.ini(如果是 Mac,则为 Eclipse.app/Contents/MacOS 目录)。

所以我想到了创建一个配置文件: ~/ECLIPSE_CONFIG/eclipse.ini

然后指向ECLIPSE_HOME~/ECLIPSE_CONFIG但不确定这是否是个好主意(不确定是否ECLIPSE_HOME应该指向完整的 Eclipse 安装)。

感谢您的反馈。

4

1 回答 1

1

我认为最好的方法是使用命令行参数:

--launcher.ini <location> (Executable)
the location of the product .ini file to use.
If not specified the executable will look for a file beside the launcher with 
the same name and the extension .ini.  (ie eclipse.exe looks for eclipse.ini, 
product.exe looks for product.ini)

参考:Eclipse 运行时选项

于 2013-01-30T11:43:56.807 回答