On 2006-06-28, marco roner <[EMAIL PROTECTED]> wrote:
> I'm still trying to ricompile the strip source, but I have a question,
> in the source file of strip there are pdb.h and pdbMake.c, I think that this
> file will create the database for the application, but the Palm os
> developer suite creates automatically the db and this could create errors
> (when I add the pdb.h pdbmake.c the debug tells in pdbmake that
> time.h no such file or directory #include <time.h>, but why it don't see
> this lib???? )
>
>
pdbmake has to be compiled with the native gcc (with its own set of
include files) not with m68k-palmos-gcc.
It produces the StripOTP-SJLO.pdb needed by Strip.
Here is an excerpt of my Makefile:
------------------------------------------------------
APPID =SJLO
....
OTPDB =StripOTP-SJLO.pdb
OTPDBTYPE =SKey
OTPTXT =otplist.txt
....
$(OTPDB): pdbmake
./pdbmake -a -c $(APPID) -t $(OTPDBTYPE) $(OTPTXT) $(OTPDB)
pdbmake: pdbmake.c
$(HOST_CC) -o $@ $<
------------------------------------------------------
HTH
Ton van Overbeek
--
For information on using the PalmSource Developer Forums, or to unsubscribe,
please see http://www.palmos.com/dev/support/forums/