summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/mips/crt0.S
AgeCommit message (Collapse)Author
2002-06-04Changes so that 'regdef.h' gets included in the development environment."Steven J. Hill"
2002-04-14Manuel and I were looking into a problem with applications failing to linkEric Andersen
(undefined reference to `main') when the .o file containing main was contained in an static library(a '.a' ar archive). It turns out that due to its single pass nature, GNU ld was failing to pull it into the build. This sticks a dummy reference to main() into crt0.o, so that when an application is linked with the main() function in a static library, we can be sure that main() actually gets linked in. -Erik
2002-03-16Remove the C++ support stubs, since these now live elsewhere andEric Andersen
these stubs were preventing the real stuff from working properly. -Erik
2002-02-04Fixup mips so it now works and provides basic functionalityEric Andersen