- 09 Mar, 2017 1 commit
-
-
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.
-
- 07 Mar, 2017 2 commits
- 06 Mar, 2017 3 commits
-
-
Manjunath Kudlur authored
-
Jie Luo authored
Merge pull request #2788 from anandolee/master
-
Feng Xiao authored
Added a header only cc_library target for the protobuf library.
-
- 03 Mar, 2017 3 commits
-
-
Adam Cozzette authored
Return uint32 from Log2FloorNonZero64
-
Manjunath Kudlur authored
-
Jie Luo authored
-
- 02 Mar, 2017 5 commits
-
-
Feng Xiao authored
Add Ruby compatibilty test against 3.0.0.
-
Thomas Van Lenten authored
Handing threading race resolving methods.
-
Thomas Van Lenten authored
- Don't prune the extension registry as that can lead to failures when two threads are racing. - If adding the method fails, check and see if it already is bound to decide the return result. Deals with threading races binding the methods.
-
Adam Cozzette authored
A uint32 is big enough to hold any return value from that function, and doing it this way prevents compiler warnings in coded_stream.h about narrowing a uint64 to a uint32.
-
Adam Cozzette authored
Use closurebuilder.py in favor of calcdeps.py for compiling JavaScript
-
- 01 Mar, 2017 6 commits
-
-
Sergio Campamá authored
Disable static analyzer for message semaphore creation
-
Matt Hauck authored
* Fix gcc 4.1.2 compilation of map_field_inl.h Fixes "error: object missing in reference to '...'" errors from #1035 * Disable 64-bit map keys on gcc <= 4.1 * Add missing case statements
-
Matt Hauck authored
This is both more correct, and the build fails on AIX without it
-
Paul Yang authored
This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Map fields key-value pairs are overritten. Singular/Oneof sub-messages are recursively merged. All overritten sub-messages are deep-copied.
-
Adam Cozzette authored
There are two motivations for this: 1) calcdeps.py is deprecated and replaced by closurebuilder.py. 2) As part of this I was able to tweak things so that the Closure compiler does not attempt to examine every .js file in the tree under js/. This makes it possible to put compatibility tests and related files in a subdirectory without them getting mixed up with the main .js files we care about.
-
Adam Cozzette authored
Removed log statement from writer_test.js
-
- 28 Feb, 2017 8 commits
-
-
Adam Cozzette authored
This tweak makes the test output a bit easier to read because it cuts out a lot of unnecessary logging.
-
Jisi Liu authored
Remove the use of C++11 features.
-
Feng Xiao authored
Fix links to the license in meta-data
-
Jie Luo authored
There might be duplicated enum values when allow_alias is true. Add PreferredAlias into OriginalNameAttribute to remove the duplication (#2727)
-
Sebastian Schuberth authored
The first is the newer name, which is also more telling.
-
Sebastian Schuberth authored
The "New BSD License" is the "3-Clause BSD License", but the links were pointing to the "2-Clause BSD License".
-
Feng Xiao authored
-
Feng Xiao authored
-
- 27 Feb, 2017 2 commits
-
-
Adam Cozzette authored
Disable MSVC warning C4309
-
Adam Cozzette authored
Fix unresolved symbols with MSVC12 and /Zc:inline
-
- 24 Feb, 2017 5 commits
-
-
Feng Xiao authored
Speed up JSON parsing.
-
Adam Cozzette authored
const FieldDescriptorCompare
-
Adam Cozzette authored
Fix unused variables warnings in generated_message_reflection.h
-
Adam Cozzette authored
README.md: Make docs URL a link
-
Jisi Liu authored
FreeBSD compatibility
-
- 23 Feb, 2017 5 commits
-
-
Thomas Van Lenten authored
Add GPBMessageDropUnknownFieldsRecursively() and tests.
-
Thomas Van Lenten authored
GPBMessageDropUnknownFieldsRecursively() is a new helper to drop the unknownFields from a message and all sub messages (in fields or extensions).
-
Manjunath Kudlur authored
-
John Brock authored
- Adding more detail on running tests - Adding info about the status of .NET 3.5 support and how to enable .NET 3.5
-
John Brock authored
NUnit 3.4.0 —> 3.6.0 dotnet-test-nunit 3.4.0-alpha-2 —> 3.4.0-beta-3
-