What version of GRPC can I use to build with c++98 for WinCE?

265 Views Asked by At

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! :)

1

There are 1 best solutions below

0
Jishan Shaikh On

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.