> > Now I'm stuck on:
> >
> > Compiling project1.lpr
> > Assembling project1
> > Linking project1
> > /usr/local/bin/arm-linux-ld: cannot find -lpthread
> > project1.lpr(19) Error: Error while linking
>
> AFAIK the linker isn't able to link your program against "libpthread.so"
> because it is not found.
>
> You could search it ("ldconfig -r|grep pthread" on my OS) and then give
> the full path to ld with something like:
>
> ppcarm <your params here> -k-L<path where libpthread.so is found>
> project1.lpr
I did a search on the device and find /lib/libpthread.so.0 on it.
Should I copy these off the device and onto my development machine for
linking? Or is it sufficient to link to the one my desktop 386 has
at /lib/ ?
-Tony