aboutsummaryrefslogtreecommitdiff
path: root/crt/mips (follow)
Commit message (Expand)AuthorAgeFilesLines
* crt1 must align stack pointer on mips•••it's naturally aligned when entered with the kernel argv array, but if ld.so has been invoked explicitly to run a program, the stack will not be aligned due to having thrown away argv[0]. Rich Felker2012-08-171-0/+1
* align mips _init/_fini functions•••since .init and .fini are not .text, the toolchain does not seem to align them for code by default. this yields random breakage depending on the object sizes the linker is dealing with. Rich Felker2012-08-051-0/+2
* initial version of mips (o32) port, based on work by Richard Pennington (rdp)•••basically, this version of the code was obtained by starting with rdp's work from his ellcc source tree, adapting it to musl's build system and coding style, auditing the bits headers for discrepencies with kernel definitions or glibc/LSB ABI or large file issues, fixing up incompatibility with the old binutils from aboriginal linux, and adding some new special cases to deal with the oddities of sigaction and pipe syscall interfaces on mips. at present, minimal test programs work, but some interfaces are broken or missing. threaded programs probably will not link. Rich Felker2012-07-113-0/+53