Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Krasilnikov2008-02-28 17:17:38 +0000
committerOleg Krasilnikov2008-02-28 17:17:38 +0000
commitaaedfd3400d87b4e847348bd99a3f7572a71eba8 (patch)
treefe0f48cb4f5ec8c42882e566de5dc5d17042dffa /build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
parenta4513baa305ef32348e8588bb6d4f0221780d1d2 (diff)
downloadorg.eclipse.cdt-aaedfd3400d87b4e847348bd99a3f7572a71eba8.tar.gz
org.eclipse.cdt-aaedfd3400d87b4e847348bd99a3f7572a71eba8.tar.xz
org.eclipse.cdt-aaedfd3400d87b4e847348bd99a3f7572a71eba8.zip
Bug # 220749 : Performance switches -p -pg should be propagated to linker too
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
index efada1f6908..990c6dcb294 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
@@ -204,6 +204,22 @@
value="true"/>
</enablement>
</outputType>
+ <option
+ applicabilityCalculator="org.eclipse.cdt.managedbuilder.gnu.ui.GprofAppCalculator"
+ command="-pg"
+ defaultValue="false"
+ id="gnu.c.link.option.debugging.gprof"
+ name="%Option.Posix.Debug.gprof"
+ valueType="boolean">
+ </option>
+ <option
+ applicabilityCalculator="org.eclipse.cdt.managedbuilder.gnu.ui.ProfAppCalculator"
+ command="-p"
+ defaultValue="false"
+ id="gnu.c.link.option.debugging.prof"
+ name="%Option.Posix.Debug.prof"
+ valueType="boolean">
+ </option>
</tool>
<tool
natureFilter="ccnature"
@@ -389,6 +405,22 @@
value="true"/>
</enablement>
</outputType>
+ <option
+ applicabilityCalculator="org.eclipse.cdt.managedbuilder.gnu.ui.GprofAppCalculator"
+ command="-pg"
+ defaultValue="false"
+ id="gnu.cpp.link.option.debugging.gprof"
+ name="%Option.Posix.Debug.gprof"
+ valueType="boolean">
+ </option>
+ <option
+ applicabilityCalculator="org.eclipse.cdt.managedbuilder.gnu.ui.ProfAppCalculator"
+ command="-p"
+ defaultValue="false"
+ id="gnu.cpp.link.option.debugging.prof"
+ name="%Option.Posix.Debug.prof"
+ valueType="boolean">
+ </option>
</tool>
<tool
natureFilter="both"

Back to the top