So I've followed the few guides I've found
I think it was this one:
http://mikearthur.co.uk/2007/12/15/ibm- ... ntu-howto/
and tried to install the packages talked about here:
http://forums.ps2dev.org/viewtopic.php?t=9855
Right now my PS3 has psubuntu installed so I can more easily try if my cross compilation environment works.
I wrote a simple test:
Code: Select all
#include <stdio.h>
int main()
{
printf("Hello, world!\n");
return(0);
}
And tried to run, everything went OK.
So now I tried the same code but compiled it with ppu-g++ to see if compiling C++ code would work, no problem so I tried running it and all I get in the terminal on the PS3 is something like:
"error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory"
Anyone happend to know what could be wrong?
Thanks.