Guys, I have been trying to compile a program to work on my vu+ duo 2 which has a mips based processor - as I am making a plugin for myself. I did manage to compile this to work on my synology NAS - but am running into trouble doing it for my box.
Can someone 'in the know' if you have a cross compiler set up to compile for mips - please compile this for me. I'll attach the source code.
This is how I did it on my NAS:
ipkg install gcc
ipkg install make
ipkg install sudo
mkdir /opt/arm-none-linux-gnueabi/lib_disabled
mv /opt/arm-none-linux-gnueabi/lib/libpthread* /opt/arm-none-linux-gnueabi/lib_disabled
cp /lib/libpthread.so.0 /opt/arm-none-linux-gnueabi/lib/
sudo ln -s /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so
cd /opt/arm-none-linux-gnueabi/lib/
ln -s libpthread.so.0 libpthread.so
ln -s libpthread.so.0 libpthread-2.5.so
cd /
cd /root/ps3netsrv
make
If someone kind would compile this to work on mips - I would be most gratefull. Thanks