如何将 Eclipse 配置为“构建前自动保存”默认情况下?
我正在使用 Eclipse (Indigo) 开发 C 项目。当我在新工作区中创建新的 C 项目时,默认情况下未设置“构建前自动保存”选项。这非常令人沮丧,因为自动保存通常是我使用的其他 IDE 中的默认行为。我更改了一些代码,进行了构建,但似乎一切都没有按预期进行 - 直到我记得该选项未设置...
有没有办法让 Eclipse 使用此选项集打开一个新工作区?
I am working with Eclipse (Indigo) to develop C projects. When I create a new C project in a new workspace, by default the "Autosave before build" option is not set. This is extremely frustrating, as autosave is usually the default behavior in other IDE's I worked on. I change some code, build and nothing seems to go as expected - until I remember that the option is not set...
Is there a way to make Eclipse open a new workspace with this option set?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果
窗口->首选项->一般->工作区,您可以在其中检查“构建前自动保存”+“自动构建”
不起作用,尝试此
首选项 ->运行/调试->启动-> “启动前保存脏编辑器”
if
Window -> Preferences -> General -> Workspace and there you can check "Save automatically before build" + "Build automatically"
don't work try this
Preferences -> Run/Debug -> Launching -> "Save dirty editors before launching"
在 Eclipse CDT Kepler 中,您可以将其设置为:
In Eclipse CDT Kepler you can set it in:
创建一个名为
default.ini
或其他名称的文件,其中包含以下行:在已存在的
eclipse.ini
文件中,在 < 之前的某个位置添加以下行: code>-vmargs 行:其中
/path/to/default.ini
是您在第一步中创建的default.ini
文件的完整路径。如果 Eclipse 将由该计算机上的多个用户使用,则所有用户都应该可以访问default.ini
。Create a file named
default.ini
, or some other name, containing the following line:In your
eclipse.ini
file which already exists, add the following lines somewhere before the-vmargs
line:Where
/path/to/default.ini
is the full path to thedefault.ini
file you created in the first step. If Eclipse will be used by multiple users on this machine,default.ini
should be accessible by all of them.