Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-06-25 | Delete old stuff. | Joakim Tjernlund | |
2005-03-21 | Pass _dl_fini function ptr to __uClibc_start_main(). | Joakim Tjernlund | |
To actually use it, one must define _DL_DO_FINI_IN_LIBC globally. That will also break ABI for apps linked with previous version of crtX.S. They must be relinked with this version to work again. | |||
2004-11-17 | Make __builtin_return_address() return NULL at top of | Joakim Tjernlund | |
stack frame. This will make backtracing possible. | |||
2004-08-30 | Typo fix from Peter Mazinger. | Joakim Tjernlund | |
2004-08-27 | Preliminary PIE support for powerpc, i386 was used as template. | Joakim Tjernlund | |
Requested by Peter Mazinger. Testing wanted. | |||
2004-08-21 | Kill off all support for 'gcc -pg' / 'gprof' style profiling. There is both a | Eric Andersen | |
size and performance penalty to profiling applications this way, as well as Heisenberg effects, where the act of measuring changes what is measured. There are better tools for doing profiling, such as OProfile, that do not require gcc to instrument the application code. -Erik | |||
2004-05-14 | __data_start needs to be added to all crt0.S files that don't currently | Eric Andersen | |
have it. It is used by the boehm gc, amoung other things. | |||
2003-03-06 | Finish off gmon based profiling for powerpc | Eric Andersen | |
2003-01-23 | Shuffle two lines so the comment applies to the correct line. | Eric Andersen | |
2003-01-23 | Rewrite powerpc crt0.S for proper ctor/dtor handling | Eric Andersen | |
2002-04-14 | Manuel and I were looking into a problem with applications failing to link | Eric 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-16 | Remove the C++ support stubs, since these now live elsewhere and | Eric Andersen | |
these stubs were preventing the real stuff from working properly. -Erik | |||
2001-08-28 | This will hopefully make global constructors and destructors work | Eric Andersen | |
2001-03-16 | Add powerpc port done by David Schleef <ds@schleef.org> | Eric Andersen | |