I found the problem by myself now. By some crazy mistake my IDE used a
different compiler than i used for compiling grpc. So this was the actual
problem. After i switched to the correct compiler it worked.
Am Freitag, 4. August 2017 10:16:40 UTC+2 schrieb Thomas Schober:
>
> Hi,
>
> i compiled grpc according to the documentation by using MSYS2. I can
> compile the helloworld example without problems. No i wrote the following
> example :
>
> #include <iostream>
>
> #include "../protobuff/demo.pb.h"
>
> #include "MathToolsImpl.h"
>
> #include "grpc++/grpc++.h"
>
>
> using namespace std;
>
>
> int main()
>
> {
>
> std::string server_address("127.0.0.1:50051");
>
> MathToolsImpl impl;
>
> grpc::ServerBuilder builder;
>
>
> builder.AddListeningPort(server_address,grpc::InsecureServerCredentials());
>
> builder.RegisterService(&impl);
>
> unique_ptr<grpc::Server> server(builder.BuildAndStart());
>
> std::cout << "Server started and listening";
>
> server->Wait();
>
> }
>
>
> When i comment out the line for AddListeningPort the program is linking
> fine. Any Idea what i am doing wrong ?
>
>
--
You received this message because you are subscribed to the Google Groups
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/grpc-io.
To view this discussion on the web visit
https://groups.google.com/d/msgid/grpc-io/4c6932f7-bde7-46fa-be40-0019fdd4bed5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.