1. 14 Mar, 2017 1 commit
  2. 10 Mar, 2017 1 commit
  3. 09 Mar, 2017 1 commit
    • Adam Cozzette's avatar
      Ruby: wrap calls to memcpy so that gem is compatible with pre-2.14 glibc · a7e05be8
      Adam Cozzette authored
      This commit adds a __wrap_memcpy function and a linker flag to use that
      in place of memcpy for our Ruby gem C extension. This allows us to
      always use the 2.2.5 version of memcpy, making it possible to use the
      gem on distributions with pre-2.14 versions of glibc.
      
      Before this change:
      $ objdump -T protobuf_c.so | grep memcpy
      0000000000000000      DF *UND*  0000000000000000  GLIBC_2.3.4 __memcpy_chk
      0000000000000000      DF *UND*  0000000000000000  GLIBC_2.14  memcpy
      
      After:
      $ objdump -T protobuf_c.so | grep memcpy
      0000000000000000      DF *UND*  0000000000000000  GLIBC_2.2.5 memcpy
      0000000000000000      DF *UND*  0000000000000000  GLIBC_2.3.4 __memcpy_chk
      0000000000042450 g    DF .text  0000000000000005  Base __wrap_memcpy
      
      This is based on gRPC's solution to a similar problem:
      https://github.com/grpc/grpc/blob/5098508d2d41a116113f7e333c516cd9ef34a943/src/core/lib/support/wrap_memcpy.c
      
      This fixes issue #2783.
      a7e05be8
  4. 03 Mar, 2017 2 commits
  5. 14 Feb, 2017 2 commits
  6. 13 Feb, 2017 3 commits
  7. 11 Feb, 2017 1 commit
  8. 08 Feb, 2017 2 commits
  9. 06 Feb, 2017 1 commit
  10. 02 Feb, 2017 1 commit
  11. 31 Jan, 2017 2 commits
  12. 27 Jan, 2017 1 commit
  13. 26 Jan, 2017 1 commit
  14. 24 Jan, 2017 1 commit
  15. 23 Jan, 2017 1 commit
  16. 20 Jan, 2017 2 commits
  17. 18 Jan, 2017 1 commit
  18. 12 Jan, 2017 1 commit
  19. 11 Jan, 2017 1 commit
  20. 10 Jan, 2017 5 commits
  21. 09 Jan, 2017 6 commits
  22. 08 Jan, 2017 1 commit
  23. 30 Dec, 2016 1 commit
  24. 28 Dec, 2016 1 commit