I'm compiling a C program for a MIPS embedded system. GCC keeps sticking in stuff like __do_global_dtors_aux, frame_dummy, __do_global_ctors_aux. How can I avoid that?
Resolved: I just "fixed" it by passing -nostdlib to gcc. Silly me for forgetting that