aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/cpp
diff options
context:
space:
mode:
authorGravatar chedeti <chedeti@google.com>2016-05-19 13:01:07 -0700
committerGravatar chedeti <chedeti@google.com>2016-05-19 13:01:07 -0700
commit3626efbf428ddd34d318217becbfad999052657a (patch)
treec049047c53e3e5ea0fe5a27627a9bb66b5bde35d /examples/cpp
parent10ff0de2e96c0819b1ca86d27ffdaa63cc6516f8 (diff)
Fix to undefined reference to gpr_log
Diffstat (limited to 'examples/cpp')
-rw-r--r--examples/cpp/helloworld/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cpp/helloworld/Makefile b/examples/cpp/helloworld/Makefile
index 58a82dbb83..780e5e427a 100644
--- a/examples/cpp/helloworld/Makefile
+++ b/examples/cpp/helloworld/Makefile
@@ -32,7 +32,7 @@
CXX = g++
CPPFLAGS += -I/usr/local/include -pthread
CXXFLAGS += -std=c++11
-LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++` -lprotobuf -lpthread -ldl
+LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++ grpc` -lprotobuf -lpthread -ldl
PROTOC = protoc
GRPC_CPP_PLUGIN = grpc_cpp_plugin
GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`