Selaa lähdekoodia

remove debug info

zhujiashun 6 vuotta sitten
vanhempi
commit
09b7c4d608
2 muutettua tiedostoa jossa 1 lisäystä ja 6 poistoa
  1. 0 4
      CMakeLists.txt
  2. 1 2
      build_in_travis_ci.sh

+ 0 - 4
CMakeLists.txt

@@ -282,10 +282,6 @@ set(SOURCES
     ${BRPC_SOURCES}
     ${PROTO_SRCS}
     )
-message("BVAR_SOURCES=${BVAR_SOURCES}")
-message("BTHREAD_SOURCES=${BTHREAD_SOURCES}")
-message("BRPC_SOURCES=${BRPC_SOURCES}")
-message("SOURCES=${SOURCES}")
 
 add_subdirectory(src)
 if(BUILD_EXAMPLE)

+ 1 - 2
build_in_travis_ci.sh

@@ -17,8 +17,7 @@ if ! sh config_brpc.sh --headers=/usr/include --libs=/usr/lib --nodebugsymbols -
     exit 1
 fi
 if [ "$PURPOSE" = "compile" ]; then
-    #make -j4 && sh tools/make_all_examples
-    echo 1
+    make -j4 && sh tools/make_all_examples
 elif [ "$PURPOSE" = "unittest" ]; then
     cd test && make -j4 && sh ./run_tests.sh && cd ../
 else