This is an automated email from the ASF dual-hosted git repository.
felixybw pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 8f71966234 [VL] Allow shared dependencies for lib GCS (#8251)
8f71966234 is described below
commit 8f71966234ad919daf9e7c307e7a535eabd41360
Author: PHILO-HE <[email protected]>
AuthorDate: Wed Dec 18 03:17:29 2024 +0800
[VL] Allow shared dependencies for lib GCS (#8251)
This pr simply removes the setting for CMAKE_FIND_LIBRARY_SUFFIXES before
finding lib GCS. It only has impact to dynamic build (vcpkg off), no impact to
static build.
---
cpp/velox/CMakeLists.txt | 3 ---
1 file changed, 3 deletions(-)
diff --git a/cpp/velox/CMakeLists.txt b/cpp/velox/CMakeLists.txt
index 9fb8b6c6a6..6266ae5e2f 100644
--- a/cpp/velox/CMakeLists.txt
+++ b/cpp/velox/CMakeLists.txt
@@ -119,10 +119,7 @@ macro(find_awssdk)
endmacro()
macro(find_gcssdk)
- set(CMAKE_FIND_LIBRARY_SUFFIXES_BCK ${CMAKE_FIND_LIBRARY_SUFFIXES})
- set(CMAKE_FIND_LIBRARY_SUFFIXES ".a")
find_package(google_cloud_cpp_storage CONFIG 2.22.0 REQUIRED)
- set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES_BCK})
endmacro()
macro(find_azure)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]