Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
35150668
Commit
35150668
authored
7 years ago
by
Toshihito Kikuchi
Committed by
Mehrdad Afshari
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/cpp/helloworld/Makefile
+7
-7
7 additions, 7 deletions
examples/cpp/helloworld/Makefile
examples/cpp/route_guide/Makefile
+7
-7
7 additions, 7 deletions
examples/cpp/route_guide/Makefile
with
14 additions
and
14 deletions
examples/cpp/helloworld/Makefile
+
7
−
7
View file @
35150668
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
examples/cpp/route_guide/Makefile
+
7
−
7
View file @
35150668
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment