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
dad7abd4
Commit
dad7abd4
authored
Aug 22, 2017
by
gejun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Statically link when all deps have static libs
Change-Id: Iae8748a2a7cf25731859aa006ff2353ee91d05b1
parent
5f90bc47
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
32 deletions
+25
-32
README
README
+8
-9
config_brpc.sh
config_brpc.sh
+17
-23
No files found.
README
View file @
dad7abd4
The opensource version of baidu-rpc
The opensource version of baidu-rpc
# BUILD
# BUILD
### Ubuntu/LinuxMint/WSL
### Ubuntu/LinuxMint/WSL
**install deps**
**install common deps**
Common: sudo apt-get install git g++ make
Including: git g++ make libssl-dev
gflags: sudo apt-get install libgflags-dev
**install gflags protobuf leveldb**
protobuf: sudo apt-get install libprotobuf-dev libprotoc-dev protobuf-compiler
Including: libgflags-dev libprotobuf-dev libprotoc-dev protobuf-compiler libleveldb-dev
leveldb(used by rpcz): sudo apt-get install libleveldb-dev libsnappy-dev
If you need to statically link leveldb, install libsnappy-dev as well.
openssl(for https): libssl-dev
**compile**
**compile**
git clone this repo. cd into the repo and run: sh config_brpc.sh --headers=/usr/include --libs=/usr/lib
git clone this repo. cd into the repo and run: sh config_brpc.sh --headers=/usr/include --libs=/usr/lib
**run e
cho e
xample**
**run example**
cd into example/echo_c++, make, run echo_server and echo_client
cd into example/echo_c++, make, run echo_server and echo_client
**run examples with cpu/heap profilers**
**run examples with cpu/heap profilers**
sudo apt-get install libgoogle-perftools-dev libunwind-dev liblzma-dev
Install libgoogle-perftools-dev and re-run config_brpc.sh before compiling
Rerun config_brpc.sh
**compile tests**
**compile tests**
Install gmock and gtest, use the gtest embedded in gmock and don't install libgtest-dev
Install gmock and gtest, use the gtest embedded in gmock and don't install libgtest-dev
sudo apt-get install google-mock; cd /usr/src; sudo cmake .; sudo make; sudo mv lib*.a gtest/lib*.a /usr/lib; sudo mv gtest/include/gtest /usr/include/
sudo apt-get install google-mock; cd /usr/src; sudo cmake .; sudo make; sudo mv lib*.a gtest/lib*.a /usr/lib; sudo mv gtest/include/gtest /usr/include/
...
@@ -30,6 +28,7 @@ Rerun config_brpc.sh
...
@@ -30,6 +28,7 @@ Rerun config_brpc.sh
# Supported deps:
# Supported deps:
GCC: 4.8-7.1
GCC: 4.8-7.1
Clang: 3.5-4.0
glibc: 2.12-2.25
glibc: 2.12-2.25
protobuf: 2.4-3.2
protobuf: 2.4-3.2
gflags: 2.0-2.21
gflags: 2.0-2.21
...
...
config_brpc.sh
View file @
dad7abd4
...
@@ -47,7 +47,7 @@ if [ -z "$HDRS_IN" ] || [ -z "$LIBS_IN" ]; then
...
@@ -47,7 +47,7 @@ if [ -z "$HDRS_IN" ] || [ -z "$LIBS_IN" ]; then
fi
fi
find_dir_of_lib
()
{
find_dir_of_lib
()
{
local
lib
=
$(
find
${
LIBS_IN
}
-name
"lib
${
1
}
.a"
-o
-name
"lib
${
1
}
.so
*
"
|
head
-n1
)
local
lib
=
$(
find
${
LIBS_IN
}
-name
"lib
${
1
}
.a"
-o
-name
"lib
${
1
}
.so"
|
head
-n1
)
if
[
!
-z
"
$lib
"
]
;
then
if
[
!
-z
"
$lib
"
]
;
then
dirname
$lib
dirname
$lib
fi
fi
...
@@ -114,13 +114,10 @@ PROTOBUF_LIB=$(find_dir_of_lib_or_die protobuf)
...
@@ -114,13 +114,10 @@ PROTOBUF_LIB=$(find_dir_of_lib_or_die protobuf)
append_linking
$PROTOBUF_LIB
protobuf
append_linking
$PROTOBUF_LIB
protobuf
LEVELDB_LIB
=
$(
find_dir_of_lib_or_die leveldb
)
LEVELDB_LIB
=
$(
find_dir_of_lib_or_die leveldb
)
if
[
-f
$LEVELDB_LIB
/libleveldb.a
]
;
then
# required by leveldb
STATIC_LINKINGS
=
"
$STATIC_LINKINGS
-lleveldb"
SNAPPY_LIB
=
$(
find_dir_of_lib snappy
)
# required by leveldb
if
[
-f
$LEVELDB_LIB
/libleveldb.a
]
&&
[
-f
$SNAPPY_LIB
/libsnappy.a
]
;
then
SNAPPY_LIB
=
$(
find_dir_of_lib snappy
)
STATIC_LINKINGS
=
"
$STATIC_LINKINGS
-lleveldb -lsnappy"
if
[
!
-z
"
$SNAPPY_LIB
"
]
;
then
append_linking
$SNAPPY_LIB
snappy
fi
else
else
DYNAMIC_LINKINGS
=
"
$DYNAMIC_LINKINGS
-lleveldb"
DYNAMIC_LINKINGS
=
"
$DYNAMIC_LINKINGS
-lleveldb"
fi
fi
...
@@ -206,21 +203,18 @@ else
...
@@ -206,21 +203,18 @@ else
append_to_output_libs
"
$TCMALLOC_LIB
"
" "
append_to_output_libs
"
$TCMALLOC_LIB
"
" "
TCMALLOC_HDR
=
$(
find_dir_of_header_or_die google/profiler.h
)
TCMALLOC_HDR
=
$(
find_dir_of_header_or_die google/profiler.h
)
append_to_output_headers
"
$TCMALLOC_HDR
"
" "
append_to_output_headers
"
$TCMALLOC_HDR
"
" "
append_to_output_linkings
$TCMALLOC_LIB
tcmalloc_and_profiler
" "
# required by tcmalloc('s profiler)
if
[
$STATICALLY_LINKED_tcmalloc_and_profiler
-gt
0
]
;
then
UNWIND_LIB
=
$(
find_dir_of_lib unwind
)
# required by tcmalloc('s profiler)
# required by libunwind
UNWIND_LIB
=
$(
find_dir_of_lib unwind
)
LZMA_LIB
=
$(
find_dir_of_lib lzma
)
if
[
!
-z
"
$UNWIND_LIB
"
]
;
then
if
[
-f
$TCMALLOC_LIB
/libtcmalloc_and_profiler.a
]
&&
\
append_to_output_libs
$UNWIND_LIB
" "
[
-f
$UNWIND_LIB
/libunwind.a
]
&&
\
append_to_output_linkings
$UNWIND_LIB
unwind
" "
[
-f
$LZMA_LIB
/liblzma.a
]
;
then
if
[
$STATICALLY_LINKED_unwind
-gt
0
]
;
then
append_to_output_libs
"
$UNWIND_LIB
"
" "
# required by libunwind
append_to_output_libs
"
$LZMA_LIB
"
" "
LZMA_LIB
=
$(
find_dir_of_lib lzma
)
append_to_output
" STATIC_LINKINGS+=-ltcmalloc_and_profiler -lunwind -llzma"
if
[
!
-z
"
$LZMA_LIB
"
]
;
then
else
append_to_output_linkings
$LZMA_LIB
lzma
" "
append_to_output
" DYNAMIC_LINKINGS+=-ltcmalloc_and_profiler"
fi
fi
fi
fi
fi
fi
fi
append_to_output
"endif"
append_to_output
"endif"
...
...
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