'What version of GRPC can I use to build with c++98 for WinCE?
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! :)
Solution 1:[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.
Solution 2:[2]
pip install termcolor
#https://pypi.org/project/termcolor/
from termcolor import colored
print(colored("Jello World!", 'green'))
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Jishan Shaikh |
Solution 2 | Robin Sage |