about summary refs log tree commit diff
Commit message (Expand)AuthorAgeFilesLines
...
* have configure check/add linker options to reduce size lost to paddingRich Felker2015-11-041-0/+6
* have configure check/add -ffunction-sections and -fdata-sectionsRich Felker2015-11-041-0/+11
* fix mismatched parens in CMPLX def for annex-g-conforming compilersRich Felker2015-11-021-1/+1
* generalize sh entry point asm not to assume call dests fit in 12 bitsRich Felker2015-11-021-5/+12
* keep user-provided CFLAGS/LDFLAGS separate from those added by configureRich Felker2015-11-022-6/+12
* fix mremap memory synchronization and use of variadic argumentRich Felker2015-11-021-4/+11
* prevent allocs than PTRDIFF_MAX via mremapDaniel Micay2015-11-021-1/+8
* use explicit __cp_cancel label in cancellable syscall asm for all archsRich Felker2015-11-028-28/+32
* properly access mcontext_t program counter in cancellation handlerRich Felker2015-11-0211-15/+14
* fix missing bss handling in FDPIC ELF loaderRich Felker2015-10-281-0/+13
* getnameinfo: make size check not fail for bigger sizesHauke Mehrtens2015-10-261-2/+2
* safely handle failure to open hosts, services, resolv.conf filesRich Felker2015-10-263-4/+29
* fix single-byte overflow of malloc'd buffer in getdelimRich Felker2015-10-241-1/+1
* prevent user CFLAGS overrides from exposing executable stackRich Felker2015-10-231-7/+7
* fix breakage when user overrides CFLAGS on the make command lineRich Felker2015-10-221-4/+4
* release 1.1.12 v1.1.12Rich Felker2015-10-192-1/+36
* declare fpu usage to the assembler in arm hard-float asm filesSzabolcs Nagy2015-10-195-0/+6
* add missing memory barrier to pthread_joinBobby Bingham2015-10-151-0/+1
* fix dladdr treatment of function descriptors for fdpicRich Felker2015-10-151-9/+22
* fix visibility mismatch in dynamic linker stage 2 function definitionRich Felker2015-10-152-0/+2
* suppress sh assembler rejection of instructions based on isa levelRich Felker2015-10-151-0/+1
* prevent reordering of or1k and powerpc thread pointer loadsRich Felker2015-10-152-0/+2
* mark arm thread-pointer-loading inline asm as volatileRich Felker2015-10-151-3/+3
* add comment documenting hard-coded opcode for reading mips thread pointerRich Felker2015-10-151-0/+1
* remove attribute((const)) from arm __pthread_self inline functionRich Felker2015-10-151-2/+2
* fix strftime handling of out-of-range struct tm fieldsRich Felker2015-10-141-8/+12
* remove hand-written crt1.s and Scrt1.s files for all archsRich Felker2015-10-149-192/+0
* add CFI generation script for x86_64Alex Dowad2015-10-131-0/+196
* recognize partial register operands in i386 CFI generationAlex Dowad2015-10-131-10/+19
* fix misinterpretation of indexed memory operand in i386 CFI generationAlex Dowad2015-10-131-1/+1
* fix misinterpretation of operand order in i386 CFI generationAlex Dowad2015-10-131-5/+5
* fix integer overflows in time_t/struct tm conversion codeRich Felker2015-10-081-3/+3
* fix open_[w]memstream behavior when no writes take placeRich Felker2015-10-082-4/+18
* fix instruction matching errors in i386 CFI generationAlex Dowad2015-10-081-3/+3
* factor common awk functions for CFI generation scripts into new fileAlex Dowad2015-10-083-28/+27
* make nl_langinfo(CODESET) always return "ASCII" in byte-based C localeRich Felker2015-10-011-1/+1
* fix mips fesetround failure to write back resulting modeRich Felker2015-10-011-0/+1
* eliminate protected-visibility data in libc.so with vis.h preincludeRich Felker2015-09-292-3/+14
* avoid attempting to lookup IP literals as hostnamesRich Felker2015-09-251-27/+32
* make getaddrinfo return error if both host and service name are nullRich Felker2015-09-251-0/+2
* fix localeconv field value for unavailable valuesRich Felker2015-09-241-14/+15
* avoid reading uninitialized memory in __map_fileSzabolcs Nagy2015-09-241-2/+3
* regcomp: propagate allocation failuresSzabolcs Nagy2015-09-241-1/+2
* fix signal return for sh/fdpicRich Felker2015-09-235-4/+12
* fix dlsym RTLD_NEXT behavior for fdpicRich Felker2015-09-221-4/+28
* fix dlsym lookup of function symbols on fdpicRich Felker2015-09-221-0/+6
* have sh/fdpic entry point set fdpic personality if neededRich Felker2015-09-221-0/+12
* move calls to application init functions after crt1 entry pointRich Felker2015-09-222-1/+8
* fix breakage in non-fdpic dynamic linker init/fini processingRich Felker2015-09-221-1/+1
* fix resolving interp string address on fdpic ldd commandRich Felker2015-09-221-2/+1