summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Add quick hacks to create fake crti.o and crtn.o files. These architecturesEric Andersen2003-11-054-4/+116
| | | | | | need to be fixed properly. I tried, but I was unable to build a cross toolchain for each of these (using stock binutils and gcc) so it is someone else's problem to fix them now.
* Kill initfini.awkEric Andersen2003-11-053-175/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+102
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+73
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+77
|
* v850 appers to be little endian onlyEric Andersen2003-11-051-0/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+99
|
* duh. the alpha has an fpuEric Andersen2003-11-051-1/+1
|
* Yet more messing with selecting sane default configsEric Andersen2003-11-059-2/+21
|
* Yet more config system updatesEric Andersen2003-11-0510-2/+18
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+79
|
* Fix a buglet that shows up on powerpcEric Andersen2003-11-052-4/+4
|
* m68k is always big endian afaikEric Andersen2003-11-051-0/+1
|
* powerpc is always big endianEric Andersen2003-11-051-0/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+89
|
* Patch from Peter S. Mazinger to hunt for awk in additionalEric Andersen2003-11-051-1/+4
| | | | places....
* Arthur Shipkowski, art ! videon-central ! com, writes:Eric Andersen2003-11-052-1/+28
| | | | | | | | | | | | | | | | | | | | | | I've noticed a few people have posted over the last year about problems compiling programs that use vfork when pthreads are involved. Some detective work turned up that ptfork.c aliases vfork to fork and then tries to call the original fork as __libc_fork. This patch removes the aliasing when there is no MMU present, and uses the same call semantics to call __libc_vfork. I then added a symbol to the m68k vfork.S to allow vfork to be called as __libc_vfork. The same bug exists in the uClibc CVS, and with a possible tweak this patch should go through there as well. Obviously, all other platforms need __libc_vfork as a workable means to call vfork in order for this to work for them. Let me know if there are any problems with this patch. Art Shipkowski Videon Central Software Engineer (814)235-1111 x307
* Force cris to be little endian. Afaik, there is no bigEric Andersen2003-11-051-0/+1
| | | | endian cris architecture.
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+113
|
* OopsEric Andersen2003-11-051-3/+1
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+122
|
* Do not provide a default for endianness. This needs to be selectedEric Andersen2003-11-051-1/+0
| | | | on a per-arch basis, or left to the user to choose.
* Kill off "mipsel" and just use "mips"Eric Andersen2003-11-055-21/+5
|
* Continue the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-056-2/+157
|
* Begin the conversion to using per-arch crti.S and crtn.SEric Andersen2003-11-053-1/+100
|
* As Peter S. Mazinger has pointed out, the config system wantsEric Andersen2003-11-042-1/+3
| | | | | some defaults. So give it some empty defaults and let people select their own options.
* Peter S. Mazinger writes:Eric Andersen2003-11-041-1/+1
| | | | | | | | | Hello! The latest changes document ldd in RUNTIME_PREFIX/bin, but it is installed in RUNTIME_PREFIX/usr/bin Peter
* Naming things this way will be much easier to deal withEric Andersen2003-11-041-29/+29
|
* Kill off the gcc wrapper. It has served us well, but there comes a time whenEric Andersen2003-11-043-758/+0
| | | | | | | 90% of correct is simply not good enough. Some people will not be very happy about the decision to kill the wrapper toolchain. Sorry, but a real toolchain is the One True Way(tm). -Erik
* Rework the config system. Better utilize the Kconfig languageEric Andersen2003-11-0445-1441/+377
| | | | | which should simplify enabling arbitrary architectures. -Erik
* minor cleanupEric Andersen2003-11-047-15/+15
|
* Minor cleanupEric Andersen2003-11-041-2/+2
|
* Minor makefile tweaksEric Andersen2003-11-041-1/+3
|
* Begin preparations for the next releaseEric Andersen2003-11-031-1/+1
|
* Remove warning that apparently is not needed for e1Eric Andersen2003-11-031-1/+0
|
* Updated to match the other architectures. Fixes problem with "fcntl:Tobias Anderberg2003-11-031-29/+67
| | | | function not implemented".
* Additional passwd and group testsEric Andersen2003-11-025-46/+157
|
* Implement getgrent_r. Rework getpwent and getgrent a bit furtherEric Andersen2003-11-022-24/+38
|
* Both setegid and seteuid were implemented suboptimally, such thatEric Andersen2003-11-022-3/+42
| | | | | we were unable to switch back to the original saved group/user ID. -Erik
* Add some missing prototypesEric Andersen2003-11-021-1/+19
|
* Be extra careful to check uid and gid converstions to kernel typesEric Andersen2003-11-021-17/+74
|
* Make the syscall locally, avoid an externEric Andersen2003-11-021-2/+6
|
* If realloc failed, we'd lose the pointer to the exit function table.Manuel Novoa III2003-11-021-6/+8
|
* Hopefully fix the struct tm extension problem once and for all.Manuel Novoa III2003-11-022-25/+67
| | | | Also fix a dst-related bug which caused the use of uninitialized data.
* Add some additional pwd/grp tests, to prevent me fromEric Andersen2003-11-014-1/+158
| | | | | breaking obvious things in the future. -Erik
* Fix things (properly) to open /etc/passd and /etc/group ifEric Andersen2003-11-014-24/+36
| | | | | | | they have not yet been opened. My last try was completely and embarrasingly broken. -Erik
* this script is no longer used, and can be removed.Eric Andersen2003-11-011-84/+0
|
* Fix Erik's typo.Manuel Novoa III2003-10-311-1/+1
|
* Some more soft float fixes... for arm in particular (libfloat).Manuel Novoa III2003-10-317-43/+14
| | | | | | Remove the ADD_LIBGCC_FUNCTIONS option and do things the right way. Either we have a shared libgcc available, or the libgcc routines aren't PIC and don't belong in the shared libc anyway.
* getpwent(), getpwent_r(), and getgrent(), getgrent_r() would allEric Andersen2003-10-313-1/+8
| | | | | | fail if you had not previously called setpwent() or setgrent() respectively. Oops. My bad. -Erik