Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2004-07-16 18:03:28 +0000
committerAlain Magloire2004-07-16 18:03:28 +0000
commit224f6eb03a94f4685450b8e001863fbca2e92e47 (patch)
tree445d1b3257895467de79dafdfd492c2bf05f3331 /core/org.eclipse.cdt.core/plugin.xml
parent9766cb70c62b71c3d08bd2866ef0736046c8b83b (diff)
downloadorg.eclipse.cdt-224f6eb03a94f4685450b8e001863fbca2e92e47.tar.gz
org.eclipse.cdt-224f6eb03a94f4685450b8e001863fbca2e92e47.tar.xz
org.eclipse.cdt-224f6eb03a94f4685450b8e001863fbca2e92e47.zip
2004-07-16 Vladimir Hirsl
1. Implementation of HP-UX SOM binary parser. * utils/org/eclipse/cdt/utils/som/AR.java * utils/org/eclipse/cdt/utils/som/SOM.java * utils/org/eclipse/cdt/utils/som/parser/ARMember.java * utils/org/eclipse/cdt/utils/som/parser/BinaryArchive.java * utils/org/eclipse/cdt/utils/som/parser/SOMParser.java * utils/org/eclipse/cdt/utils/som/parser/SOMBinaryObject.java * utils/org/eclipse/cdt/utils/som/parser/SomSymbol.java 2. Fixed a slight ommision in XXXBinaryObject classes * utils/org/eclipse/cdt/utils/coff/parser/CygwinPEBinaryObject.java * utils/org/eclipse/cdt/utils/elf/parser/GNUElfBinaryObject.java * utils/org/eclipse/cdt/utils/xcoff/parser/XCOFFBinaryObject.java
Diffstat (limited to 'core/org.eclipse.cdt.core/plugin.xml')
-rw-r--r--core/org.eclipse.cdt.core/plugin.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core/plugin.xml b/core/org.eclipse.cdt.core/plugin.xml
index 11b5c9b8ed2..5b7b753949e 100644
--- a/core/org.eclipse.cdt.core/plugin.xml
+++ b/core/org.eclipse.cdt.core/plugin.xml
@@ -107,6 +107,16 @@
</run>
</cextension>
</extension>
+ <extension
+ id="SOM"
+ name="%SOMParser.name"
+ point="org.eclipse.cdt.core.BinaryParser">
+ <cextension>
+ <run
+ class="org.eclipse.cdt.utils.som.parser.SOMParser">
+ </run>
+ </cextension>
+ </extension>
<!-- This is for backward compatibility: an Typo was introduce in on of the realease
and "ELF" instead of "Elf" -->
<extension

Back to the top