2

I would like to build GRPC for WinCE with the c++98 std. What is the last Version where it is working? Is there one?

I heared, that Google Protobufs last version for c++98 is the v3.5.1 is that correct?

Thanks in advance! :)

Jona
  • 21
  • 1

1 Answers1

1

From the issue protobuf/2780, It is mentioned that they decided to move on from C++98 to C++11 in the version gRPC 4.x. Back then they did not have a major release, therefore it was 1.4.x. This was September 2017. Corresponding release is also in late v1.3.x and early 1.4.x, so, at least anything gRPC <1.3.9 should be compatible with C++98.

I heared, that Google Protobufs last version for c++98 is the v3.5.1 is that correct?

Yes, that is also correct according to the mentioned issue.

Jishan Shaikh
  • 1,572
  • 2
  • 13
  • 31