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 grpc-io+unsubscr...@googlegroups.com.
To post to this group, send email to grpc-io@googlegroups.com.
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/f366dfad-1100-4041-b324-5b0cdcefc1e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to