Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-07-06 | update comments/syntax and make sure we include features.h for the hidden define | Mike Frysinger | |
2005-07-04 | import armeb fixes as outlined by John Bowler | Mike Frysinger | |
2005-06-26 | Oops. | Joakim Tjernlund | |
2005-06-25 | Change L_Scrt1 to __PIC__ | Joakim Tjernlund | |
2005-06-25 | Hopefully fix PIE apps. | Joakim Tjernlund | |
2005-06-25 | whitespace tweak, dont mind me | Mike Frysinger | |
2005-06-11 | change the old pads to the new nano sec fields | Mike Frysinger | |
2005-06-11 | touchup syntax for no real good reason ;) | Mike Frysinger | |
2005-06-10 | Based on start.S from debian's glibc, this gets arm working | Eric Andersen | |
properly with the new ABI | |||
2005-06-10 | Add missing file needed for arm to compile | Eric Andersen | |
2005-06-10 | Remove TEXTREL relocations for ARM. | Joakim Tjernlund | |
Hide __syscall_error from outside libc. From Peter Mazinger. | |||
2005-06-10 | oops. I'd left some junk in there | Eric Andersen | |
2005-06-10 | rework arm crt1 properly this time around | Eric Andersen | |
2005-06-10 | Dunno yet if I got this right or not, but it now at least | Eric Andersen | |
has a chance of perhaps working... | |||
2005-05-28 | Add Peter Mazinger fini/crt compat patch. Select DL_FINI_CRT_COMPAT to | Joakim Tjernlund | |
be able to run apps built with 0.9.27. This also renames __uClibc_start_main to __uClibc_main. This compat option should be removed some time after 0.9.28 is released. Let me know if you don't like this change. | |||
2005-05-26 | Add PIE support to ARM. From Peter Mazinger | Joakim Tjernlund | |
2005-02-12 | no more cvs | Mike Frysinger | |
2005-01-25 | merge parallel build support | Mike Frysinger | |
2004-12-22 | Patch from Peter S. Mazinger to consistantly use "ASFLAGS" | Eric Andersen | |
as the flags for all calls to 'as' | |||
2004-12-12 | Patch from Paul Brook: | Eric Andersen | |
The Arm crt0.S contains non-PIC code for locating _init and _fini sections. This caused problems on my uclinux system when static constructors were enabled. The attached patch implements a PIC version of this code. Paul | |||
2004-08-25 | Mike Frysinger writes: | Eric Andersen | |
i sent this earlier but perhaps people missed it the first time around :) http://www.uclibc.org/lists/uclibc/2004-August/009544.html basically if you try to #include <sys/ucontext.h> on arm it'll fail because ucontext.h utilizes typedefs found in bits/sigcontext.h ... i386 already has this fix in uClibc find attached a trivial patch to fix this -mike | |||
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-07-30 | Cleanup some dead wood in the header files | Eric Andersen | |
2004-07-30 | s/___brk_addr/__curbrk/g | Eric Andersen | |
Some utilities, such as valgrind, have a legitimate reason to know the address of the current brk. Since we know such utils will peek under our skirt, we might as well give them what they expect and not use a gratuitously different symbol name. -Erik | |||
2004-07-17 | Update sigaction for arm | Eric Andersen | |
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. | |||
2004-05-14 | Kill off the now obsolete __libc_vfork symbol | Eric Andersen | |
2004-05-05 | Fix screwed up formatting | Eric Andersen | |
2004-05-05 | Jeroen Dobbelaere writes: | Eric Andersen | |
Because variables are linked to fixed registers, there is a problem in : (*__errno_location())=(-_r0); As __errno_location() uses r0 to return the address of the errno location, the negated address will be assigned instead of the error code. Attached patch will resolve this. | |||
2004-04-20 | Cope with gcc 3.4's more aggressive persuit of attribute unused | Eric Andersen | |
2004-02-06 | Sigh. The 2.6.x kernel removed '__kernel_dev_t' and renamed it as | Eric Andersen | |
'__kernel_old_dev_t'. And of course there is no good way to know which is in use except checking linux/version.h. Grumble. This is rather lame, but for now, define __kernel_old_dev_t to be the same as __kernel_dev_t. This will want to be revisited soon. -Erik | |||
2004-01-24 | Oleksandr G. Zhadan writes: | Eric Andersen | |
Hi Eric, The attached diff file includes BUS_ISA fix for kernel since 2.4.23/ Kind regards, Oleks | |||
2004-01-16 | s/UCLIBC_HAS_MMU/ARCH_HAS_MMU/g | Eric Andersen | |
2003-12-04 | Fix arm profiling support, which was accidentally removed | Eric Andersen | |
2003-12-03 | Lethal noticed that the generated file gmon-start.S was not | Eric Andersen | |
being cleaned up. | |||
2003-11-22 | Remove SAFECFLAGS. It was a workaround for failures in old awk script | Eric Andersen | |
used to generate the crti.S and crtn.S files. Since we don't use that anymore, keeping the workaround makes no sense. Furthermore, in most cases, SAFECFLAGS was not picking up all the needed flags, causing crti.o and crtn.o to not be built PIC. Which is very bad. Removing SAFECFLAGS and using CFLAGS fixes that as well. | |||
2003-11-08 | Darn. Fix compilation for soft-float, which I inadvertantly | Eric Andersen | |
broke a couple of days ago. :-( | |||
2003-11-05 | Continue the conversion to using per-arch crti.S and crtn.S | Eric Andersen | |
2003-10-25 | properly deal with soft-float when profiling as well | Eric Andersen | |
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
ln.patch: * Define $(LN) as ln in Rules.mak. * Change all occurrences of ln into $(LN). * Change all constructs like (cd path && ln -sf foo/file file) into $(LN) -sf foo/file path/file. The latter construct is already used in a number of places so it should not be an additional compatibility problem. | |||
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM). | |||
2003-10-08 | Patch from Atsushi Nemoto (with some additions): | Eric Andersen | |
Current uClibc contains only one fpu_control.h and it is i386 version. This is a patch to use platform specific fpu_control.h. All new files come from glibc 2.3.2. This patch is against 0.9.21 but also can be applied to CVS as is. | |||
2003-09-21 | Fix "subst -g,," problem for SAFECFLAGS. | Manuel Novoa III | |
2003-09-08 | Fix a trivial compile problem | Eric Andersen | |
2003-09-07 | Some updates from glibc. mjn3 reports this fixes profiling | Eric Andersen | |
on i386, at least, so seems like a good thing. | |||
2003-06-27 | Cleanup a couple of ugly bits | Eric Andersen | |
2003-06-27 | Implement mmap64 for arm | Eric Andersen | |
2003-06-11 | Fix arm syscall implementation so it does not blow chunks with gcc 3.3 | Eric Andersen | |
-Erik | |||
2003-04-21 | Fix SIGTRAP handling on arm. The defination of struct ucontext, | Eric Andersen | |
which was copied from glibc, is wrong. So fix it. -Erik | |||
2003-03-06 | Make profiling on arm work | Eric Andersen | |