From 1641c95814e1bb7319b828d26b659d90c4edff6c Mon Sep 17 00:00:00 2001 From: stdpain Date: Thu, 11 Jul 2024 22:06:28 +0800 Subject: [PATCH] [Enhancement] introduce brpc thrift extends brpc has support thrift extends https://github.com/apache/brpc/blob/master/docs/en/thrift.md we could use brpc async interface instead of using thread pool simulate an async interface Signed-off-by: stdpain --- thirdparty/build-thirdparty.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh index 6a4717c83432bc..1794c817d4bef5 100755 --- a/thirdparty/build-thirdparty.sh +++ b/thirdparty/build-thirdparty.sh @@ -560,7 +560,7 @@ build_brpc() { cd $TP_SOURCE_DIR/$BRPC_SOURCE CMAKE_GENERATOR="Unix Makefiles" BUILD_SYSTEM='make' - ./config_brpc.sh --headers="$TP_INSTALL_DIR/include /usr/include" --libs="$TP_INSTALL_DIR/bin $TP_INSTALL_DIR/lib /usr/lib" --with-glog + ./config_brpc.sh --headers="$TP_INSTALL_DIR/include /usr/include" --libs="$TP_INSTALL_DIR/bin $TP_INSTALL_DIR/lib /usr/lib" --with-glog --with-thrift make -j$PARALLEL cp -rf output/* ${TP_INSTALL_DIR}/ if [ -f $TP_INSTALL_DIR/lib/libbrpc.a ]; then