Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/perf/PerfCore.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/perf/PerfCore.java b/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/perf/PerfCore.java
index e8c21a1468..4dafea304b 100644
--- a/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/perf/PerfCore.java
+++ b/perf/org.eclipse.linuxtools.perf/src/org/eclipse/linuxtools/perf/PerfCore.java
@@ -178,8 +178,19 @@ public class PerfCore {
}
if (config.getAttribute(PerfPlugin.ATTR_ModuleSymbols, PerfPlugin.ATTR_ModuleSymbols_default))
base.add("-m");
+
+ /*
+ * danielhb, 12/14/2011 - some systems, like ubuntu and sles, does not have
+ * the -U option. The binary fails to execute in those systems when this
+ * option is enabled.
+ * I'm disabling it to make the plug-in runnable for them. This
+ * will probably need to be revisited in the future, probably when this
+ * flag is implemented by the Perf binary of those systems.
+ */
+ /*
if (config.getAttribute(PerfPlugin.ATTR_HideUnresolvedSymbols, PerfPlugin.ATTR_HideUnresolvedSymbols_default))
base.add("-U");
+ */
if (perfDataLoc != null) {
base.add("-i");
base.add(perfDataLoc);

Back to the top