Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
B
brpc
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
brpc
Commits
508b06f9
Commit
508b06f9
authored
Jul 18, 2018
by
Ge Jun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update thrift makefile
parent
8090fae7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
Makefile
example/thrift_extension_c++/Makefile
+14
-3
No files found.
example/thrift_extension_c++/Makefile
View file @
508b06f9
NEED_GPERFTOOLS
=
1
BRPC_PATH
=
../../
include
$(BRPC_PATH)/config.mk
# Notes on the flags:
# 1. Added -fno-omit-frame-pointer: perf/tcmalloc-profiler use frame pointers by default
# 2. Added -D__const__= : Avoid over-optimizations of TLS variables by GCC>=4.8
CXXFLAGS
=
-std
=
c++0x
-g
-DDEBUG
-D__const__
=
-pipe
-W
-Wall
-Werror
-Wno-unused-parameter
-fPIC
-fno-omit-frame-pointer
CXXFLAGS
=
$(CPPFLAGS)
-std
=
c++0x
-g
-DNDEBUG
-O2
-D__const__
=
-pipe
-W
-Wall
-Werror
-Wno-unused-parameter
-fPIC
-fno-omit-frame-pointer
ifeq
($(NEED_GPERFTOOLS),
1)
CXXFLAGS
+=
-DBRPC_ENABLE_CPU_PROFILER
endif
HDRS
+=
$(BRPC_PATH)
/output/include
LIBS
+=
$(BRPC_PATH)
/output/lib
HDRPATHS
=
$
(
addprefix
-I
,
$(HDRS)
)
LIBPATHS
=
$
(
addprefix
-L
,
$(LIBS)
)
COMMA
=
,
...
...
@@ -14,6 +19,7 @@ SOPATHS=$(addprefix -Wl$(COMMA)-rpath=, $(LIBS))
STATIC_LINKINGS
+=
-lthrift
-lgflags
-lbrpc
-levent
CLIENT_SOURCES
=
client.cpp
CLIENT2_SOURCES
=
client2.cpp
SERVER_SOURCES
=
server.cpp
SERVER2_SOURCES
=
server2.cpp
PROTOS
=
$
(
wildcard
*
.proto
)
...
...
@@ -21,21 +27,26 @@ PROTOS = $(wildcard *.proto)
PROTO_OBJS
=
$
(
PROTOS:.proto
=
.pb.o
)
PROTO_GENS
=
$
(
PROTOS:.proto
=
.pb.h
)
$
(
PROTOS:.proto
=
.pb.cc
)
CLIENT_OBJS
=
$
(
addsuffix .o,
$
(
basename
$(CLIENT_SOURCES)
))
CLIENT2_OBJS
=
$
(
addsuffix .o,
$
(
basename
$(CLIENT2_SOURCES)
))
SERVER_OBJS
=
$
(
addsuffix .o,
$
(
basename
$(SERVER_SOURCES)
))
SERVER2_OBJS
=
$
(
addsuffix .o,
$
(
basename
$(SERVER2_SOURCES)
))
.PHONY
:
all
all
:
echo_client echo_
server echo_server2 native_server native_client libechothrift.a client.o server.o
all
:
echo_client echo_
client2 echo_server echo_server2 native_server native_client
.PHONY
:
clean
clean
:
@
echo
"Cleaning"
@
rm
-rf
echo_client echo_
server echo_server2
$(PROTO_GENS)
$(PROTO_OBJS)
$(CLIENT
_OBJS)
$(SERVER_OBJS)
$(SERVER2_OBJS)
native_server native_client EchoService.o echo_types.o libechothrift.a gen-cpp gen-py
@
rm
-rf
echo_client echo_
client2 echo_server echo_server2
$(PROTO_GENS)
$(PROTO_OBJS)
$(CLIENT_OBJS)
$(CLIENT2
_OBJS)
$(SERVER_OBJS)
$(SERVER2_OBJS)
native_server native_client EchoService.o echo_types.o libechothrift.a gen-cpp gen-py
echo_client
:
$(PROTO_OBJS) $(CLIENT_OBJS) libechothrift.a
@
echo
"Linking
$@
"
@
$(CXX)
$(LIBPATHS)
$(SOPATHS)
-Xlinker
"-("
$^
-Xlinker
"-)"
$(STATIC_LINKINGS)
$(DYNAMIC_LINKINGS)
-o
$@
echo_client2
:
$(PROTO_OBJS) $(CLIENT2_OBJS) libechothrift.a
@
echo
"Linking
$@
"
@
$(CXX)
$(LIBPATHS)
$(SOPATHS)
-Xlinker
"-("
$^
-Xlinker
"-)"
$(STATIC_LINKINGS)
$(DYNAMIC_LINKINGS)
-o
$@
echo_server
:
$(PROTO_OBJS) $(SERVER_OBJS) libechothrift.a
@
echo
"Linking
$@
"
@
$(CXX)
$(LIBPATHS)
$(SOPATHS)
-Xlinker
"-("
$^
libechothrift.a
-Xlinker
"-)"
$(STATIC_LINKINGS)
$(DYNAMIC_LINKINGS)
-o
$@
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment