I've committed a few fixes.

Patches gladly accepted for any other warnings you can sort out...



> The guilty file is build.properties

Fix committed (removed obsolete references).


>> The update site works fine on e.g. Eclipse 3.5 w/Ubuntu 9.04.
>>
>>
>
> Doesn't work on Ubuntu 8.10

Could you elaborate? Eclipse 3.5 does not work or the plugin?

What happens?

I can't see any reason for problems with Ubuntu as such. This even
works on Mac & Ubuntu 9.04.


> Last I tried with Ubuntu 8.10 and fedora 9 it would barf, so I relied to the
> old fashion way which is to copy the compiled java
> to their proper directory.

What barfed?

We had some domain name problems with our server that we sorted
out. Could it that you hit that problem window?


> I am referring to the .jar files. It is important which version of Eclipse
> is used.
> If you have 3.3, 3.4 or 3.5 you need different ones.

There is no way I could hope to support anything than the latest
version of Eclipse with the resources available.


> ECDT_Debugger_Name       = gdb

This is a silly default, but there isn't really a good default here.
I chose arm-elf-gdb.




-- 
Øyvind Harboe
Embedded software and hardware consulting services
http://www.zylin.com
### Eclipse Workspace Patch 1.0
#P embeddedcdt4_0
Index: build.properties
===================================================================
RCS file: /cvsroot/cdt-contrib/embeddedcdt4_0/build.properties,v
retrieving revision 1.5
diff -u -r1.5 build.properties
--- build.properties    7 May 2008 21:01:55 -0000       1.5
+++ build.properties    26 Jul 2009 17:53:16 -0000
@@ -12,7 +12,6 @@
                .classpath,\
                .project,\
                plugin.properties,\
-               3rdparty/commons-httpclient-3.1.jar,\
                META-INF/,\
                helpwanted.txt,\
                bugs.txt,\
@@ -27,7 +26,6 @@
                plugin.properties,\
                plugin.xml,\
                src/,\
-               3rdparty/,\
                lib/,\
                META-INF/,\
                helpwanted.txt,\
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cdt-contrib/embeddedcdt4_0/ChangeLog,v
retrieving revision 1.47
diff -u -r1.47 ChangeLog
--- ChangeLog   13 Jul 2009 18:23:29 -0000      1.47
+++ ChangeLog   26 Jul 2009 17:53:16 -0000
@@ -1,3 +1,7 @@
+2009-07-26 Øyvind Harboe
+       * Fixed a few warnings reported by Michel Catudal
+       * arm-elf-gdb is now default
+       * Fixed CygWin to Cygwin spelling in a few places
 2009-07-13 Øyvind Harboe
        * bumped to 4.9.1 
 2009-07-08 Øyvind Harboe
Index: plugin.properties
===================================================================
RCS file: /cvsroot/cdt-contrib/embeddedcdt4_0/plugin.properties,v
retrieving revision 1.1
diff -u -r1.1 plugin.properties
--- plugin.properties   26 Feb 2007 20:03:18 -0000      1.1
+++ plugin.properties   26 Jul 2009 17:53:16 -0000
@@ -1,7 +1,7 @@
-containerName.cygwin=CygWin path translator
-containerDescription.cygwin=Translates from CygWin to Windows paths
+containerName.cygwin=Cygwin path translator
+containerDescription.cygwin=Translates from Cygwin to Windows paths
 StandardCommandFactory.name=Standard
-ECDT_Debugger_Name       = gdb
+ECDT_Debugger_Name       = arm-elf-gdb
 ECDT_Debugger_Init       = 
 ECDT_Main_PrefPage_Label = Embedded CDT
 ECDT_Main_PrefPage_Desc  = Set preferences for the Embedded CDT Plugin
Index: 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerBrowser.java
===================================================================
RCS file: 
/cvsroot/cdt-contrib/embeddedcdt4_0/src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerBrowser.java,v
retrieving revision 1.1
diff -u -r1.1 CygWinSourceContainerBrowser.java
--- 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerBrowser.java 
    26 Feb 2007 20:03:17 -0000      1.1
+++ 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerBrowser.java 
    26 Jul 2009 17:53:16 -0000
@@ -10,6 +10,6 @@
                SourceContainerBrowser
 {
        public ISourceContainer[] addSourceContainers( Shell shell, 
ISourceLookupDirector director ) {
-               return new ISourceContainer[] { new 
CygWinSourceContainer("CygWin source container" ) };
+               return new ISourceContainer[] { new 
CygWinSourceContainer("Cygwin source container" ) };
        }
 }
Index: 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceLookupDirector.java
===================================================================
RCS file: 
/cvsroot/cdt-contrib/embeddedcdt4_0/src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceLookupDirector.java,v
retrieving revision 1.1
diff -u -r1.1 CygWinSourceLookupDirector.java
--- 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceLookupDirector.java   
    26 Feb 2007 20:03:18 -0000      1.1
+++ 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceLookupDirector.java   
    26 Jul 2009 17:53:16 -0000
@@ -10,7 +10,7 @@
        public CygWinSourceLookupDirector()
        {
                super();
-               container=new CygWinSourceContainer("CygWin source container");
+               container=new CygWinSourceContainer("Cygwin source container");
        }
 
        public boolean supportsSourceContainerType(ISourceContainerType type)
Index: 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourcePathComputerDelegate.java
===================================================================
RCS file: 
/cvsroot/cdt-contrib/embeddedcdt4_0/src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourcePathComputerDelegate.java,v
retrieving revision 1.1
diff -u -r1.1 CygWinSourcePathComputerDelegate.java
--- 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourcePathComputerDelegate.java
 26 Feb 2007 20:03:17 -0000      1.1
+++ 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourcePathComputerDelegate.java
 26 Jul 2009 17:53:16 -0000
@@ -9,7 +9,7 @@
 {
        protected void addSourceContainer(ArrayList containers)
        {
-               containers.add(new CygWinSourceContainer("CygWin source path 
lookup"));
+               containers.add(new CygWinSourceContainer("Cygwin source path 
lookup"));
        }
 
 }
Index: 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerType.java
===================================================================
RCS file: 
/cvsroot/cdt-contrib/embeddedcdt4_0/src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerType.java,v
retrieving revision 1.1
diff -u -r1.1 CygWinSourceContainerType.java
--- 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerType.java    
    26 Feb 2007 20:03:18 -0000      1.1
+++ 
src/com/zylin/embeddedcdt/sourcelookup/cygwin/CygWinSourceContainerType.java    
    26 Jul 2009 17:53:16 -0000
@@ -8,7 +8,7 @@
 public class CygWinSourceContainerType extends SourceContainerType
 {
        public ISourceContainer createSourceContainer( String memento ) throws 
CoreException {
-               return new CygWinSourceContainer("CygWin source container");
+               return new CygWinSourceContainer("Cygwin source container");
        }
 
 }
_______________________________________________
Openocd-development mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to