Using CDT for PalmOS Development [message #55857] |
Tue, 31 December 2002 10:58 |
Eclipse User |
|
|
|
Originally posted by: msantin.NOSPAM_santineassociati.com_NOSPAM
Hi all!
My idea is to use Eclipse and CDT as a simple but effective C/C++
development system for PalmOS 4 and 5. I want to use Eclipse because it is
the best IDE on the earth!
I already compiled successfully my first C program using PRC-Tools 2.2
under Cygwin on Windows XP. Now I want to integrate some specific PalmOS
development features into Eclipse. I identified some steps:
1. integrate the PRC-Tools GDB debugger and the POSE (Palm OS Emulator)
into CDT
2. integrate (or build) a simple PilRC resource editor into Eclipse
3. use some C++ open source classes to better manage the complexity of the
PalmOS environment
4. extends the resource editor to manage some simple events
5. integrate the Armlet parts of PRC-Tools
I would be happy if I will be able to complete step 1 and 2. I want to
publish the result as open source and free software.
I need some hints for the first step. Which CDT classes I need to use?
Which classes I need to define? Which documentation (if exists) I need to
look? How to setup a CDT development environment and a test environment?
Have you some suggestions that you think can be useful?
Happy new year!
Massimo Santin
P.S.: the curious about PalmOS development using free software can look
these links:
http://www.palmsource.com/developers/
http://prc-tools.sourceforge.net
http://www.ardiri.com/palm/pilrc/
|
|
|
Re: Using CDT for PalmOS Development [message #55993 is a reply to message #55857] |
Wed, 01 January 2003 21:55 |
Eclipse User |
|
|
|
Originally posted by: mikhailkhod.rogers.com
Hi,
"Massimo Santin" <msantin@NOSPAM_santineassociati.com_NOSPAM> wrote in
message news:Xns92F57B5E1611Fmassimosantin@204.138.98.10...
> Hi all!
>
> My idea is to use Eclipse and CDT as a simple but effective C/C++
> development system for PalmOS 4 and 5. I want to use Eclipse because it is
> the best IDE on the earth!
>
> I already compiled successfully my first C program using PRC-Tools 2.2
> under Cygwin on Windows XP. Now I want to integrate some specific PalmOS
> development features into Eclipse. I identified some steps:
>
> 1. integrate the PRC-Tools GDB debugger and the POSE (Palm OS Emulator)
> into CDT
Which version of gdb is it? The implementation of CDT debugger is based on
the version 5.2.1 and uses the MI interface.
> 2. integrate (or build) a simple PilRC resource editor into Eclipse
> 3. use some C++ open source classes to better manage the complexity of the
> PalmOS environment
> 4. extends the resource editor to manage some simple events
> 5. integrate the Armlet parts of PRC-Tools
>
> I would be happy if I will be able to complete step 1 and 2. I want to
> publish the result as open source and free software.
>
> I need some hints for the first step. Which CDT classes I need to use?
> Which classes I need to define? Which documentation (if exists) I need to
> look? How to setup a CDT development environment and a test environment?
> Have you some suggestions that you think can be useful?
>
> Happy new year!
>
> Massimo Santin
>
> P.S.: the curious about PalmOS development using free software can look
> these links:
>
> http://www.palmsource.com/developers/
> http://prc-tools.sourceforge.net
> http://www.ardiri.com/palm/pilrc/
Mikhail
|
|
|
Re: Using CDT for PalmOS Development [message #56019 is a reply to message #55993] |
Thu, 02 January 2003 00:21 |
Eclipse User |
|
|
|
Originally posted by: msantin_NOSPAM.santineassociati.com_NOSPAM
"Mikhail Khodjaiants" <mikhailkhod@rogers.com> wrote in
news:auvnf8$ub1$1@rogue.oti.com:
> Which version of gdb is it? The implementation of CDT debugger is
> based on the version 5.2.1 and uses the MI interface.
The output of "m68k-palmos-gdb --version" command gives:
GNU gdb 5.0
Copyright 2000 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you
are
welcome to change it and/or distribute copies of it under certain
conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "--host=i686-pc-cygwin --target=m68k-palmos".
Probably it is too old.
Massimo Santin
SANTIN E ASSOCIATI SRL
|
|
|
Re: Using CDT for PalmOS Development [message #56044 is a reply to message #56019] |
Thu, 02 January 2003 04:26 |
Eclipse User |
|
|
|
Originally posted by: mikhailkhod.rogers.com
"Massimo Santin" <msantin_NOSPAM@santineassociati.com_NOSPAM> wrote in
message news:Xns92F7FDE7E1ECmassimosantin@204.138.98.10...
> "Mikhail Khodjaiants" <mikhailkhod@rogers.com> wrote in
> news:auvnf8$ub1$1@rogue.oti.com:
>
> > Which version of gdb is it? The implementation of CDT debugger is
> > based on the version 5.2.1 and uses the MI interface.
>
> The output of "m68k-palmos-gdb --version" command gives:
>
> GNU gdb 5.0
> Copyright 2000 Free Software Foundation, Inc.
> GDB is free software, covered by the GNU General Public License, and you
> are
> welcome to change it and/or distribute copies of it under certain
> conditions.
> Type "show copying" to see the conditions.
> There is absolutely no warranty for GDB. Type "show warranty" for
details.
> This GDB was configured as "--host=i686-pc-cygwin --target=m68k-palmos".
>
> Probably it is too old.
>
>
They mention gdb 5.3 on their website. This should work.
>
> Massimo Santin
> SANTIN E ASSOCIATI SRL
|
|
|
Re: Using CDT for PalmOS Development [message #56302 is a reply to message #55857] |
Thu, 02 January 2003 21:00 |
Eclipse User |
|
|
|
Originally posted by: aarhelger.charter.net.nospam
I am interested in this as well. How do I get CDT to run the the
m68k-palmos-gdb version of gdb and then attach to the running POSE process.
I.E (target palmos)?
Andy Arhelger
"Massimo Santin" <msantin@NOSPAM_santineassociati.com_NOSPAM> wrote in
message news:Xns92F57B5E1611Fmassimosantin@204.138.98.10...
> Hi all!
>
> My idea is to use Eclipse and CDT as a simple but effective C/C++
> development system for PalmOS 4 and 5. I want to use Eclipse because it is
> the best IDE on the earth!
>
> I already compiled successfully my first C program using PRC-Tools 2.2
> under Cygwin on Windows XP. Now I want to integrate some specific PalmOS
> development features into Eclipse. I identified some steps:
>
> 1. integrate the PRC-Tools GDB debugger and the POSE (Palm OS Emulator)
> into CDT
> 2. integrate (or build) a simple PilRC resource editor into Eclipse
> 3. use some C++ open source classes to better manage the complexity of the
> PalmOS environment
> 4. extends the resource editor to manage some simple events
> 5. integrate the Armlet parts of PRC-Tools
>
> I would be happy if I will be able to complete step 1 and 2. I want to
> publish the result as open source and free software.
>
> I need some hints for the first step. Which CDT classes I need to use?
> Which classes I need to define? Which documentation (if exists) I need to
> look? How to setup a CDT development environment and a test environment?
> Have you some suggestions that you think can be useful?
>
> Happy new year!
>
> Massimo Santin
>
> P.S.: the curious about PalmOS development using free software can look
> these links:
>
> http://www.palmsource.com/developers/
> http://prc-tools.sourceforge.net
> http://www.ardiri.com/palm/pilrc/
|
|
|
Powered by
FUDForum. Page generated in 0.03602 seconds