Eclipse - 在项目上运行构建器时出错

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/23382062/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-10 22:04:14  来源:igfitidea点击:

Eclipse - Errors running builder on project

eclipse

提问by Soman Dubey

I was getting this error constantly in eclipse:

我在 Eclipse 中不断收到此错误:

Errors during build. Errors running builder "Integrated External Tool Builder" on project project. The builder launch configuration could not be found. Errors running builder "Integrated External Tool Builder" on project project. The builder launch configuration could not be found.

构建过程中的错误。在项目项目上运行构建器“集成外部工具构建器”时出错。找不到构建器启动配置。在项目项目上运行构建器“集成外部工具构建器”时出错。找不到构建器启动配置。

回答by Soman Dubey

I added this question and answering on my own as I could not find an answer on Stackoverflow and it may benefit someone else

我添加了这个问题并自己回答,因为我在 Stackoverflow 上找不到答案,这可能会让其他人受益

Answer is:

答案是:

On your project "project", right click -> Properties>Builders Remove the missing builder

在您的项目“project”上,右键单击 -> Properties>Builders 删除丢失的构建器

Source http://www.eclipse.org/forums/index.php/t/28894/

来源 http://www.eclipse.org/forums/index.php/t/28894/

回答by kablu

You can follow these steps.

您可以按照以下步骤操作。

  1. Select the right project.
  2. Choose "project"on the tool bar -> Properties
  3. Click "Builders" on the menu of the popped up window
  4. Remove the missing builders
  1. 选择正确的项目。
  2. 选择工具栏上的“项目”-> 属性
  3. 在弹出的窗口菜单中点击“Builders”
  4. 删除丢失的构建器

Reference links

参考链接

回答by Allwin

I was facing the same issue,

我面临同样的问题,

"Errors running builder 'Integrated External Tool Builder' on project {PROJECT NAME}"

“在项目 {PROJECT NAME} 上运行构建器‘集成外部工具构建器’时出错”

you must go to your .project file in your work space, and you can put in comment or delete this lines

您必须转到工作空间中的 .project 文件,您可以添加注释或删除此行

<buildCommand>
            <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
            <triggers>full,incremental,</triggers>
            ...
            ...

</buildCommand>

and after that, you can rebuild your project and it will work correctly.

之后,您可以重建您的项目,它会正常工作。

Reference: https://bugs.eclipse.org/bugs/show_bug.cgi?id=118294

参考:https: //bugs.eclipse.org/bugs/show_bug.cgi?id=118294

回答by J. Smolik

In my case, this happened after fiddling with existing builders (e.g. renaming them) and the solution was to restart Eclipse (Neon.3 v4.6.3).

就我而言,这是在摆弄现有构建器(例如重命名它们)之后发生的,解决方案是重新启动 Eclipse (Neon.3 v4.6.3)。