You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brpc.apache.org by ja...@apache.org on 2019/08/26 07:12:54 UTC

[incubator-brpc] branch master updated: Add instructions to remove CMakeCache.txt before re-running cmakes

This is an automated email from the ASF dual-hosted git repository.

jamesge pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-brpc.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b95deb  Add instructions to remove CMakeCache.txt before re-running cmakes
7b95deb is described below

commit 7b95debc36613efdb661ba502556fb7d3cf236c2
Author: jamesge <jg...@gmail.com>
AuthorDate: Mon Aug 26 00:12:41 2019 -0700

    Add instructions to remove CMakeCache.txt before re-running cmakes
---
 docs/cn/getting_started.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/cn/getting_started.md b/docs/cn/getting_started.md
index 6c5410f..0f5a364 100644
--- a/docs/cn/getting_started.md
+++ b/docs/cn/getting_started.md
@@ -77,7 +77,7 @@ mkdir bld && cd bld && cmake .. && make
 ```
 To change compiler to clang, overwrite environment variable CC and CXX to clang and clang++.
 
-To not link debugging symbols, use `cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
+To not link debugging symbols, use `rm -f CMakeCache.txt && cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
 
 To use brpc with glog, add `-DWITH_GLOG=ON`.
 
@@ -90,7 +90,7 @@ $ mkdir bld && cd bld && cmake .. && make
 $ ./echo_server &
 $ ./echo_client
 ```
-Examples link brpc statically, if you need to link the shared version, use `cmake -DLINK_SO=ON ..`
+Examples link brpc statically, if you need to link the shared version, use `rm -f CMakeCache.txt && cmake -DLINK_SO=ON ..`
 
 **Run tests**
 ```shell
@@ -166,7 +166,7 @@ mkdir bld && cd bld && cmake .. && make
 ```
 To change compiler to clang, overwrite environment variable CC and CXX to clang and clang++.
 
-To not link debugging symbols, use `cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
+To not link debugging symbols, use `rm -f CMakeCache.txt && cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
 
 To use brpc with glog, add `-DWITH_GLOG=ON`.
 
@@ -180,7 +180,7 @@ $ mkdir bld && cd bld && cmake .. && make
 $ ./echo_server &
 $ ./echo_client
 ```
-Examples link brpc statically, if you need to link the shared version, use `cmake -DLINK_SO=ON ..`
+Examples link brpc statically, if you need to link the shared version, use `rm -f CMakeCache.txt && cmake -DLINK_SO=ON ..`
 
 **Run tests**
 ```shell
@@ -238,7 +238,7 @@ mkdir bld && cd bld && cmake -DCMAKE_INCLUDE_PATH="/path/to/dep1/include;/path/t
 
 To change compiler to clang, overwrite environment variable CC and CXX to clang and clang++.
 
-To not link debugging symbols, use `cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
+To not link debugging symbols, use `rm -f CMakeCache.txt && cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
 
 To use brpc with glog, add `-DWITH_GLOG=ON`.
 
@@ -305,7 +305,7 @@ $ sh run_tests.sh
 mkdir bld && cd bld && cmake .. && make
 ```
 
-To not link debugging symbols, use `cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
+To not link debugging symbols, use `rm -f CMakeCache.txt && cmake -DWITH_DEBUG_SYMBOLS=OFF ..` and compiled binaries will be much smaller.
 
 To use brpc with glog, add `-DWITH_GLOG=ON`.
 
@@ -318,7 +318,7 @@ $ mkdir bld && cd bld && cmake .. && make
 $ ./echo_server &
 $ ./echo_client
 ```
-Examples link brpc statically, if you need to link the shared version, use `cmake -DLINK_SO=ON ..`
+Examples link brpc statically, if you need to link the shared version, use `rm -f CMakeCache.txt && cmake -DLINK_SO=ON ..`
 
 **Run tests**
 ```shell


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@brpc.apache.org
For additional commands, e-mail: dev-help@brpc.apache.org