initial version of mips (o32) port, based on work by Richard Pennington (rdp)
authorRich Felker <dalias@aerifal.cx>
Wed, 11 Jul 2012 08:22:13 +0000 (04:22 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 11 Jul 2012 08:22:13 +0000 (04:22 -0400)
commit6315004f6102dca44c4ba50654a36967b8b9c2a6
tree7b48d4ac93ecb9993ffc2d01c8762a4e954d4000
parentcd8d72451662f0157d06fcf666669db543dcea3b
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.
38 files changed:
arch/mips/atomic.h [new file with mode: 0644]
arch/mips/bits/alltypes.h.sh [new file with mode: 0755]
arch/mips/bits/endian.h [new file with mode: 0644]
arch/mips/bits/errno.h [new file with mode: 0644]
arch/mips/bits/fcntl.h [new file with mode: 0644]
arch/mips/bits/fenv.h [new file with mode: 0644]
arch/mips/bits/float.h [new file with mode: 0644]
arch/mips/bits/ioctl.h [new file with mode: 0644]
arch/mips/bits/ipc.h [new file with mode: 0644]
arch/mips/bits/limits.h [new file with mode: 0644]
arch/mips/bits/mman.h [new file with mode: 0644]
arch/mips/bits/msg.h [new file with mode: 0644]
arch/mips/bits/posix.h [new file with mode: 0644]
arch/mips/bits/reg.h [new file with mode: 0644]
arch/mips/bits/setjmp.h [new file with mode: 0644]
arch/mips/bits/shm.h [new file with mode: 0644]
arch/mips/bits/signal.h [new file with mode: 0644]
arch/mips/bits/socket.h [new file with mode: 0644]
arch/mips/bits/stat.h [new file with mode: 0644]
arch/mips/bits/statfs.h [new file with mode: 0644]
arch/mips/bits/stdarg.h [new file with mode: 0644]
arch/mips/bits/stdint.h [new file with mode: 0644]
arch/mips/bits/syscall.h [new file with mode: 0644]
arch/mips/bits/termios.h [new file with mode: 0644]
arch/mips/bits/user.h [new file with mode: 0644]
arch/mips/bits/wchar.h [new file with mode: 0644]
arch/mips/ksigaction.h [new file with mode: 0644]
arch/mips/pthread_arch.h [new file with mode: 0644]
arch/mips/reloc.h [new file with mode: 0644]
configure
crt/mips/crt1.s [new file with mode: 0644]
crt/mips/crti.s [new file with mode: 0644]
crt/mips/crtn.s [new file with mode: 0644]
src/internal/mips/syscall.s [new file with mode: 0644]
src/setjmp/mips/longjmp.s [new file with mode: 0644]
src/setjmp/mips/setjmp.s [new file with mode: 0644]
src/signal/mips/restore.s [new file with mode: 0644]
src/unistd/mips/pipe.s [new file with mode: 0644]