summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* touchup syntax for no real good reason ;)Mike Frysinger2005-06-118-33/+37
|
* Based on start.S from debian's glibc, this gets arm workingEric Andersen2005-06-101-138/+69
| | | | properly with the new ABI
* Add missing file needed for arm to compileEric Andersen2005-06-101-0/+29
|
* Based in part on related code in glibc, this might even be correct.Eric Andersen2005-06-101-9/+42
|
* Remove TEXTREL relocations for ARM.Joakim Tjernlund2005-06-1013-137/+102
| | | | | Hide __syscall_error from outside libc. From Peter Mazinger.
* oops. I'd left some junk in thereEric Andersen2005-06-101-3/+0
|
* rework arm crt1 properly this time aroundEric Andersen2005-06-101-27/+23
|
* silly rabbitEric Andersen2005-06-101-1/+1
|
* Dunno yet if I got this right or not, but it now at leastEric Andersen2005-06-102-38/+57
| | | | has a chance of perhaps working...
* Finish updating mips for the new ABIEric Andersen2005-06-103-43/+89
|
* move tv def back with gettimeofday() funcMike Frysinger2005-06-071-4/+5
|
* Fix a broken linkEric Andersen2005-06-031-2/+2
|
* clean up syntax/whitespace and a few variables to minimize diffs between ↵Mike Frysinger2005-06-031-44/+38
| | | | i386/m68k
* tweak whitespace to minimize diffs between i386/m68kMike Frysinger2005-06-031-4/+3
|
* Add debug printout of RTLD_GLOBAL and RTLD_NOW flag.Joakim Tjernlund2005-06-011-5/+6
|
* Initial support for both RUNPATH support.Joakim Tjernlund2005-06-013-16/+26
| | | | | | RPATH sematics changed to match RUNPATH. Only difference is that RPATH is searched before LD_LIBRARY_PATH and RUNPATH after. This is not complete but better than the current mess(I think).
* Fix bug 60Joakim Tjernlund2005-05-311-21/+24
|
* Add Peter Mazinger fini/crt compat patch. Select DL_FINI_CRT_COMPAT toJoakim Tjernlund2005-05-2811-29/+51
| | | | | | | | 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.
* Filter out any -z defs since this lib will have undefined symbols thatJoakim Tjernlund2005-05-281-1/+4
| | | | are in gdb.
* fix warnings likeJoakim Tjernlund2005-05-281-4/+4
| | | | td_thr_tls_get_addr.c:30: warning: `__used__' attribute ignored
* gcc saysJoakim Tjernlund2005-05-281-1/+1
| | | | | | spinlock.c:35: warning: matching constraint does not allow a register Update the asm to match glibc.
* I added, then removed and now I add this again :). Hopefully I got it rigth ↵Joakim Tjernlund2005-05-281-0/+1
| | | | this time.
* Add patch at bugs 274. From Peter Manzinger.Joakim Tjernlund2005-05-286-44/+21
|
* Add back .size for __startJoakim Tjernlund2005-05-281-0/+1
|
* Add back .size for _start Joakim Tjernlund2005-05-281-0/+1
|
* touchup defines so that we can use same ssp.c in both glibc and uclibcMike Frysinger2005-05-271-16/+28
|
* - keep gcc-4.x happyNed Ludd2005-05-272-1/+6
|
* erik 0, stupid 1Eric Andersen2005-05-271-2/+2
|
* style updatesMike Frysinger2005-05-271-9/+9
|
* With a bit of luck, this might just get mips working againEric Andersen2005-05-273-72/+135
|
* minor tweak for correctnessEric Andersen2005-05-271-1/+1
|
* Pass the aligned stack ptr, not the unaligned.Joakim Tjernlund2005-05-261-4/+4
|
* Clean it up a little.Joakim Tjernlund2005-05-261-10/+6
|
* Adapt x86 to new __uClibc_start_main.Joakim Tjernlund2005-05-261-96/+106
|
* Fix PPC wrt new __uClibc_start_main.Joakim Tjernlund2005-05-261-12/+7
|
* This commit breaks the entire world (yet again). Calculate theEric Andersen2005-05-261-11/+13
| | | | | | | position of envp in C code based on argv and argp. No need to caclulate that in asm for N arches. This way, we better match what glibc does. All arches will need to be fixed to match up with this change.
* Add PIE support to ARM. From Peter MazingerJoakim Tjernlund2005-05-262-6/+14
|
* Removed -z defs as a more general solution is in the works.Joakim Tjernlund2005-05-261-1/+1
|
* Fix "off by one" bug.Joakim Tjernlund2005-05-261-6/+6
|
* Prepare for standalone execution of ldso.Joakim Tjernlund2005-05-251-0/+11
|
* Adapt startup code in x86 and PPC to almost match glibc. _init vs. ↵Joakim Tjernlund2005-05-253-32/+30
| | | | | | __libc_csu_init and _fini vs. __libc_csu_fini remains to do.
* Enable new FINI processing. ldso now passes a FINI functionJoakim Tjernlund2005-05-212-13/+0
| | | | ptr to crt. Only PowerPC and x86 support this currently.
* Update PowerPC to new ABI.Joakim Tjernlund2005-05-212-14/+102
|
* Pass main function ptr from crt1 to __uClibc_start_main.Joakim Tjernlund2005-05-214-35/+136
| | | | | | | | Kill old crt0/__uClibc_main. This breaks ABI. All apps and toolchain needs to be recompiled. All archs except x86 are now broken and need to be fixed as x86. PPC will be fixed shortly by me, the rest is left to the arch maintainers.
* Fix debug macros.Joakim Tjernlund2005-05-201-5/+6
|
* Finish up reverting NPTLEric Andersen2005-05-206-15/+1178
|
* Back out nptl changes, which for now will be done in branches/uClibc-nptlEric Andersen2005-05-20256-25236/+9
|
* Fix up some more NPTL stuff for header file symbolic links."Steven J. Hill"2005-05-151-1/+2
|
* Get rid of crud."Steven J. Hill"2005-05-151-234/+0
|
* There were two versions of 'pthreadtypes.h' originally in uClibc. Also,"Steven J. Hill"2005-05-143-155/+47
| | | | | | since we are going to support the two implementations of pthreads, we again need to instead create symbolic links to use the proper version of the file depending on the pthreads option chosen.