1. 08 3月, 2011 9 次提交
  2. 04 3月, 2011 3 次提交
  3. 03 3月, 2011 1 次提交
  4. 02 3月, 2011 1 次提交
  5. 27 2月, 2011 4 次提交
  6. 25 2月, 2011 3 次提交
    • R
      various changes in preparation for dynamic linking support · 41d51836
      Rich Felker 提交于
      prefer using visibility=hidden for __libc internal data, rather than
      an accessor function, if the compiler has visibility.
      
      optimize with -O3 for PIC targets (shared library). without heavy
      inlining, reloading the GOT register in small functions kills
      performance. 20-30% size increase for a single libc.so is not a big
      deal, compared to comparaible size increase in every static binaries.
      
      use -Bsymbolic-functions, not -Bsymbolic. global variables are subject
      to COPY relocations, and thus binding their addresses in the library
      at link time will cause library functions to read the wrong (original)
      copies instead of the copies made in the main program's bss section.
      
      add entry point, _start, for dynamic linker.
      41d51836
    • R
      add implementation of memccpy function · b8ff2aaa
      Rich Felker 提交于
      b8ff2aaa
    • R
      fix backwards conditional in stpncpy · 9f19b3ec
      Rich Felker 提交于
      this only made the function unnecessarily slow on systems with
      unaligned access, but would of course crash on systems that can't do
      unaligned accesses (none of which have ports yet).
      9f19b3ec
  7. 23 2月, 2011 1 次提交
  8. 22 2月, 2011 2 次提交
  9. 21 2月, 2011 9 次提交
  10. 20 2月, 2011 4 次提交
  11. 19 2月, 2011 3 次提交