This is an automated email from the ASF dual-hosted git repository.
zhouyuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 1d6334892d [VL] Fix setup-rhel script (#12334)
1d6334892d is described below
commit 1d6334892d5bc10d788b5886de3b53545689a1e8
Author: Rong Ma <[email protected]>
AuthorDate: Mon Jun 22 22:02:14 2026 +0100
[VL] Fix setup-rhel script (#12334)
Need to use fbthrift installed from velox build
---
ep/build-velox/src/setup-rhel.sh | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/ep/build-velox/src/setup-rhel.sh b/ep/build-velox/src/setup-rhel.sh
index 853a4137f0..e0780d2b1b 100755
--- a/ep/build-velox/src/setup-rhel.sh
+++ b/ep/build-velox/src/setup-rhel.sh
@@ -131,9 +131,11 @@ function install_elfutils-libelf {
function install_xxHash {
wget_and_untar
https://github.com/Cyan4973/xxHash/archive/refs/tags/v${XXHASH_VERSION}.tar.gz
xxHash
- cd ${DEPENDENCY_DIR}/xxHash
- make "-j${NPROC}"
- make install PREFIX=${INSTALL_PREFIX}
+ (
+ cd ${DEPENDENCY_DIR}/xxHash
+ make "-j${NPROC}"
+ make install PREFIX=${INSTALL_PREFIX}
+ )
}
function install_googletest {
@@ -252,7 +254,6 @@ function install_velox_deps {
run_and_time install_fbthrift
run_and_time install_duckdb
run_and_time install_stemmer
- run_and_time install_thrift
run_and_time install_simdjson
run_and_time install_geos
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]