Hi,

I want to use the mrpeach object to transmit and receive OSC data on the raspberry pi (pd vanilla 0.43.2).

Therfore I downloaded the mrpeach c code at:

http://puredata.info/Members/martinrp/OSCobjects
(unpackOSC.c, packOSC.c, routeOSC.c)

and tried to compile it on the raspberry using:

gcc -I/usr/include -o packOSC.pd_linux packOSC.c

When doing this, I get the following result:

/usr/lib/gcc/arm-linux-gnueabihf/4.6/../../../arm-linux-gnueabihf/crt1.o: In function `_start':
(.text+0x34): undefined reference to `main'
/tmp/ccwWx7BH.o: In function `packOSC_new':
packOSC.c:(.text+0x1c): undefined reference to `pd_new'
packOSC.c:(.text+0x6c): undefined reference to `outlet_new'
packOSC.c:(.text+0x88): undefined reference to `outlet_new'
packOSC.c:(.text+0xb4): undefined reference to `s_list'
packOSC.c:(.text+0xb8): undefined reference to `s_float'
....
....

What am I doing wrong?