Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Patch: org.eclipse.cdt.debug.ui plugin.xml

Today, by a very roundabout process, I managed to build the CDT.
Unfortunately, Judy's excellent instructions didn't work for me --
Eclipse hung for unknown reasons (I haven't looked into it).

Nevertheless I persevered and got something to work.  However, I did
find that I needed the appended patch in order to get the debugger to
launch.

The generated build.xml file (part of what worked for me was using ant
on the command line to build the various pieces) references
"cdtdebuguii" throughout.  So does build.properties.

Perhaps fixing build.properties is more correct?  Having "guii" does
seem odd.  On that theory I've appended an alternate patch that does
this.  So, you get to choose.  Please don't check both in :-)

Luckily I've already learned a lot about DelegatingURLClassLoader, or
I might never have found this typo. :-)

Tom

Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/plugin.xml,v
retrieving revision 1.25
diff -u -r1.25 plugin.xml
--- plugin.xml 26 Sep 2002 02:16:52 -0000 1.25
+++ plugin.xml 28 Sep 2002 00:57:37 -0000
@@ -7,7 +7,7 @@
    class="org.eclipse.cdt.debug.ui.CDebugUIPlugin">
 
    <runtime>
-      <library name="cdtdebugui.jar">
+      <library name="cdtdebuguii.jar">
          <export name="*"/>
       </library>
    </runtime>


Index: build.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/build.properties,v
retrieving revision 1.3
diff -u -r1.3 build.properties
--- build.properties 26 Sep 2002 02:16:52 -0000 1.3
+++ build.properties 28 Sep 2002 01:07:58 -0000
@@ -4,4 +4,4 @@
                *.jar,\
                icons/
 src.includes = about.html
-source.cdtdebuguii.jar = src/
+source.cdtdebugui.jar = src/


Back to the top