summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2016-09-17nt64: __unmapself(): cast size to void * [match signature from psxglue.h].midipix1-1/+1
2016-09-17nt32: fix installation of system-specific headers,have own copy of syscall.h.midipix1-1/+651
2016-09-16__emutls_get_address(): unify cases, fix dsoidx-based pointer arithmetic.midipix2-10/+2
2016-09-16psxglue.h: accessor table: match member type in libpsxscl.midipix2-2/+2
2016-06-28toolchain: moved ___chkstk_ms() to crtn.s.midipix4-8/+10
2016-06-22__syscall_alert(): add missing 32-bit implementation.midipix1-0/+15
2016-06-21__syscall_alert(): initial implementation and integration.midipix3-14/+31
2016-06-21psxglue.h: added __psx_log_output to struct __psx_vtbl.midipix2-0/+4
2016-06-03nt64: crte.s: so_entry_point: protect 32-bit name-space (adds underscore).midipix1-3/+3
2016-06-03nt32: crtn.s: _pei386_runtime_relocator(): add ABI's leading underscore.midipix1-6/+6
2016-06-02nt32: crt assembly sources: update to match nt64.midipix2-40/+8
2016-05-29simplify syscall scheme (unify nt64/x86_64 and nt32/i386).midipix1-756/+1
2016-02-15rename __libc_entry_point _dlstart, match musl's dynamic loader entry routine.midipix3-4/+4
2016-01-29syscall_cp(): fix comment style.midipix2-7/+7
2015-11-08nt32: struct shmid_ds: remove padding (size of time_t is already 64 bits).midipix1-3/+0
2015-10-24sigsetjmp: nt64: initial implementation.midipix1-0/+43
2015-09-17elf targets: update dynamic linker entry point from _start to _dlstart.midipix1-1/+1
2015-09-15nt32: implement accept(3) as a wrapper around accept4(2).midipix1-0/+8
2015-09-14add direct socket system calls to the 32-bit midipix target.midipix1-0/+34
2015-09-13add an empty __unmapself.s for source-tree compatibility with musl 1.1.11 ↵midipix2-0/+0
and later.
2015-09-13add an empty rcrt1.s for source-tree compatibility with musl 1.1.10 and later.midipix2-0/+0
2015-09-13nt32: rename _start to start since underscores are prepended by the compiler.midipix1-1/+1
2015-09-13nt32: add GOT support to assembly files.midipix4-5/+37
2015-09-13nt32: remove __environ.s, as it is no longer needed.midipix1-11/+0
2015-07-24synchronize psxglue.h with libpsxscl (tlca design change).midipix2-2/+2
2015-07-18adapt crte.s and crti.s to the newly integrated ctors/dtors iteration ↵midipix5-67/+103
functions in psxscl. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-07-18add manual .got entries to assembly files.midipix5-0/+41
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-07-18fix indirection of __init_array_start and __fini_array_start.midipix5-48/+19
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-07-18weak symbols: remove the previously used workaround, as it is nomidipix501-1047/+0
longer needed. This change follows corresponding work on, as well as patches to binutils and cbb-gcc.
2015-06-20fix non-portable construct.Shiz1-1/+1
See COPYING.MIDIPIX (9cd0746c) for copyright information. Signed-off-by: Shiz <hi@shiz.me>
2015-06-02arch-specific code: fix assembly function declarations.midipix6-0/+18
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-06-02weak symbols: fix assembly function declarations.midipix248-250/+500
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-06-02weak symbols: syntax uniformity: use .global rather than .globl.midipix62-64/+64
2015-05-27adjust arch-specific files to match musl version 1.1.9.midipix6-4/+4
2015-05-27adjust the definition of CANCEL_REG_IP to match the redefined ucontext_t in ↵midipix1-1/+1
the 64-bit midipix target.
2015-05-27update signal stack size definitions for the 64-bit midipix target.midipix1-2/+2
2015-05-27define mcontext_t for the 64-bit midipix target.midipix1-1/+95
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-05-27define ucontext_t for the 64-bit midipix target.midipix1-6/+12
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-05-27fix tab alignment in bits/signal.h (cosmetic).midipix1-3/+3
2015-05-26remove unused structures and conditionals from bits/signal.h.midipix1-55/+0
2015-04-25complete/fix support of ctors/dtors and tls.midipix15-25/+120
+ do not build libc.so with -DSHARED for the midipix targets. + provide surrogate init/fini arrays that allow invocation of the ctors/dtors iteration routines. + provide a builtin tls for the first thread. + update __copy_tls to match the layout of the simplified struct __tls. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-19crte.s: add function .def to the weak symbol dso_main_routine.midipix2-0/+2
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-05nt32: redefine time_t as long long.midipix1-1/+1
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-05add texinfo as a travis dependency.midipix1-1/+1
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-05nt32: provide stubs of fundamental math functions to allow complication ↵midipix3-2/+24
without libgcc. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-05nt32: initial commit of core port files.midipix36-0/+741
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-05nt32/bits: initial commit.midipix28-0/+1837
these header files should be kept in sync with their linux x86_64 counterparts, with three minor exceptions: 1) page size (65536) 2) jmp_buf (8 pointers) 3) TIOCGPTN and TIOCSPTLCK (normal sequence) signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-04-05nt32: initial commit of the bits that manually export weak symbols;midipix248-0/+380
this works around a limitation in binutils, where weak symbols are correctly resolved within the linked image, yet not exported via --export-all-symbols. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-03-28add support for Travis automatic build.midipix1-0/+19
based on cbb-gcc-4.6.4 commit 7a23e9d0 by Shiz. signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.
2015-03-24manually export additional weak symbols.midipix17-0/+30
signed-off by Z. Gilboa; see copying.midipix (9cd0746c) for additional information.