This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new da097629ea [chore](build) Fix the build with MySQL support (#23020)
da097629ea is described below
commit da097629ea41a7bf4b5e31a6e87dcd6bafa0ea9e
Author: Adonis Ling <[email protected]>
AuthorDate: Wed Aug 16 09:28:56 2023 +0800
[chore](build) Fix the build with MySQL support (#23020)
---
be/cmake/thirdparty.cmake | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/be/cmake/thirdparty.cmake b/be/cmake/thirdparty.cmake
index fb06f64105..47d7921719 100644
--- a/be/cmake/thirdparty.cmake
+++ b/be/cmake/thirdparty.cmake
@@ -74,10 +74,6 @@ if(WITH_LZO)
add_thirdparty(lzo LIBNAME "lib/liblzo2.a")
endif()
-if (WITH_MYSQL)
- add_thirdparty(mysql LIBNAME "lib/libmysqlclient.a")
-endif()
-
add_thirdparty(libevent LIBNAME "lib/libevent.a")
add_thirdparty(libevent_pthreads LIBNAME "lib/libevent_pthreads.a")
add_thirdparty(libbz2 LIBNAME "lib/libbz2.a")
@@ -88,6 +84,10 @@ add_thirdparty(leveldb)
add_thirdparty(jemalloc LIBNAME "lib/libjemalloc_doris.a")
add_thirdparty(jemalloc_arrow LIBNAME "lib/libjemalloc.a")
+if (WITH_MYSQL)
+ add_thirdparty(mysql LIBNAME "lib/libmysqlclient.a")
+endif()
+
if (USE_UNWIND)
add_thirdparty(libunwind LIBNAME "lib64/libunwind.a")
endif()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]