summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/arm/crt0.S
Commit message (Collapse)AuthorAgeFilesLines
* Manuel and I were looking into a problem with applications failing to linkEric Andersen2002-04-141-0/+6
| | | | | | | | | | (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
* Remove the C++ support stubs, since these now live elsewhere andEric Andersen2002-03-161-14/+0
| | | | | these stubs were preventing the real stuff from working properly. -Erik
* merged the two startup files so that uClinux people always get the correctDavid McCullough2001-12-191-0/+30
| | | | | arg processing whether they are using PIC or not, and vice-versa for the MMU folks.
* Patch from David McCullough <davidm@lineo.com>:Eric Andersen2001-10-041-0/+2
| | | | | | | | | | | | | | * reduce the sigset types to 32 bits (I've mentioned this before) I think I saw this change go in for another platform anyway ;-) * Do not use _IO_FILE as it clashes with the C++ libraries which know too much about how glibc workds :-( * Do not use _G_va_list for the same reason. * remove the CTORS/DTORS from crt0.S for ARM as the compiler provided crtbegin.o and crtend.o have these (and only these) already in them and you get multiple defined errs :-(
* This will hopefully make global constructors and destructors workEric Andersen2001-08-281-0/+12
|
* Fix up a commentEric Andersen2001-04-281-1/+1
|
* Update arm for the new way of entering main. BTW, I can now run things on armEric Andersen2001-02-231-54/+32
| | | | | | | as a shared library, using the glibc shared lib loader. :-) I've updated the pic case but havn't tested it yet. -Erik
* Revert stdio to initializing itself. Not quite a pretty but that ensures thatEric Andersen2001-02-091-24/+2
| | | | | | | we don't blow up by using too much stack space, and simplifies the job of supporting new architectures, since they don't have to mess with calling foo init functions in crt0 and cleaning up the resulting damage. -Erik
* _void_void_null_func never returned. I noticed this yesterdayEric Andersen2001-02-071-1/+1
| | | | | | in crt0.S and Michiel Thuys <michiel.thuys@intersil.com> noticed the same thing in crt0pic.S. -Erik
* Minor comment updateEric Andersen2001-01-171-2/+7
|
* Fix arm so it actually works.Eric Andersen2001-01-161-40/+82
|
* Added common handling of errno.Eric Andersen2001-01-161-6/+1
|
* USe the name crt0.o, and cp it to $(TOPDIR)/libcrt0.oEric Andersen2001-01-151-0/+66