使用 Profiling Tools 的 Function Callgraph 选项时出现 Eclipse CDT 错误
Posted
技术标签:
【中文标题】使用 Profiling Tools 的 Function Callgraph 选项时出现 Eclipse CDT 错误【英文标题】:Eclipse CDT error while using Function Callgraph option of Profiling Tools 【发布时间】:2015-03-24 12:53:38 【问题描述】:在使用 Profiling Tools 的 Function Callgraph 选项时,我在 Eclipse CDT 中遇到以下错误
/tmp/org.eclipse.linuxtools.profiling.launch14272008124383356638983332386495.sh: 2: /tmp/org.eclipse.linuxtools.profiling.launch14272008124383356638983332386495.sh: Syntax error: Bad fd number
我用谷歌搜索了这个错误。我发现问题出在>&
。答案表明,可以通过将其替换为 &>
来解决该问题。但是怎么做,因为eclipse创建了文件??
下面是我使用分析工具的示例 C 代码。但是我有一个巨大的代码,我面临着同样的问题。
/*
============================================================================
Name : hello.c
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
void abc()
int main(void)
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
abc();
return EXIT_SUCCESS;
下面是错误中提到的shell脚本
#!/bin/sh
exec stap -c '/home/tejus/workspaces/testC/hello/Debug/hello' /home/tejus/workspaces/testC/.metadata/.plugins/org.eclipse.linuxtools.callgraph.core/callgraphGen.stp --runtime=dyninst /home/tejus/workspaces/testC/hello/Debug/hello >& /home/tejus/workspaces/testC/.metadata/.plugins/org.eclipse.linuxtools.callgraph.core/callgraph.out
我在两个 C/C++ 代码中都面临同样的问题。
【问题讨论】:
【参考方案1】:这可能是因为 bash 和 sh 的风格不同。试试这个:将 /bin/sh 的旧链接重命名为 bash 并创建 /bin/sh 的新链接到 bash。
cd /bin
sudo mv sh sh_orig
sudo ln -s /bin/bash sh
【讨论】:
以上是关于使用 Profiling Tools 的 Function Callgraph 选项时出现 Eclipse CDT 错误的主要内容,如果未能解决你的问题,请参考以下文章