This is the full console output: user@system:~/Programs/psp/rectangles$ make psp-gcc -I. -I/usr/local/pspdev/psp/sdk/include -I/usr/local/pspdev/psp/include/SDL -Dmain=SDL_main -G0 -O2 -D_PSP_FW_VERSION=150 -L. -L/usr/local/pspdev/psp/sdk/lib rectangles.o -L/usr/local/pspdev/psp/lib -lSDLmain -lSDL ...
I have a similar problem, I've tried compiling this code: /* rectangles.c * Draws random rectangles on screen. */ #include <SDL.h> #include <pspctrl.h> #include <stdio.h> #include <stdlib.h> int main( int argc, char* argv[] ) { SDL_Surface *screen; SDL_Event ...