如何将 Eclipse 配置为“构建前自动保存”默认情况下?

发布于 2024-12-23 03:15:28 字数 196 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(3

谎言月老 2024-12-30 03:15:28

如果
窗口->首选项->一般->工作区,您可以在其中检查“构建前自动保存”+“自动构建”

不起作用,尝试此

首选项 ->运行/调试->启动-> “启动前保存脏编辑器”

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"

拔了角的鹿 2024-12-30 03:15:28

在 Eclipse CDT Kepler 中,您可以将其设置为:

Window -> Preferences -> General -> Workspace -> Save automatically before build

In Eclipse CDT Kepler you can set it in:

Window -> Preferences -> General -> Workspace -> Save automatically before build
无语# 2024-12-30 03:15:28

创建一个名为 default.ini 或其他名称的文件,其中包含以下行:

org.eclipse.ui.ide/SAVE_ALL_BEFORE_BUILD=true

在已存在的 eclipse.ini 文件中,在 < 之前的某个位置添加以下行: code>-vmargs 行:

-pluginCustomization
/path/to/default.ini

其中 /path/to/default.ini 是您在第一步中创建的 default.ini 文件的完整路径。如果 Eclipse 将由该计算机上的多个用户使用,则所有用户都应该可以访问 default.ini

Create a file named default.ini, or some other name, containing the following line:

org.eclipse.ui.ide/SAVE_ALL_BEFORE_BUILD=true

In your eclipse.ini file which already exists, add the following lines somewhere before the -vmargs line:

-pluginCustomization
/path/to/default.ini

Where /path/to/default.ini is the full path to the default.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.

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