0

我正在尝试在 Ubuntu 12.04 上将 icc 与 Eclipse 一起使用。icc 从命令行完美运行。安装 icc 后,我使用 apt-get 安装了 eclipse-platform。

我按照这里给出的说明:http ://www.wrgrid.group.shef.ac.uk/icebergdocs/intelv14docs/en_US/get_started_lc.htm

执行这些步骤后,我收到以下错误:

Cannot complete the install because one or more required items could not be found.
  Software being installed: Intel(R) C++ Compiler XE 14.0 for Linux* OS 8.1.0 (com.intel.compiler.cdt.feature.group 8.1.0)
  Missing requirement: Intel C/C++ Standard Make Build UI 8.1.0 (com.intel.compiler.cdt.make.ui 8.1.0) requires 'bundle org.eclipse.cdt.make.ui 0.0.0' but it could not be found
  Cannot satisfy dependency:
    From: Intel(R) C++ Compiler XE 14.0 for Linux* OS 8.1.0 (com.intel.compiler.cdt.feature.group 8.1.0)
    To: com.intel.compiler.cdt.make.ui [8.1.0]

请帮我解决这个问题。可能出了什么问题?

4

2 回答 2

1

请注意,要求包括 eclipse 和 CDT。你可以安装它们

$ sudo apt-get install eclipse-cdt

eclipse-platform在 ubuntu repo 中不包括 CDT 部分。

如果还是不行,可以考虑下载Eclipse IDE for C/C++ Developers这里的独立版本。

http://www.eclipse.org/downloads/
于 2013-10-31T19:10:46.823 回答
0

Cluster Studio XE 2013/Parallel Studio XE 2013/C++ Studio XE 2013/Composer XE 2013 中提供的最新版本的英特尔编译器链适用于: 安装了 CDT 8.0.0 的 Eclipse Kepler 4.3

不要下载 Eclipse Kepler for C++,因为它捆绑了高于 8.0.0 的 CDT 版本,英特尔插件不支持该版本。

因此,下载 Eclipse Kepler 标准,然后下载cdt-master-8.0.0.zip(可从http://www.eclipse.org/cdt/downloads.php获得)。在 Eclipse 中,单击帮助>安装新软件>添加> 指向cdt-master-8.0.0.zip存档。

安装完成并重启Eclipse后,进入Help > Install New Software > Add,添加eclipse_support/cdt8.0/eclipse文件夹所在的位置。

在我的系统上,它位于:

/opt/intel/composer_xe_2013_sp1.2.144/eclipse_support/cdt8.0/eclipse

在安装窗口中,取消单击按类别分组项目

是的,我们知道我们的工具应该向上兼容。开发人员正在努力解决 XE 2015 系列产品中的这些问题。

资料来源:英特尔员工。

于 2014-07-24T09:22:56.803 回答