Skip to content
Snippets Groups Projects
Commit 35150668 authored by Toshihito Kikuchi's avatar Toshihito Kikuchi Committed by Mehrdad Afshari
Browse files

Update compiler/linker options to use pkg-config in C++ examples

parent 8fd84cfa
No related branches found
No related tags found
No related merge requests found
...@@ -17,16 +17,16 @@ ...@@ -17,16 +17,16 @@
HOST_SYSTEM = $(shell uname | cut -f 1 -d_) HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
SYSTEM ?= $(HOST_SYSTEM) SYSTEM ?= $(HOST_SYSTEM)
CXX = g++ CXX = g++
CPPFLAGS += -I/usr/local/include -pthread CPPFLAGS += `pkg-config --cflags protobuf grpc`
CXXFLAGS += -std=c++11 CXXFLAGS += -std=c++11
ifeq ($(SYSTEM),Darwin) ifeq ($(SYSTEM),Darwin)
LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++ grpc` \ LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc`\
-lgrpc++_reflection \ -lgrpc++_reflection\
-lprotobuf -lpthread -ldl -ldl
else else
LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++ grpc` \ LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++ grpc`\
-Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed \ -Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed\
-lprotobuf -lpthread -ldl -ldl
endif endif
PROTOC = protoc PROTOC = protoc
GRPC_CPP_PLUGIN = grpc_cpp_plugin GRPC_CPP_PLUGIN = grpc_cpp_plugin
......
...@@ -17,16 +17,16 @@ ...@@ -17,16 +17,16 @@
HOST_SYSTEM = $(shell uname | cut -f 1 -d_) HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
SYSTEM ?= $(HOST_SYSTEM) SYSTEM ?= $(HOST_SYSTEM)
CXX = g++ CXX = g++
CPPFLAGS += -I/usr/local/include -pthread CPPFLAGS += `pkg-config --cflags protobuf grpc`
CXXFLAGS += -std=c++11 CXXFLAGS += -std=c++11
ifeq ($(SYSTEM),Darwin) ifeq ($(SYSTEM),Darwin)
LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++` \ LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++`\
-lgrpc++_reflection \ -lgrpc++_reflection\
-lprotobuf -lpthread -ldl -ldl
else else
LDFLAGS += -L/usr/local/lib `pkg-config --libs grpc++` \ LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++`\
-Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed \ -Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed\
-lprotobuf -lpthread -ldl -ldl
endif endif
PROTOC = protoc PROTOC = protoc
GRPC_CPP_PLUGIN = grpc_cpp_plugin GRPC_CPP_PLUGIN = grpc_cpp_plugin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment