1. 09 Jul, 2018 6 commits
  2. 07 Jul, 2018 1 commit
    • Eric Anderson's avatar
      protoc-artifacts: Update centos base from 6.6 to 6.9 · fa394677
      Eric Anderson authored
      This avoids the need to use "yum update && yum upgrade" in the container
      to be able to contact GitHub, which requires TLS 1.2[1].
      
      I have verified that binaries built with this container still run in the
      previous container; no errors like "/lib64/libc.so.6: version
      `GLIBC_2.14' not found", which occur if using too new of a glibc when
      compiling. CentOS 6.6 has glibc version 2.12 release 1.209.el6. CentOS
      6.9 has glibc version 2.12 release 1.149.el6. Both would upgrade to
      release 1.212.el6 via "yum update && yum upgrade".
      
      1. https://githubengineering.com/crypto-deprecation-notice/
      fa394677
  3. 06 Jul, 2018 6 commits
  4. 03 Jul, 2018 5 commits
  5. 02 Jul, 2018 8 commits
  6. 01 Jul, 2018 2 commits
  7. 30 Jun, 2018 3 commits
  8. 29 Jun, 2018 1 commit
  9. 28 Jun, 2018 3 commits
    • depristo's avatar
      Remove write-strings warning from COPTs. · 2506cf5c
      depristo authored
      This change reduces the excessive warnings when compiling C++ protobufs like "external/protobuf_archive/python/google/protobuf/pyext/message.cc:2629:1: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]"
      2506cf5c
    • Charles Hardin's avatar
      Fix to allow a compilation under mips big endian with gcc · f1b841b6
      Charles Hardin authored
      The __MIPSEL__ is mips little endian, specific and we needed
      to compile for a big endian mips target that also happened
      to be a mips64, so replaced the __MIPSEL__ with a __mip__
      which should preserve the build on little endian and allow a
      build for a big endian setup.
      
      	$ echo | mips64-linux-gcc -E -dM -
      	... snip snip ...
      	#define __mips__ 1
      	#define __MIPSEB__ 1
      Signed-off-by: 's avatarCharles Hardin <ckhardin@gmail.com>
      f1b841b6
    • Paul Yang's avatar
      Add -Og to no-warning-test (#4830) · f25e7edf
      Paul Yang authored
      * Add -Og to no-warning-test
      
      * Initialize value
      
      * Implement PrintFieldName in CompactRepeatedFieldPrinter to prevent Woverloaded-virtual
      
      * Update generated code
      f25e7edf
  10. 27 Jun, 2018 3 commits
  11. 25 Jun, 2018 2 commits